File size: 31,085 Bytes
23d337e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 | # Provider Development Guide
This document describes how to build, register, configure, and test
providers for Face Intel. A **provider** is the unit of pluggable
capability in the platform β anything from a face detector to a reverse
image search engine to a forensics analyzer.
> **Read this end-to-end before adding your first provider.** The
> contract is small but strict β providers that follow it get caching,
> retries, circuit breaking, metrics, and structured logging for free.
---
## Table of Contents
1. [Architecture at a Glance](#1-architecture-at-a-glance)
2. [The Provider Protocol](#2-the-provider-protocol)
3. [The Capability Enum](#3-the-capability-enum)
4. [ProviderResult Contract](#4-providerresult-contract)
5. [BaseProvider Helpers](#5-baseprovider-helpers)
6. [Step-by-Step: Adding a New Provider](#6-step-by-step-adding-a-new-provider)
7. [Manifest Entry Format](#7-manifest-entry-format)
8. [Settings Flag Convention](#8-settings-flag-convention)
9. [Health Check Pattern](#9-health-check-pattern)
10. [Error Handling Pattern (`_safe_execute`)](#10-error-handling-pattern-_safe_execute)
11. [PipelineOutput β What You Receive](#11-pipelineoutput--what-you-receive)
12. [Testing Pattern for Providers](#12-testing-pattern-for-providers)
13. [Reference Providers](#13-reference-providers)
14. [Common Pitfalls](#14-common-pitfalls)
---
## 1. Architecture at a Glance
```
HTTP request β Service β Pipeline (validate/preprocess/hash/feature-extract)
β
PipelineOutput
β
Orchestrator.run(...)
β
βββββββββββββββ¬ββββββββββββββ¬ββββββββββββββ
βΌ βΌ βΌ βΌ
Provider A Provider B Provider C Provider D
β β β β
βββββββββββββββ΄ββββββββββββββ΄ββββββββββββββ
β
dict[str, ProviderResult]
β
ReportMerger.merge(...)
β
UnifiedFaceReport
```
**Key invariants:**
- Providers receive a `PipelineOutput`, never raw user input.
- Providers are isolated β a failing optional dependency in one
provider must never affect another.
- Every result (success or failure) is preserved as `Evidence` in the
final report β nothing is silently discarded.
- Providers do **not** import from siblings. They import only from
`models/`, `utils/`, `config/`, `pipeline/`, and `providers/base.py`.
See [`docs/ARCHITECTURE.md`](ARCHITECTURE.md) for the full layer
dependency graph and execution flow.
---
## 2. The Provider Protocol
Defined in [`providers/base.py`](../providers/base.py):
```python
@runtime_checkable
class Provider(Protocol):
name: str
capability: ProviderCapability
def is_available(self) -> bool: ...
def execute(self, input_data: Any) -> ProviderResult: ...
```
This is a **structural protocol**, not an ABC. Any object that exposes
those four members satisfies the contract β no inheritance required.
In practice, almost all providers subclass `BaseProvider` to inherit
timing and error handling (see Β§5).
| Member | Purpose |
|---|---|
| `name` | Stable string identifier used in logs, metrics, cache keys, and the manifest. Lowercase, snake_case. |
| `capability` | One of the 7 `ProviderCapability` values. Determines which job kinds invoke this provider. |
| `is_available()` | Returns `False` if optional deps or API keys are missing. The orchestrator still calls `execute()`, but `BaseProvider._safe_execute` short-circuits and returns a `NotConfigured` result. |
| `execute(input_data)` | Receives a `PipelineOutput`. Returns a `ProviderResult`. Never raises β see Β§10. |
---
## 3. The Capability Enum
Defined in [`models/providers.py`](../models/providers.py):
```python
class ProviderCapability(str, enum.Enum):
DETECTION = "detection"
RECOGNITION = "recognition"
SCRAPING = "scraping"
REVERSE_SEARCH = "reverse_search"
IMAGE_ANALYSIS = "image_analysis" # quality, properties, visual features
METADATA = "metadata" # EXIF, XMP, IPTC
FORENSICS = "forensics" # integrity, duplicates, manipulation
```
The orchestrator routes a request to providers by querying the registry
with `list_by_capability(cap)`. The services layer requests the
following capabilities per job kind:
| `JobKind` | Capabilities invoked |
|---|---|
| `DETECTION` | `DETECTION` |
| `RECOGNITION` | `RECOGNITION` |
| `SEARCH` | `SCRAPING`, `REVERSE_SEARCH` |
| `IMAGE_ANALYSIS` | `IMAGE_ANALYSIS` |
| `METADATA` | `METADATA` |
| `FORENSICS` | `FORENSICS` |
| `FULL_PIPELINE` | All of the above (concurrently) |
### Adding a new capability
If you need an 8th capability (e.g. `AGE_ESTIMATION`):
1. Add the enum value to `models/providers.py::ProviderCapability`.
2. Add a corresponding list field on `UnifiedFaceReport` in
`models/reports.py` (e.g. `age_estimations: List[...]`).
3. Add a `Normalized*` DTO in `normalization/schema.py`.
4. Add a `_collect_*` collector method in `normalization/merger.py`.
5. Add a `score_*` method in `confidence/engine.py`.
6. Map any new `JobKind` to the new capability in
`services/analysis_service.py::_KIND_TO_CAPABILITY` (or create a
new service).
**Capability additions are rare** β confirm with the architecture owner
first. The seven current capabilities cover all planned Phase 3 work.
---
## 4. ProviderResult Contract
Defined in [`providers/base.py`](../providers/base.py):
```python
@dataclass
class ProviderResult:
provider: str
capability: ProviderCapability
success: bool
elapsed_ms: float
raw: Any = None # verbatim provider response (evidence)
normalized: dict = field(default_factory=dict) # cleaned fields
error: Optional[str] = None
error_type: Optional[str] = None # e.g. "RuntimeError", "TimeoutError"
metadata: dict = field(default_factory=dict)
retry_count: int = 0
```
| Field | Required? | Purpose |
|---|---|---|
| `provider` | yes | Same string as `name`. |
| `capability` | yes | Same enum value as `capability`. |
| `success` | yes | `True` if the provider produced a usable result. |
| `elapsed_ms` | yes | Wall-clock time in milliseconds. |
| `raw` | recommended | The verbatim provider response (API payload, model output dict, etc.). Stored as Evidence β never modified. |
| `normalized` | recommended | Cleaned fields in the schema the merger expects (see Β§11). |
| `error` | on failure | Human-readable error message. |
| `error_type` | on failure | Python exception class name. |
| `metadata` | optional | Free-form dict (e.g. `{"cache_hit": True}`). |
| `retry_count` | set by orchestrator | How many retries occurred before this result. |
**Evidence-first principle:** `raw` is preserved verbatim in every job's
`UnifiedFaceReport.evidence` list. Even if `normalized` is wrong or the
schema changes, the original data survives for forensic review.
---
## 5. BaseProvider Helpers
`BaseProvider` is the recommended base class. It provides:
- Constructor that accepts an optional `Settings` instance (DI-friendly).
- `execute()` that delegates to `_safe_execute()`.
- `_safe_execute()` wraps `_run()` with timing + try/except (see Β§10).
- Default `is_available()` returns `True` (override when needed).
Subclasses implement only:
```python
def _run(self, pipeline_output: PipelineOutput) -> tuple[Any, dict]:
"""Return (raw, normalized). Raise on error β _safe_execute catches."""
```
The orchestrator ALWAYS passes a
[`pipeline.feature_extraction.PipelineOutput`](../pipeline/feature_extraction.py).
Providers extract what they need from it (image, face crops, gallery,
scrape URL, original bytes for EXIF/forensics).
---
## 6. Step-by-Step: Adding a New Provider
This is the **complete** process. After these three changes, the
orchestrator, services, API, and UI pick up the new provider
automatically β zero changes elsewhere.
### Step 1 β Implement the provider
Create `providers/<category>/<your_provider>.py`. The category folder
must already exist (`detection/`, `recognition/`, `scraper/`,
`reverse/`, `image_analysis/`, `metadata/`, `forensics/`).
```python
"""
MyProvider β one-line description.
Optional: implementation notes, references to papers or APIs,
verified facts, failure modes, rate limits, etc.
"""
from __future__ import annotations
import cv2
import numpy as np
from config.settings import Settings, settings as _default_settings
from pipeline.feature_extraction import PipelineOutput
from providers.base import BaseProvider, ProviderCapability, ProviderResult
from utils.image import BBox
class MyProvider(BaseProvider):
"""What this provider does, in one sentence."""
name = "my_provider"
capability = ProviderCapability.DETECTION # or RECOGNITION / etc.
def __init__(self, settings: Settings | None = None) -> None:
super().__init__(settings=settings or _default_settings)
# Initialize your model / API client / detector here.
# If a required dependency is missing, store the error and
# return False from is_available() β do NOT raise.
self._init_error: str | None = None
try:
# ... your initialization ...
self._model = self._load_model()
except Exception as e:
self._init_error = str(e)
# ------------------------------------------------------------------ #
# Health check
# ------------------------------------------------------------------ #
def is_available(self) -> bool:
"""Return False if optional deps / API keys / models are missing."""
return self._model is not None and self._init_error is None
# ------------------------------------------------------------------ #
# Core logic β return (raw, normalized). Raise on error.
# ------------------------------------------------------------------ #
def _run(self, pipeline_output: PipelineOutput) -> tuple[dict, dict]:
img: np.ndarray = pipeline_output.image
# ... do your work ...
boxes = [BBox(0, 0, 100, 100).to_dict()]
raw = {
"model": "my_model_v1",
"detections": [{"box": [0, 0, 100, 100], "confidence": 0.95}],
"num_faces": 1,
}
normalized = {
"boxes": boxes,
"num_faces": len(boxes),
"confidences": [0.95],
"landmarks": None,
}
return raw, normalized
```
### Step 2 β Add one manifest entry
Edit [`providers/registry.py`](../providers/registry.py) and append to
`PROVIDER_MANIFEST`:
```python
PROVIDER_MANIFEST: list[ManifestEntry] = [
# ... existing entries ...
ManifestEntry(
name="my_provider",
module_path="providers.detection.my_provider",
class_name="MyProvider",
capability=ProviderCapability.DETECTION,
enable_flag="enable_my_provider",
description="My provider β one-line description",
optional_dependency=True, # True if it imports an optional package
),
]
```
### Step 3 β Add the enable flag
Edit [`config/settings.py`](../config/settings.py) and add the flag in
the "Provider enable flags" section:
```python
enable_my_provider: bool = False
# ... any tuning knobs your provider needs, e.g.:
my_provider_threshold: float = 0.7
```
Also add the corresponding line to [`.env.example`](../.env.example):
```env
FI_ENABLE_MY_PROVIDER=false
```
### Step 4 β Done
You're finished. On next startup:
- `ProviderRegistry.discover()` imports your module and instantiates
`MyProvider(settings=...)`.
- If `enable_my_provider=False`, the provider is `DISABLED` and never
instantiated.
- If `enable_my_provider=True` but `is_available()` returns `False`,
the provider shows up as `NOT_CONFIGURED` in `/providers`.
- If both pass, the orchestrator invokes it for matching capability
queries.
- `/providers` lists it, `/stats` tracks its metrics, the circuit
breaker protects against its failures, and the cache dedupes
identical invocations.
**No other file needs to change.** This is the core extensibility
guarantee of the platform.
---
## 7. Manifest Entry Format
`ManifestEntry` is a dataclass declared in `providers/registry.py`:
```python
@dataclass
class ManifestEntry:
name: str # stable id, matches Provider.name
module_path: str # dotted import path to the module
class_name: str # class to instantiate
capability: ProviderCapability # routes to orchestrator
enable_flag: str # Settings attribute name
description: str = "" # shown in /providers
optional_dependency: bool = False # affects logging on ImportError
```
### Conventions
- `name` must match `Provider.name` **exactly** (case-sensitive).
- `module_path` follows the `providers.<category>.<name>` pattern.
Use underscores in the file name; the manifest entry name itself
should also use underscores.
- `enable_flag` is the Settings attribute name (e.g.
`"enable_my_provider"`), NOT the env var (`FI_ENABLE_MY_PROVIDER`).
Pydantic handles the prefix translation.
- Set `optional_dependency=True` if your module imports an optional
package (e.g. `insightface`, `dlib`, `tensorflow`). The registry
then logs the missing dependency at `warning` level and marks the
provider as `NOT_CONFIGURED` rather than crashing startup.
### Existing manifest (24 entries)
See the full list in
[`providers/registry.py`](../providers/registry.py). The 24 providers
span all 7 capabilities:
| Capability | Providers |
|---|---|
| DETECTION | `haar`, `dnn`, `mtcnn`, `retinaface` |
| RECOGNITION | `face_recognition`, `deepface`, `insightface` |
| SCRAPING | `beautifulsoup`, `selenium`, `bing`, `duckduckgo` |
| REVERSE_SEARCH | `google_lens`, `serpapi`, `yandex`, `tineye` |
| IMAGE_ANALYSIS | `image_quality`, `image_properties`, `visual_features` |
| METADATA | `exif`, `xmp` |
| FORENSICS | `image_integrity`, `duplicate_detector`, `manipulation_analyzer` |
---
## 8. Settings Flag Convention
### Naming
- Enable flag: `enable_<provider_name>: bool = <default>`
- Tuning knob: `<provider_name>_<knob>: <type> = <default>`
Examples from `config/settings.py`:
```python
enable_haar: bool = True
haar_scale_factor: float = 1.1
haar_min_neighbors: int = 5
enable_dnn: bool = True
dnn_confidence_threshold: float = 0.7
enable_serpapi: bool = False
serpapi_key: str = "" # API keys live alongside enable flag
```
### Defaults
- Default `True` for providers that ship with the platform and have no
external dependencies (`haar`, `dnn`, `image_quality`,
`image_properties`, `exif`, `image_integrity`, `duplicate_detector`,
`beautifulsoup`, `duckduckgo`).
- Default `False` for providers that require optional Python packages,
paid API keys, or a Chrome/Chromium binary (`retinaface`, `deepface`,
`insightface`, `bing`, `serpapi`, `yandex`, `tineye`,
`visual_features`, `xmp`, `manipulation_analyzer`).
- `mtcnn`, `face_recognition`, `selenium`, `google_lens` default to
`True` because their deps are in `requirements.txt`, but they may
fail to `is_available()` at runtime (e.g. Chrome missing).
### Env-var mapping
Pydantic-Settings auto-translates `enable_my_provider` to the env var
`FI_ENABLE_MY_PROVIDER` (case-insensitive). See
[`docs/CONFIGURATION.md`](CONFIGURATION.md) for the full table.
---
## 9. Health Check Pattern
`is_available()` is called by:
1. The registry's `info()` method (used by `/providers` and `/health/providers`).
2. `BaseProvider._safe_execute()` at the start of every invocation β
returns a `NotConfigured` result if it returns `False`.
3. The `FeatureExtractor` (only the chosen default detector is used
for pre-extraction of face crops).
### Three valid patterns
**Pattern A β always available (pure-OpenCV providers)**
```python
def is_available(self) -> bool:
return True
```
Used by: `haar`, `image_quality`, `image_properties`,
`image_integrity`, `duplicate_detector`.
**Pattern B β model loaded successfully**
```python
def __init__(self, settings):
super().__init__(settings=settings or _default_settings)
self._net = None
self._init_error: str | None = None
try:
self._net = cv2.dnn.readNetFromCaffe(...)
except Exception as e:
self._init_error = str(e)
def is_available(self) -> bool:
return self._net is not None and self._init_error is None
```
Used by: `dnn` (also auto-downloads model files in `__init__`).
**Pattern C β optional dependency / API key**
```python
def __init__(self, settings):
super().__init__(settings=settings or _default_settings)
self._api_key = self._settings.serpapi_key
def is_available(self) -> bool:
return bool(self._api_key)
```
Used by: `serpapi`, `bing`, `tineye`, `exif` (imports `PIL`
lazily).
### What `is_available()` must NOT do
- β Make network calls.
- β Run the model on an image.
- β Raise exceptions β wrap in try/except and return `False`.
- β Block for more than a few milliseconds.
The orchestrator calls this on every request; expensive checks
defeat the circuit breaker.
---
## 10. Error Handling Pattern (`_safe_execute`)
`BaseProvider.execute()` calls `_safe_execute()`, which:
1. Records `time.perf_counter()` as `t0`.
2. Calls `is_available()`. If `False`, returns a `ProviderResult`
with `success=False`, `error_type="NotConfigured"`,
`error="Provider not available (disabled or missing dependencies)"`.
3. Calls `self._run(input_data)` inside a `try` block.
4. On success, returns a `ProviderResult` with `success=True`,
the raw + normalized dicts, and the measured `elapsed_ms`.
5. On any `Exception`, returns a `ProviderResult` with
`success=False`, `error=str(e)`, `error_type=type(e).__name__`.
```python
def _safe_execute(self, input_data: Any) -> ProviderResult:
t0 = time.perf_counter()
try:
if not self.is_available():
return ProviderResult(
provider=self.name,
capability=self.capability,
success=False,
elapsed_ms=0.0,
error="Provider not available (disabled or missing dependencies)",
error_type="NotConfigured",
)
raw, normalized = self._run(input_data)
elapsed = (time.perf_counter() - t0) * 1000.0
return ProviderResult(
provider=self.name,
capability=self.capability,
success=True,
elapsed_ms=round(elapsed, 3),
raw=raw,
normalized=normalized,
)
except Exception as e:
elapsed = (time.perf_counter() - t0) * 1000.0
return ProviderResult(
provider=self.name,
capability=self.capability,
success=False,
elapsed_ms=round(elapsed, 3),
error=str(e),
error_type=type(e).__name__,
)
```
### Implications for `_run`
- **You may raise any exception.** It will be caught and converted to
a `ProviderResult` with `success=False`.
- **You should NOT catch broad `Exception` yourself** unless you want
to convert specific errors into richer `normalized` output. Let
`_safe_execute` do the generic catching.
- **You should NOT mutate global state** that survives across
invocations. The orchestrator may invoke you concurrently from
multiple threads (it uses `asyncio.to_thread`).
- **You should NOT call other providers.** Cross-provider composition
happens in the orchestrator and merger layers.
### Retryable errors
The orchestrator's `RetryPolicy` (see
[`orchestrator/retry.py`](../orchestrator/retry.py)) only retries
`TimeoutError`, `ConnectionError`, and `OSError`. If your provider
raises `RuntimeError` for a transient network issue, it will not be
retried β re-raise as `ConnectionError` instead:
```python
import requests
def _run(self, pipeline_output):
try:
resp = self._session.post(...)
resp.raise_for_status()
except requests.ConnectionError as e:
raise # retriable
except requests.HTTPError as e:
if e.response.status_code == 429:
raise ConnectionError("rate limited") from e # retriable
raise # non-retriable (4xx other than 429)
```
---
## 11. PipelineOutput β What You Receive
Defined in [`pipeline/feature_extraction.py`](../pipeline/feature_extraction.py):
```python
@dataclass
class PipelineOutput:
image: np.ndarray # BGR, preprocessed (max dim 1024)
image_hash: str # SHA-256 cache key
width: int
height: int
source: str # "url" | "base64" | "bytes"
original_bytes: Optional[bytes] = None # for EXIF / forensics
original_format: Optional[str] = None # ".jpg", ".png", etc.
face_crops: List[FaceCrop] = field(default_factory=list)
primary_detector: str = "" # name of detector used for crops
gallery: Optional[dict] = None # set by RecognitionService
scrape_url: Optional[str] = None # set by SearchService
```
### What each capability should read
| Capability | Read from `PipelineOutput` |
|---|---|
| DETECTION | `image` |
| RECOGNITION | `image`, `face_crops`, `gallery` (dict: `person_name -> List[np.ndarray]`) |
| SCRAPING | `scrape_url` (or `image` for the source page) |
| REVERSE_SEARCH | `image` (uploaded as JPEG to the reverse-search service) |
| IMAGE_ANALYSIS | `image` |
| METADATA | `original_bytes`, `original_format` |
| FORENSICS | `original_bytes`, `image` |
### Normalized output schemas
The merger expects specific keys in `normalized` per capability. If
you omit keys, the merger fills defaults. If you use different keys,
your data won't reach the final `UnifiedFaceReport`.
| Capability | Required `normalized` keys |
|---|---|
| DETECTION | `boxes: list[{x,y,w,h}]`, `num_faces: int`, `confidences: list[float]`, `landmarks: list\|dict\|None` |
| RECOGNITION | `matches: list[{query_face_index, best_match, distance, distances}]` |
| SCRAPING | `images: list[{url, alt, source_page, width, height}]` |
| REVERSE_SEARCH | `results: list[{image_url, source_page, title, snippet, thumbnail}]` |
| IMAGE_ANALYSIS | `quality_score, brightness, contrast, sharpness, noise_level, width, height, channels, color_profile, dominant_colors, aspects` |
| METADATA | `format, exif, xmp, iptc, gps, camera_make, camera_model, software, capture_time` |
| FORENSICS | `integrity_score, is_duplicate, duplicate_of, similarity_score, manipulation_indicators, ela_score, noise_inconsistency, details` |
Use `BBox(x, y, w, h).to_dict()` from [`utils/image.py`](../utils/image.py)
to produce correctly-shaped `boxes` entries for detection providers.
---
## 12. Testing Pattern for Providers
Provider tests live in `tests/providers/test_<provider_name>.py` and
follow this shape (see `tests/providers/test_haar.py` for the canonical
example):
```python
"""Provider tests for MyProvider."""
from __future__ import annotations
import cv2
import numpy as np
import pytest
from config.settings import Settings
from pipeline.feature_extraction import PipelineOutput
from providers.detection.my_provider import MyProvider
from providers.base import ProviderResult
@pytest.fixture
def my_provider():
return MyProvider(settings=Settings(environment="test", db_path=":memory:"))
@pytest.fixture
def pipeline_output(sample_image_bytes):
img = cv2.imdecode(np.frombuffer(sample_image_bytes, np.uint8), cv2.IMREAD_COLOR)
return PipelineOutput(
image=img,
image_hash="test-hash",
width=img.shape[1],
height=img.shape[0],
source="bytes",
original_bytes=sample_image_bytes,
original_format=".jpg",
)
class TestMyProvider:
def test_name(self, my_provider):
assert my_provider.name == "my_provider"
def test_capability(self, my_provider):
from models.providers import ProviderCapability
assert my_provider.capability == ProviderCapability.DETECTION
def test_is_available(self, my_provider):
assert my_provider.is_available() is True
def test_execute_returns_provider_result(self, my_provider, pipeline_output):
result = my_provider.execute(pipeline_output)
assert isinstance(result, ProviderResult)
assert result.provider == "my_provider"
assert result.success is True
assert result.elapsed_ms > 0
def test_normalized_has_expected_keys(self, my_provider, pipeline_output):
result = my_provider.execute(pipeline_output)
assert "boxes" in result.normalized
assert "num_faces" in result.normalized
def test_black_image_finds_no_faces(self, my_provider):
img = np.zeros((200, 200, 3), dtype=np.uint8)
po = PipelineOutput(image=img, image_hash="x",
width=200, height=200, source="bytes")
result = my_provider.execute(po)
assert result.success is True
assert result.normalized["num_faces"] == 0
def test_execute_does_not_raise_on_bad_input(self, my_provider):
"""1x1 image β must not crash."""
img = np.zeros((1, 1, 3), dtype=np.uint8)
po = PipelineOutput(image=img, image_hash="x",
width=1, height=1, source="bytes")
result = my_provider.execute(po)
assert result.success is True
```
### Checklist for a new provider test file
- [ ] Fixture constructs the provider with `Settings(environment="test", db_path=":memory:")`.
- [ ] Fixture builds a `PipelineOutput` (use the `sample_image_bytes` conftest fixture).
- [ ] Tests `name`, `capability`, `is_available()`.
- [ ] Tests that `execute()` returns a `ProviderResult` with the right `provider` and `success=True`.
- [ ] Tests the `normalized` dict has the required keys for the capability.
- [ ] Tests a "no faces / empty input" case returns `success=True` with empty results (not a crash).
- [ ] Tests a tiny/edge-case image (1Γ1, fully black, fully white) does not raise.
### Running provider tests
```bash
python -m pytest tests/providers/ -v
python -m pytest tests/providers/test_my_provider.py -v
```
See [`docs/TESTING.md`](TESTING.md) for the full test guide including
fixtures, coverage goals, and CI integration.
---
## 13. Reference Providers
Each existing provider demonstrates a different pattern. Read the
source for the one closest to what you're building:
| Provider | File | Pattern demonstrated |
|---|---|---|
| `haar` | [`providers/detection/haar.py`](../providers/detection/haar.py) | Minimal β always available, reads `pipeline_output.image`, returns `boxes`/`confidences`. |
| `dnn` | [`providers/detection/dnn.py`](../providers/detection/dnn.py) | Model auto-download, CUDA fallback, `is_available()` checks loaded model, threshold from settings. |
| `image_quality` | [`providers/image_analysis/image_quality.py`](../providers/image_analysis/image_quality.py) | Pure-OpenCV analysis, composite heuristic score, static methods for sub-computations. |
| `image_properties` | [`providers/image_analysis/image_properties.py`](../providers/image_analysis/image_properties.py) | K-means dominant colors with downsampling for speed. |
| `exif` | [`providers/metadata/exif.py`](../providers/metadata/exif.py) | Reads `original_bytes`, lazy PIL import, GPS coordinate conversion, graceful empty fallback. |
| `image_integrity` | [`providers/forensics/image_integrity.py`](../providers/forensics/image_integrity.py) | Multi-check forensics (Pillow decode, JPEG APP marker scan, SHA-256, size sanity), issue list β score. |
| `duplicate_detector` | [`providers/forensics/duplicate_detector.py`](../providers/forensics/duplicate_detector.py) | pHash + dHash, in-memory hash registry, Hamming-distance matching. |
| `serpapi` | [`providers/reverse/serpapi.py`](../providers/reverse/serpapi.py) | Paid API provider: API-key check in `is_available()`, two-step upload+search flow, uses `utils.http.shared_session()`. |
---
## 14. Common Pitfalls
### β Importing from siblings
```python
# providers/detection/my_provider.py
from providers.detection.haar import HaarDetector # WRONG
```
Providers must not depend on each other. If you need shared logic,
put it in `utils/` or `pipeline/`.
### β Reading `Settings()` directly instead of using injected settings
```python
class MyProvider(BaseProvider):
def _run(self, ...):
threshold = Settings().my_threshold # WRONG β bypasses DI
threshold = self._settings.my_threshold # RIGHT
```
### β Raising from `is_available()`
```python
def is_available(self) -> bool:
return self._net.is_ready() # WRONG β could raise
```
Wrap it:
```python
def is_available(self) -> bool:
try:
return self._net.is_ready()
except Exception:
return False
```
### β Returning ad-hoc `normalized` schemas
```python
normalized = {"faces_found": 1} # WRONG β merger expects "num_faces"
```
Match the schema in Β§11. Use `BBox(...).to_dict()` for boxes.
### β Blocking the event loop
Provider `execute()` runs in `asyncio.to_thread`, so synchronous I/O
is fine β but if your provider makes a long HTTP call, set a sensible
timeout (`requests` defaults to none). The orchestrator enforces a
hard cap of `orchestrator_timeout_seconds` (default 90s) per
provider.
### β Forgetting to add the enable flag
If you add a manifest entry with `enable_flag="enable_my_provider"`
but forget to add the field to `Settings`, the registry logs:
```
Provider my_provider disabled by config (enable_my_provider=False)
```
β¦and silently skips it. Pydantic won't raise because `extra="ignore"`
is set on the Settings model. Always add the field.
### β Heavy work in `__init__`
The registry instantiates every enabled provider at startup. If your
constructor downloads a 100 MB model, the app takes 100 MB longer to
boot. Prefer lazy initialization: download in the first `_run()` call,
or use a flag like `dnn` does (`_ensure_models_downloaded()`).
---
## See Also
- [`docs/ARCHITECTURE.md`](ARCHITECTURE.md) β layer dependency graph,
execution flow, lifecycle diagrams.
- [`docs/CONFIGURATION.md`](CONFIGURATION.md) β every `FI_*` env var
including all provider enable flags.
- [`docs/API_REFERENCE.md`](API_REFERENCE.md) β the `/providers`
endpoint that exposes your provider once registered.
- [`docs/TESTING.md`](TESTING.md) β full test layout and fixtures.
- [`docs/TROUBLESHOOTING.md`](TROUBLESHOOTING.md) β provider
not_configured, circuit breaker, model download failures.
|