diff --git a/surfsense_backend/app/agents/chat/runtime/references/chat/__init__.py b/surfsense_backend/app/agents/chat/runtime/references/chat/__init__.py new file mode 100644 index 000000000..841f2291a --- /dev/null +++ b/surfsense_backend/app/agents/chat/runtime/references/chat/__init__.py @@ -0,0 +1,7 @@ +"""Resolve ``@chat`` mentions into pointers, access-checked, titles only.""" + +from __future__ import annotations + +from .resolver import resolve_chat_references + +__all__ = ["resolve_chat_references"]