Remplace TechStepClassifierService's node-nlp (NlpManager) par services/tech-step-intent-service, un microservice FastAPI/spaCy dedie (PhraseMatcher pour le NER par synonymes, textcat pour la classification d'intention). Corpus (TECH_STEP_TRAINING_DATA) toujours possede par apps/api, pousse au service via POST /v1/train a chaque warm-up ; le service ne touche jamais Postgres (meme posture que services/tech-step-llm-worker). Cote apps/api : - intent-service-client.ts : client HTTP vers le nouveau service - tech-step-matcher.ts : delegue NER + intent classification au client, logique pure (splitIntoClauses, seuil/fallback) inchangee - env.ts : INTENT_SERVICE_BASE_URL/INTENT_SERVICE_SECRET (secret requis, service coeur non optionnel) - server.ts : warm-up avec retry/backoff (service Python demarre a part) - scripts/calibrate-tech-step-threshold.ts : recalibration empirique de CONFIDENCE_THRESHOLD contre le jeu d'eval existant - node-nlp retire (package.json, node-nlp.d.ts, model.nlp du .gitignore) docker-compose.yml : nouveau service tech-step-intent-service (pas de port expose, healthcheck, app en depend). CI : job intent-service-test (pytest) + le job test demarre le service en arriere-plan avant la suite Mocha (jamais de mock d'un service interne, cf specs/dev-conventions.md). Verifie : 26/26 tests pytest du service (dont les offsets caracteres exacts de tech-step-matcher.test.ts), lint + build complets du monorepo, smoke test HTTP reel bout en bout. La suite Mocha et docker compose build/up n'ont pas pu etre executes dans cet environnement (pas de Postgres/Docker disponibles ici) — a confirmer via la CI et en local. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
42 lines
1.2 KiB
Python
42 lines
1.2 KiB
Python
"""`require_valid_secret` — miroir inversé de
|
|
`require-internal-worker.test.ts` côté `apps/api`."""
|
|
|
|
import pytest
|
|
from fastapi.testclient import TestClient
|
|
|
|
from intent_service.config import settings
|
|
from intent_service.main import app
|
|
|
|
|
|
@pytest.fixture
|
|
def client():
|
|
with TestClient(app) as test_client:
|
|
yield test_client
|
|
|
|
|
|
def test_rejects_a_missing_secret(client: TestClient):
|
|
response = client.post("/v1/process", json={"locale": "fr", "text": "faire fondre"})
|
|
assert response.status_code == 401
|
|
|
|
|
|
def test_rejects_a_wrong_secret(client: TestClient):
|
|
response = client.post(
|
|
"/v1/process",
|
|
json={"locale": "fr", "text": "faire fondre"},
|
|
headers={"X-Intent-Service-Secret": "not-the-right-secret"},
|
|
)
|
|
assert response.status_code == 401
|
|
|
|
|
|
def test_accepts_the_configured_secret(client: TestClient):
|
|
response = client.post(
|
|
"/v1/process",
|
|
json={"locale": "fr", "text": "faire fondre"},
|
|
headers={"X-Intent-Service-Secret": settings.intent_service_secret},
|
|
)
|
|
assert response.status_code == 200
|
|
|
|
|
|
def test_health_requires_no_secret(client: TestClient):
|
|
response = client.get("/health")
|
|
assert response.status_code == 200
|