daniielyan's picture
πŸ”¨ Implement core functionality for Job Search MCP Server, including user profile management, job search, cover letter generation, and Q&A response tools. Add configuration and service layers, and establish dependency management with uv. Introduce .gitignore and .python-version files for environment setup.
4fd18a2
raw
history blame contribute delete
311 Bytes
"""Services module for Job Search MCP Server."""
from .embedding_service import EmbeddingService
from .llm_service import LLMService
from .job_search_service import JobSearchService
from .profile_service import ProfileService
__all__ = ["EmbeddingService", "LLMService", "JobSearchService", "ProfileService"]