cleaning up readmes

This commit is contained in:
Andrei Stoica 2024-02-26 19:58:28 -05:00
parent f1c2108bc7
commit 7acdbb3136
4 changed files with 6 additions and 4 deletions

1
.gitignore vendored
View File

@ -3,3 +3,4 @@
**/audio **/audio
*.mp3 *.mp3
*.webm *.webm
.env

View File

@ -4,7 +4,7 @@ A learning arena to learn about the current AI tool landscape
## Subprojects ## Subprojects
### [Speach to Speach AI Assistant] ### [Speech to Speech AI Assistant](./speech-speech/)
AI assistant chat with speech recognition and tts responses AI assistant chat with speech recognition and tts responses
Fullstack Fullstack

View File

@ -14,12 +14,12 @@ Fullstack
## Setup ## Setup
``` ```
cd frontend cd frontend
npm init npm install
npm run build npm run build
cd ../backend cd ../backend
# optionally setup virtual environment of your choice # optionally setup virtual environment of your choice
python3 -m pip install -r requirements python3 -m pip install -r requirements.txt
``` ```
# Running # Running
@ -27,7 +27,9 @@ example `backend/.env`
``` ```
OPEN_API_KEY=<apikey> OPEN_API_KEY=<apikey>
``` ```
``` ```
cd backend cd backend
source .env
uvicorn --port 8080 api:app uvicorn --port 8080 api:app
``` ```

View File

@ -1 +0,0 @@
OPENAI_API_KEY=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