├── .env.example ├── .eslintrc.json ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app ├── api │ ├── actions │ │ └── deepgram.ts │ ├── completion │ │ └── route.ts │ └── deepgram │ │ └── route.ts ├── favicon.ico ├── globals.css ├── layout.tsx ├── manifest.ts └── page.tsx ├── biome.json ├── cloudflare-env.d.ts ├── components.json ├── components ├── AIAssistant.tsx ├── History.tsx ├── InstallPWA.tsx ├── Loader.tsx ├── PWARegister.tsx ├── QuestionAssistant.tsx ├── TranscriptionDisplay.tsx ├── TranscriptionLine.tsx ├── copilot.tsx ├── main.tsx ├── recorder.tsx └── ui │ ├── badge.tsx │ ├── button.tsx │ ├── card.tsx │ ├── content.tsx │ ├── icon.tsx │ ├── input.tsx │ ├── label.tsx │ ├── switch.tsx │ └── textarea.tsx ├── lib ├── types.ts └── utils.ts ├── next.config.mjs ├── open-next.config.ts ├── package.json ├── pnpm-lock.yaml ├── postcss.config.mjs ├── public ├── icons │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ └── site.webmanifest ├── next.svg ├── placeholder-user.jpg ├── sw.js └── vercel.svg ├── tailwind.config.ts ├── tsconfig.json └── wrangler.toml /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/README.md -------------------------------------------------------------------------------- /app/api/actions/deepgram.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/app/api/actions/deepgram.ts -------------------------------------------------------------------------------- /app/api/completion/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/app/api/completion/route.ts -------------------------------------------------------------------------------- /app/api/deepgram/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/app/api/deepgram/route.ts -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/app/manifest.ts -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/app/page.tsx -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/biome.json -------------------------------------------------------------------------------- /cloudflare-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/cloudflare-env.d.ts -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/components.json -------------------------------------------------------------------------------- /components/AIAssistant.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/components/AIAssistant.tsx -------------------------------------------------------------------------------- /components/History.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/components/History.tsx -------------------------------------------------------------------------------- /components/InstallPWA.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/components/InstallPWA.tsx -------------------------------------------------------------------------------- /components/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/components/Loader.tsx -------------------------------------------------------------------------------- /components/PWARegister.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/components/PWARegister.tsx -------------------------------------------------------------------------------- /components/QuestionAssistant.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/components/QuestionAssistant.tsx -------------------------------------------------------------------------------- /components/TranscriptionDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/components/TranscriptionDisplay.tsx -------------------------------------------------------------------------------- /components/TranscriptionLine.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/components/TranscriptionLine.tsx -------------------------------------------------------------------------------- /components/copilot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/components/copilot.tsx -------------------------------------------------------------------------------- /components/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/components/main.tsx -------------------------------------------------------------------------------- /components/recorder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/components/recorder.tsx -------------------------------------------------------------------------------- /components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/components/ui/badge.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/components/ui/card.tsx -------------------------------------------------------------------------------- /components/ui/content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/components/ui/content.tsx -------------------------------------------------------------------------------- /components/ui/icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/components/ui/icon.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/components/ui/label.tsx -------------------------------------------------------------------------------- /components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/components/ui/switch.tsx -------------------------------------------------------------------------------- /components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/components/ui/textarea.tsx -------------------------------------------------------------------------------- /lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/lib/types.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/next.config.mjs -------------------------------------------------------------------------------- /open-next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/open-next.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/icons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/public/icons/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/icons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/public/icons/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/icons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/public/icons/apple-touch-icon.png -------------------------------------------------------------------------------- /public/icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/public/icons/favicon-16x16.png -------------------------------------------------------------------------------- /public/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/public/icons/favicon-32x32.png -------------------------------------------------------------------------------- /public/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/public/icons/favicon.ico -------------------------------------------------------------------------------- /public/icons/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/public/icons/site.webmanifest -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/placeholder-user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/public/placeholder-user.jpg -------------------------------------------------------------------------------- /public/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/public/sw.js -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/tsconfig.json -------------------------------------------------------------------------------- /wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innovatorved/realtime-interview-copilot/HEAD/wrangler.toml --------------------------------------------------------------------------------