From 856df201dbfb6d584f02f5f0cf4f3ac1727cab8a Mon Sep 17 00:00:00 2001 From: "DESKTOP-RTLN3BA\\$punk" Date: Mon, 9 Feb 2026 17:15:33 -0800 Subject: [PATCH] feat: add future annotations to content_utils.py - Imported future annotations to improve type hinting and support forward references in the content utilities module. --- surfsense_backend/app/utils/content_utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/surfsense_backend/app/utils/content_utils.py b/surfsense_backend/app/utils/content_utils.py index 536e63851..5f2a4cd46 100644 --- a/surfsense_backend/app/utils/content_utils.py +++ b/surfsense_backend/app/utils/content_utils.py @@ -9,6 +9,8 @@ Message content in new_chat_messages can be stored in various formats: These utilities help extract and transform content for different use cases. """ +from __future__ import annotations + from typing import TYPE_CHECKING from langchain_core.messages import AIMessage, HumanMessage