From f9c9c4188a33b45260c127f73c336c18290ad1fd Mon Sep 17 00:00:00 2001 From: Quentin Fuxa Date: Wed, 27 Aug 2025 18:15:32 +0200 Subject: [PATCH] optional dependencies removed, ask to direct alternative package installations --- README.md | 8 ++++---- pyproject.toml | 5 ----- 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 66698d1..0f8aee4 100644 --- a/README.md +++ b/README.md @@ -68,10 +68,10 @@ pip install whisperlivekit |-----------|-------------| | Speaker diarization with Sortformer | `git+https://github.com/NVIDIA/NeMo.git@main#egg=nemo_toolkit[asr]` | | Speaker diarization with Diart | `diart` | -| Original Whisper backend | `whisperlivekit[whisper]` | -| Improved timestamps backend | `whisperlivekit[whisper-timestamped]` | -| Apple Silicon optimization backend | `whisperlivekit[mlx-whisper]` | -| OpenAI API backend | `whisperlivekit[openai]` | +| Original Whisper backend | `whisper` | +| Improved timestamps backend | `whisper-timestamped` | +| Apple Silicon optimization backend | `mlx-whisper` | +| OpenAI API backend | `openai` | See **Parameters & Configuration** below on how to use them. diff --git a/pyproject.toml b/pyproject.toml index 39f0971..0862a79 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -35,12 +35,7 @@ dependencies = [ ] [project.optional-dependencies] -diarization = ["diart"] sentence = ["mosestokenizer", "wtpsplit"] -whisper = ["whisper"] -whisper-timestamped = ["whisper-timestamped"] -mlx-whisper = ["mlx-whisper"] -openai = ["openai"] [project.urls] Homepage = "https://github.com/QuentinFuxa/WhisperLiveKit"