
- Complete FastAPI backend with SQLite database
- AI-powered resume parsing and job matching using OpenAI
- JWT authentication with role-based access control
- Resume upload, job management, and matching endpoints
- Recruiter dashboard with candidate ranking
- Analytics and skill gap analysis features
- Comprehensive API documentation with OpenAPI
- Alembic database migrations
- File upload support for PDF, DOCX, and TXT resumes
- CORS enabled for frontend integration
🤖 Generated with BackendIM
Co-Authored-By: Claude <noreply@anthropic.com>
5 lines
331 B
Python
5 lines
331 B
Python
from .user import User, UserCreate, UserUpdate, UserResponse, Token
|
|
from .resume import Resume, ResumeCreate, ResumeUpdate, ResumeResponse
|
|
from .job import Job, JobCreate, JobUpdate, JobResponse
|
|
from .match import Match, MatchResponse, SkillGap, SkillGapResponse
|
|
from .analytics import Analytics, AnalyticsCreate, AnalyticsResponse |