├── .eslintrc.json ├── .gitignore ├── README.md ├── app ├── api │ ├── deepgram │ │ └── route.ts │ ├── groq │ │ └── route.ts │ └── neets │ │ └── route.ts ├── dg.svg ├── favicon.ico ├── globals.css ├── layout.tsx ├── microphone.tsx ├── page.tsx └── recording.svg ├── deepgram.toml ├── media └── groq.webm ├── next.config.js ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── public ├── click.png ├── deepgram.svg └── speak.png ├── tailwind.config.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serkandyck/realtime-voice-assistant-groq/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serkandyck/realtime-voice-assistant-groq/HEAD/README.md -------------------------------------------------------------------------------- /app/api/deepgram/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serkandyck/realtime-voice-assistant-groq/HEAD/app/api/deepgram/route.ts -------------------------------------------------------------------------------- /app/api/groq/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serkandyck/realtime-voice-assistant-groq/HEAD/app/api/groq/route.ts -------------------------------------------------------------------------------- /app/api/neets/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serkandyck/realtime-voice-assistant-groq/HEAD/app/api/neets/route.ts -------------------------------------------------------------------------------- /app/dg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serkandyck/realtime-voice-assistant-groq/HEAD/app/dg.svg -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serkandyck/realtime-voice-assistant-groq/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serkandyck/realtime-voice-assistant-groq/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serkandyck/realtime-voice-assistant-groq/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/microphone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serkandyck/realtime-voice-assistant-groq/HEAD/app/microphone.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serkandyck/realtime-voice-assistant-groq/HEAD/app/page.tsx -------------------------------------------------------------------------------- /app/recording.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serkandyck/realtime-voice-assistant-groq/HEAD/app/recording.svg -------------------------------------------------------------------------------- /deepgram.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serkandyck/realtime-voice-assistant-groq/HEAD/deepgram.toml -------------------------------------------------------------------------------- /media/groq.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serkandyck/realtime-voice-assistant-groq/HEAD/media/groq.webm -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serkandyck/realtime-voice-assistant-groq/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serkandyck/realtime-voice-assistant-groq/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serkandyck/realtime-voice-assistant-groq/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serkandyck/realtime-voice-assistant-groq/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serkandyck/realtime-voice-assistant-groq/HEAD/public/click.png -------------------------------------------------------------------------------- /public/deepgram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serkandyck/realtime-voice-assistant-groq/HEAD/public/deepgram.svg -------------------------------------------------------------------------------- /public/speak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serkandyck/realtime-voice-assistant-groq/HEAD/public/speak.png -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serkandyck/realtime-voice-assistant-groq/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serkandyck/realtime-voice-assistant-groq/HEAD/tsconfig.json --------------------------------------------------------------------------------