https://github.com/floscha/langchain-mlx-whisper-parser
LangChain parser to transcribe audio files with a local MLX Whisper model.
https://github.com/floscha/langchain-mlx-whisper-parser
Last synced: about 1 year ago
JSON representation
LangChain parser to transcribe audio files with a local MLX Whisper model.
- Host: GitHub
- URL: https://github.com/floscha/langchain-mlx-whisper-parser
- Owner: floscha
- License: mit
- Created: 2025-01-28T21:10:39.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-11T20:05:54.000Z (over 1 year ago)
- Last Synced: 2025-02-11T21:22:44.840Z (over 1 year ago)
- Language: Python
- Size: 109 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# LangChain MLX Whisper Parser
LangChain parser to transcribe audio files with a local [MLX Whisper](https://github.com/ml-explore/mlx-examples/tree/main/whisper) model.
## ⚙️ Installation
Install with pip:
```
pip install langchain-mlx-whisper-parser@git+https://github.com/floscha/langchain-mlx-whisper-parser
```
## 🚀 Usage
Import and instantiate like below and then use it like a regular LangChain parser:
```python
from langchain_mlx_whisper_parser import MlxWhisperParser
parser = MlxWhisperParser()
```