references: package surface

This commit is contained in:
CREDO23 2026-06-24 21:42:17 +02:00
parent 05b58b80ed
commit ce67c282b9

View file

@ -0,0 +1,16 @@
"""Resolved ``@``-references and their pointer block.
References are scope, not content: they tell the model what the user pointed
at this turn so it can retrieve from those sources with tools.
"""
from __future__ import annotations
from .models import ReferenceKind, ResolvedReference
from .reference_pointers import render_reference_pointers
__all__ = [
"ReferenceKind",
"ResolvedReference",
"render_reference_pointers",
]