-
Notifications
You must be signed in to change notification settings - Fork 2
Feat/frontend recruiter #33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Create job_service_utils.py with reusable get_latest_jobs() function - Simplify /search endpoint: * Make query parameter optional (defaults to empty string) * Perform semantic search when query provided * Fallback to latest jobs if no query or no results * Support pagination across all 200 results - Simplify /recommendations endpoint: * Use skill-based vector search for personalized results * Fallback to latest jobs if no skills or no results * Consistent pagination logic - Refactor map_job_to_response() for better readability: * Extract helper functions for location building and list extraction * Reduce code from 109 to 65 lines (40% reduction) * Maintain all existing functionality - Update vector_job_service.py: * Improve _construct_job_text() to use job description fields * Include title, role overview, skills, nice-to-have, and benefits * Better semantic search relevance Breaking Changes: - VISIBLE_STATUSES changed from ['active', 'expired'] to ['active'] - Removed /admin/reindex endpoint (moved to separate cleanup)
Fix ImportError preventing server startup: - Change imports in candidate.py and resume.py - Import directly from app.schemas.shared instead of app.schemas - Breaks circular dependency: __init__.py → candidate.py → __init__.py Before: app/schemas/__init__.py imports from app/schemas/candidate.py app/schemas/candidate.py imports from app/schemas (circular!) After: app/schemas/__init__.py imports from app/schemas/candidate.py app/schemas/candidate.py imports from app/schemas.shared (no cycle) Fixes: ImportError: cannot import name 'CertificationBase' from partially initialized module 'app.schemas'
- Add explicit exports in __init__.py for better IDE support - Remove docstring in favor of explicit imports - Update application.py and shared.py formatting - Makes schema imports more discoverable and type-safe
- Remove default values from Settings in config.py (require explicit env vars) - Rename QDRANT_COLLECTION_JOBS to QDRANT_COLLECTION_NAME for consistency - Clean up __init__.py exports - Improves configuration clarity and type safety
- Remove unused imports across API routes and services - Clean up interview scheduling agent nodes - Remove unused admin endpoint from API router - Update import paths to use app.models directly - General code formatting improvements No functional changes, purely cleanup.
- Remove unused imports from agent model __init__ files - Simplify module structure - No functional changes
…umn grid layouts Redesigned both candidate and recruiter job pages to share the same design system featuring enhanced modal overlays with improved spacing (900px width), refined typography with proper letter-spacing, and consistent 4-column responsive grids. Implemented comprehensive UI/UX improvements including colored badge systems, vertical accent bars, optimized info grids with proper text handling, and recruiter-specific stats display while maintaining all role-specific functionality.
- Refactor design system with modern, vibrant color palette throughout - Implement consistent visual hierarchy with improved gradients and shadows - Polish all UI components with better spacing, transitions, and animations - Enhance dashboard with more engaging layouts and visual elements - Add dummy data for recent activity logs to demonstrate functionality - Improve component responsiveness across all screen sizes - Unify component styling for cohesive look and feel - Optimize loading states and skeleton components - Fix ESLint warnings and errors across frontend codebase - Remove unused imports and variables for cleaner code - Standardize code formatting with consistent patterns - Enhance job cards, modals, and forms with better visual feedback - Improve authentication flow UI with polished components - Refine recruiter and candidate dashboards for better UX This commit significantly improves the overall visual appeal and user experience of the application while maintaining code quality standards.
Updated README to enhance structure and clarity, including new sections for overview, features, and tech stack.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request introduces several improvements and refactors across the codebase and documentation. The most notable changes include a major rewrite and reorganization of the
README.mdfor clarity and onboarding, the addition of aMakefilefor streamlined local development, and backend API improvements for better data validation and maintainability.Documentation and Developer Experience Improvements:
Major rewrite and restructuring of
README.md:Added a new
Makefileto simplify running both backend and frontend development servers concurrently, streamlining the local development workflow.Backend API and Code Quality Enhancements:
Improved candidate profile API endpoints:
social_links,work_experiences, etc.) in theget_my_profileresponse for better schema compliance and frontend compatibility.General API code cleanup:
backend/app/api/__init__.pyandbackend/app/api/auth.pyfor better readability.These changes collectively improve the project's documentation, developer onboarding, API reliability, and code maintainability.