feat: завершить проект — добавить недостающие файлы, тесты и CI/CD

This commit is contained in:
2026-07-03 13:28:19 +00:00
parent ec2e9bf508
commit 0025e39e2d
20 changed files with 693 additions and 46 deletions
+17
View File
@@ -0,0 +1,17 @@
"""Схемы AI-матчинга."""
from pydantic import BaseModel, Field
class AIMatchRequest(BaseModel):
project_id: str = Field(..., description="ID проекта")
limit: int = Field(default=10, ge=1, le=50)
min_score: float | None = Field(default=None, ge=0.0, le=1.0)
class AIMatchResponse(BaseModel):
freelancer_id: str
name: str
skills_matched: list[str]
match_score: float
reasons: list[str]