├── .gitignore ├── .replit ├── README.md ├── app.js ├── package.json ├── replit.nix └── services ├── gpt-service.js ├── stream-service.js ├── transcription-service.js └── tts-service.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Barty-Bart/ai-voice-assistant-openai-deepgram/HEAD/.gitignore -------------------------------------------------------------------------------- /.replit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Barty-Bart/ai-voice-assistant-openai-deepgram/HEAD/.replit -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Barty-Bart/ai-voice-assistant-openai-deepgram/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Barty-Bart/ai-voice-assistant-openai-deepgram/HEAD/app.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Barty-Bart/ai-voice-assistant-openai-deepgram/HEAD/package.json -------------------------------------------------------------------------------- /replit.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Barty-Bart/ai-voice-assistant-openai-deepgram/HEAD/replit.nix -------------------------------------------------------------------------------- /services/gpt-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Barty-Bart/ai-voice-assistant-openai-deepgram/HEAD/services/gpt-service.js -------------------------------------------------------------------------------- /services/stream-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Barty-Bart/ai-voice-assistant-openai-deepgram/HEAD/services/stream-service.js -------------------------------------------------------------------------------- /services/transcription-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Barty-Bart/ai-voice-assistant-openai-deepgram/HEAD/services/transcription-service.js -------------------------------------------------------------------------------- /services/tts-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Barty-Bart/ai-voice-assistant-openai-deepgram/HEAD/services/tts-service.js --------------------------------------------------------------------------------