feat(chat): add citations package surface

This commit is contained in:
CREDO23 2026-06-24 21:35:19 +02:00
parent 61b8af0af4
commit 85b999a52d

View file

@ -0,0 +1,16 @@
"""Citation registry: maps model-facing ``[n]`` labels to real sources.
Server-side only; the model sees only the bare ``[n]``.
"""
from __future__ import annotations
from .models import CitationEntry, CitationSourceType
from .registry import CitationRegistry, make_key
__all__ = [
"CitationEntry",
"CitationRegistry",
"CitationSourceType",
"make_key",
]