Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/seitzquest/RavenWhisperer
Listens to your voice and queries a language model for answers when a question is detected
https://github.com/seitzquest/RavenWhisperer
rwkv whisper
Last synced: 3 months ago
JSON representation
Listens to your voice and queries a language model for answers when a question is detected
- Host: GitHub
- URL: https://github.com/seitzquest/RavenWhisperer
- Owner: seitzquest
- Created: 2023-09-10T06:47:59.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-10T06:56:31.000Z (about 1 year ago)
- Last Synced: 2024-04-06T19:32:11.255Z (7 months ago)
- Topics: rwkv, whisper
- Language: Python
- Homepage:
- Size: 598 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Raven Whisperer
Listens to your voice and queries a language model for answers when a question is detected
- Combines whisper live transcription with RWKV (or any other language model of your choice)To install dependencies simply run
```
pip install -r requirements.txt
```
in an environment of your choosing.Whisper also requires the command-line tool [`ffmpeg`](https://ffmpeg.org/) to be installed on your system, which is available from most package managers:
```
# on Ubuntu or Debian
sudo apt update && sudo apt install ffmpeg# on Arch Linux
sudo pacman -S ffmpeg# on MacOS using Homebrew (https://brew.sh/)
brew install ffmpeg# on Windows using Chocolatey (https://chocolatey.org/)
choco install ffmpeg# on Windows using Scoop (https://scoop.sh/)
scoop install ffmpeg
```For more information on Whisper please see https://github.com/openai/whisper
The code in this repository is public domain.