AI Interview Assistant is an intelligent interview preparation platform that helps users improve their interview skills through AI-powered mock interviews. The application provides personalized interview experiences, real-time feedback, and comprehensive evaluation reports.
- 🤖 AI-Powered Mock Interviews: Conduct realistic interview simulations with intelligent AI agents
- 📚 Personalized Content: Upload your resume, job descriptions, and interview question banks for tailored experiences
- 🎯 Real-time Feedback: Get instant feedback and guidance on your answers
- 📊 Comprehensive Evaluation: Receive detailed assessment reports with scores across multiple dimensions
- 🌐 Bilingual Support: Full support for both English and Chinese languages
- ⚡ Advanced AI Tools: Powered by Mastra AI framework with multiple specialized tools
- 📱 Modern UI: Beautiful, responsive interface built with Next.js and Tailwind CSS
- Frontend: Next.js 14, React, TypeScript
- Styling: Tailwind CSS, shadcn/ui components
- AI Framework: Mastra AI, OpenAI GPT-4
- Backend: Next.js API Routes
- Internationalization: Custom i18n system
- File Processing: PDF, Markdown, and text file support
- Node.js 18+
- npm, yarn, or pnpm
- OpenAI API key (configured in frontend settings)
-
Clone the repository
git clone https://github.com/murongg/your-interviewer.git cd your-interviewer
-
Install dependencies
npm install # or yarn install # or pnpm install
-
Set up environment variables (optional)
cp .env.example .env.local
Note: OpenAI API key is configured in the frontend settings, not in environment variables.
-
Run the development server
npm run dev # or yarn dev # or pnpm dev
-
Open your browser Navigate to http://localhost:3000
- Resume: Upload your resume for personalized questions
- Job Description: Add target job requirements for relevant interviews
- Interview Questions: Upload question banks for specific topics
- Knowledge Base: Add technical documentation for specialized interviews
- Click "Start Interview" to begin
- Answer questions naturally as you would in a real interview
- Receive real-time feedback and guidance
- After completing the interview, click "Interview Evaluation"
- Review your comprehensive assessment report
- See scores across technical skills, communication, problem-solving, and more
- Question Generation: AI generates relevant questions based on your materials
- Answer Evaluation: Get detailed feedback on your responses
- Progress Tracking: Monitor your improvement over time
- Smart Termination: AI automatically ends interviews when you're ready
interview-assistant/
├── app/ # Next.js app directory
│ ├── api/ # API routes
│ │ ├── chat/ # Chat API for interviews
│ │ ├── evaluate/ # Evaluation API
│ │ └── upload/ # File upload API
│ ├── globals.css # Global styles
│ ├── layout.tsx # Root layout
│ └── page.tsx # Main page
├── components/ # React components
│ ├── ui/ # shadcn/ui components
│ ├── evaluation-report.tsx
│ ├── file-upload.tsx
│ ├── language-switcher.tsx
│ └── ...
├── lib/ # Utility libraries
│ ├── i18n.ts # Internationalization
│ ├── mastra.ts # AI tools and agents
│ └── utils.ts # Utility functions
├── hooks/ # Custom React hooks
└── styles/ # Additional styles
Variable | Description | Required |
---|---|---|
OPENAI_BASE_URL |
OpenAI API base URL | No (defaults to official) |
Note: OpenAI API key is configured through the frontend settings interface, not through environment variables.
The application supports both English and Chinese. The default language is English, but users can switch languages through the UI.
We welcome contributions! Please feel free to submit a Pull Request. For major changes, please open an issue first to discuss what you would like to change.
- Fork the repository
- Create your feature branch (
git checkout -b feature/AmazingFeature
) - Commit your changes (
git commit -m 'Add some AmazingFeature'
) - Push to the branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
This project is licensed under the MIT License - see the LICENSE file for details.