cleaning up readmes
This commit is contained in:
parent
f1c2108bc7
commit
7acdbb3136
|
|
@ -3,3 +3,4 @@
|
||||||
**/audio
|
**/audio
|
||||||
*.mp3
|
*.mp3
|
||||||
*.webm
|
*.webm
|
||||||
|
.env
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
```
|
```
|
||||||
|
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
OPENAI_API_KEY=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
|
|
||||||
Loading…
Reference in New Issue