├── .gitignore ├── README.md ├── backend ├── agent.py ├── api.py ├── db_driver.py ├── prompts.py ├── requirements.txt ├── sample.env └── server.py └── frontend ├── .gitignore ├── README.md ├── eslint.config.js ├── index.html ├── package-lock.json ├── package.json ├── sample.env ├── src ├── App.css ├── App.jsx ├── components │ ├── LiveKitModal.jsx │ ├── SimpleVoiceAssistant.css │ └── SimpleVoiceAssistant.jsx ├── index.css └── main.jsx └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | ai/ 2 | .vscode/ 3 | __pycache__/ 4 | .env 5 | auto_db.sqlite -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # LiveKit AI Car Call Centre 2 | -------------------------------------------------------------------------------- /backend/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/LiveKit-AI-Car-Call-Centre/HEAD/backend/agent.py -------------------------------------------------------------------------------- /backend/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/LiveKit-AI-Car-Call-Centre/HEAD/backend/api.py -------------------------------------------------------------------------------- /backend/db_driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/LiveKit-AI-Car-Call-Centre/HEAD/backend/db_driver.py -------------------------------------------------------------------------------- /backend/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/LiveKit-AI-Car-Call-Centre/HEAD/backend/prompts.py -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/LiveKit-AI-Car-Call-Centre/HEAD/backend/requirements.txt -------------------------------------------------------------------------------- /backend/sample.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/LiveKit-AI-Car-Call-Centre/HEAD/backend/sample.env -------------------------------------------------------------------------------- /backend/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/LiveKit-AI-Car-Call-Centre/HEAD/backend/server.py -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/LiveKit-AI-Car-Call-Centre/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/LiveKit-AI-Car-Call-Centre/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/LiveKit-AI-Car-Call-Centre/HEAD/frontend/eslint.config.js -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/LiveKit-AI-Car-Call-Centre/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/LiveKit-AI-Car-Call-Centre/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/LiveKit-AI-Car-Call-Centre/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/sample.env: -------------------------------------------------------------------------------- 1 | VITE_LIVEKIT_URL="" -------------------------------------------------------------------------------- /frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/LiveKit-AI-Car-Call-Centre/HEAD/frontend/src/App.css -------------------------------------------------------------------------------- /frontend/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/LiveKit-AI-Car-Call-Centre/HEAD/frontend/src/App.jsx -------------------------------------------------------------------------------- /frontend/src/components/LiveKitModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/LiveKit-AI-Car-Call-Centre/HEAD/frontend/src/components/LiveKitModal.jsx -------------------------------------------------------------------------------- /frontend/src/components/SimpleVoiceAssistant.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/LiveKit-AI-Car-Call-Centre/HEAD/frontend/src/components/SimpleVoiceAssistant.css -------------------------------------------------------------------------------- /frontend/src/components/SimpleVoiceAssistant.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/LiveKit-AI-Car-Call-Centre/HEAD/frontend/src/components/SimpleVoiceAssistant.jsx -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/LiveKit-AI-Car-Call-Centre/HEAD/frontend/src/index.css -------------------------------------------------------------------------------- /frontend/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/LiveKit-AI-Car-Call-Centre/HEAD/frontend/src/main.jsx -------------------------------------------------------------------------------- /frontend/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techwithtim/LiveKit-AI-Car-Call-Centre/HEAD/frontend/vite.config.js --------------------------------------------------------------------------------