From f1c2108bc7b9052dd9561ca1fedaa652854fdd9d Mon Sep 17 00:00:00 2001 From: Andrei Stoica Date: Mon, 26 Feb 2024 19:39:24 -0500 Subject: [PATCH] updating readmes --- README.md | 12 ++++++++++++ speech-speech/README.md | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 45 insertions(+) create mode 100644 speech-speech/README.md diff --git a/README.md b/README.md index 9229601..6649fdb 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,14 @@ # 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 + diff --git a/speech-speech/README.md b/speech-speech/README.md new file mode 100644 index 0000000..7774f46 --- /dev/null +++ b/speech-speech/README.md @@ -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= +``` +``` +cd backend +uvicorn --port 8080 api:app +```