add mentioned_surfsense_doc_ids to NewChatRequest schema

This commit is contained in:
CREDO23 2026-01-13 02:42:59 +02:00
parent ce62bef322
commit 7e3e784b45

View file

@ -163,3 +163,6 @@ class NewChatRequest(BaseModel):
mentioned_document_ids: list[int] | None = (
None # Optional document IDs mentioned with @ in the chat
)
mentioned_surfsense_doc_ids: list[int] | None = (
None # Optional SurfSense documentation IDs mentioned with @ in the chat
)