Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/coloredcow/ai-voice-assistant
https://github.com/coloredcow/ai-voice-assistant
Last synced: 19 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/coloredcow/ai-voice-assistant
- Owner: ColoredCow
- Created: 2024-10-21T07:59:30.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-11-09T08:40:37.000Z (2 months ago)
- Last Synced: 2024-11-09T09:28:42.631Z (2 months ago)
- Language: Python
- Size: 85 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AI Voice Assistant
### Prerequisites
- Python 3.10 or 3.11 (not compatible with Python 3.13)### Installation
1. Set up a Python virtual environment and activate it:
```sh
python -m venv env
source env/bin/activate
```
2. Install the dependencies:
```sh
pip install -r requirements.txt
```
3. Acquire a Hugging Face API token:
- Sign up at [huggingface.co](https://huggingface.co/) if you don't already have an account.
- Go to [https://huggingface.co/settings/tokens](https://huggingface.co/settings/tokens).
- Generate a new token (or use an existing one) and copy it.
4. Set up your `.env` file
```sh
cp .env.example .env
```
5. Set the hugging face token in the env file.
6. Run the Flask application:
```sh
flask --debug run
```7. Open the web server in your browser at [http://127.0.0.1:5000](http://127.0.0.1:5000)