https://github.com/coloredcow/ai-voice-assistant
https://github.com/coloredcow/ai-voice-assistant
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/coloredcow/ai-voice-assistant
- Owner: ColoredCow
- Created: 2024-10-21T07:59:30.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-12-24T01:00:22.000Z (5 months ago)
- Last Synced: 2025-01-03T03:32:08.418Z (5 months ago)
- Language: Python
- Size: 4.61 MB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 8
-
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)