ai_sandbox/speech-speech
Andrei Stoica 13890159ed updating readmes 2024-02-26 19:39:24 -05:00
..
backend building frontend and serving with fastapi 2024-02-26 13:17:26 -05:00
frontend building frontend and serving with fastapi 2024-02-26 13:17:26 -05:00
.gitignore recording and playing back sound 2024-02-19 19:03:08 -05:00
README.md updating readmes 2024-02-26 19:39:24 -05:00

README.md

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

cd backend
uvicorn --port 8080 api:app