updating readmes
This commit is contained in:
parent
056e1067f4
commit
f1c2108bc7
12
README.md
12
README.md
|
|
@ -1,2 +1,14 @@
|
||||||
# ai_sandbox
|
# ai_sandbox
|
||||||
|
|
||||||
|
A learning arena to learn about the current AI tool landscape
|
||||||
|
|
||||||
|
## Subprojects
|
||||||
|
|
||||||
|
### [Speach to Speach AI Assistant]
|
||||||
|
AI assistant chat with speech recognition and tts responses
|
||||||
|
|
||||||
|
Fullstack
|
||||||
|
- Vite, TS, React frontend
|
||||||
|
- fastapi backend
|
||||||
|
- OpenAI for LLM services
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,33 @@
|
||||||
|
# Speech to Speech AI Assistant
|
||||||
|
AI assistant chat with speech recognition and tts responses
|
||||||
|
|
||||||
|
Fullstack
|
||||||
|
- Vite, TS, React frontend
|
||||||
|
- fastapi backend
|
||||||
|
- OpenAI for LLM services
|
||||||
|
|
||||||
|
## Requirements
|
||||||
|
- python3
|
||||||
|
- npm
|
||||||
|
- OpenAI API token
|
||||||
|
|
||||||
|
## Setup
|
||||||
|
```
|
||||||
|
cd frontend
|
||||||
|
npm init
|
||||||
|
npm run build
|
||||||
|
|
||||||
|
cd ../backend
|
||||||
|
# optionally setup virtual environment of your choice
|
||||||
|
python3 -m pip install -r requirements
|
||||||
|
```
|
||||||
|
|
||||||
|
# Running
|
||||||
|
example `backend/.env`
|
||||||
|
```
|
||||||
|
OPEN_API_KEY=<apikey>
|
||||||
|
```
|
||||||
|
```
|
||||||
|
cd backend
|
||||||
|
uvicorn --port 8080 api:app
|
||||||
|
```
|
||||||
Loading…
Reference in New Issue