This commit is contained in:
itqop 2025-07-18 20:46:03 +03:00
parent f6122d7091
commit cd67e88e6a
5 changed files with 2 additions and 14 deletions

View File

@ -1,4 +1,3 @@
import time
from fastapi import APIRouter, HTTPException
from src.models.lead import LeadInput
@ -11,8 +10,6 @@ router = APIRouter(prefix="/api/v1", tags=["generation"])
@router.post("/generate_email", response_model=EmailResponse)
async def generate_email(lead_data: LeadInput):
start_time = time.time()
try:
request = lead_data.model_dump()

View File

@ -13,7 +13,7 @@ async def health_check():
chroma_store = ChromaStore()
doc_count = chroma_store.get_count()
embedding_service = EmbeddingService()
EmbeddingService()
health_status = {
"status": "healthy",

View File

@ -98,13 +98,6 @@ class DocumentChunker:
current_section = ""
current_title = "Введение"
semantic_markers = [
("Проблема", ["проблема", "вызов", "трудност", "сложност"]),
("Решение", ["решение", "как", "что сделали", "подход"]),
("Результат", ["результат", "итог", "достижени", "эффект"]),
("О клиенте", ["о клиенте", "о компании", "клиент"]),
]
for line in lines:
line_stripped = line.strip()

View File

@ -21,8 +21,6 @@ class MarkdownLoader:
with open(file_path, "r", encoding="utf-8") as f:
content = f.read()
html_content = self.md.convert(content)
title = self._extract_title(content)
doc_id = self._generate_doc_id(file_path)

View File

@ -217,5 +217,5 @@ class TestEmbeddingService:
with patch("src.app.config.settings") as mock_settings:
mock_settings.llm_provider = "openai"
service = EmbeddingService()
EmbeddingService()
mock_provider.assert_called_once()