├── .github └── workflows │ └── deploy.yml ├── .gitignore ├── .postcssrc ├── LICENSE.md ├── README.md ├── assets └── demo.gif ├── package.json ├── src ├── App.tsx ├── favicon.svg ├── index.css ├── index.html ├── index.tsx ├── manifest.json └── service-worker.js └── tailwind.config.js /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abetlen/ai-voice-chat/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | 3 | .parcel-cache/ 4 | dist/ 5 | node_modules/ -------------------------------------------------------------------------------- /.postcssrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abetlen/ai-voice-chat/HEAD/.postcssrc -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abetlen/ai-voice-chat/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abetlen/ai-voice-chat/HEAD/README.md -------------------------------------------------------------------------------- /assets/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abetlen/ai-voice-chat/HEAD/assets/demo.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abetlen/ai-voice-chat/HEAD/package.json -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abetlen/ai-voice-chat/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abetlen/ai-voice-chat/HEAD/src/favicon.svg -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abetlen/ai-voice-chat/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abetlen/ai-voice-chat/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abetlen/ai-voice-chat/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abetlen/ai-voice-chat/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abetlen/ai-voice-chat/HEAD/src/service-worker.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abetlen/ai-voice-chat/HEAD/tailwind.config.js --------------------------------------------------------------------------------