Interview.ai is an autonomous AI-driven agent designed to conduct mock interviews based on specific job descriptions.
- Autonomous Mock Interviews: Conducts mock interviews based on the provided job description
- Real-Time Feedback: Provides instant analysis and insights to help candidates improve
- Voice Interaction Support: Allows candidates to respond to questions via voice, enhancing realism
- Job-Specific Interview Questions: Tailored questions to closely match job requirements
- Downloadable Feedback: Exports feedback as a PDF or DOCX document for future reference
- Framework: Next.js (v14.2.16)
- Language: TypeScript (v5)
- Authentication: Clerk
- Voice Recognition: Deepgram
- Storage: AWS S3
- AI Responses: Groq
- PDF Generation: PDF-lib
- Data Visualization: Recharts
- UI Components: Shadcn, Tailwind CSS
To run this project, you will need:
- Node.js (v16 or later)
- npm or yarn for managing dependencies
- An AWS S3 bucket for storing user data securely
- API keys for Groq, Deepgram, and Clerk
-
Clone the Repository:
git clone https://github.com/PranitPatil03/interview.ai.git cd interview.ai
-
Install Dependencies:
npm install # or yarn install
-
Environment Variables: Create a
.env
file in the root directory and add:# Clerk Authentication Keys NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=your_clerk_publishable_key CLERK_SECRET_KEY=your_clerk_secret_key NEXT_PUBLIC_CLERK_SIGN_IN_URL=your_clerk_sign_in_url NEXT_PUBLIC_CLERK_SIGN_UP_URL=your_clerk_sign_up_url NEXT_PUBLIC_CLERK_SIGN_IN_FORCE_REDIRECT_URL=your_clerk_sign_in_force_redirect_url NEXT_PUBLIC_CLERK_SIGN_UP_FORCE_REDIRECT_URL=your_clerk_sign_up_force_redirect_url # AWS S3 Configuration NEXT_PUBLIC_S3_BUCKET_NAME=your_s3_bucket_name NEXT_PUBLIC_AWS_REGION=your_aws_region NEXT_PUBLIC_AWS_ACCESS_KEY_ID=your_aws_access_key_id NEXT_PUBLIC_AWS_SECRET_ACCESS_KEY=your_aws_secret_access_key
-
Run the Development Server:
npm run dev
Open http://localhost:3000 in your browser to view the application.
- User Authentication: Sign up or log in using Clerk authentication
- Input Job Description: Start a new interview session by entering the job description
- Mock Interview: The AI agent will ask job-specific questions. Answer each question by typing or using voice input
- Feedback: At the end of the interview, download feedback as a PDF or DOCX document
We welcome contributions! Please follow these steps:
- Fork the repository
- Create a new branch (
git checkout -b feature-branch
) - Commit your changes (
git commit -m 'Add some feature'
) - Push to the branch (
git push origin feature-branch
) - Open a pull request