feat: add future annotations to content_utils.py

- Imported future annotations to improve type hinting and support forward references in the content utilities module.
This commit is contained in:
DESKTOP-RTLN3BA\$punk 2026-02-09 17:15:33 -08:00
parent d6153a6473
commit 856df201db

View file

@ -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