From 6161a2803c85653977a5c66b07b340467ae38cdf Mon Sep 17 00:00:00 2001 From: Jiwon Kim Date: Wed, 17 Dec 2025 11:03:32 -0800 Subject: [PATCH] EntitySource.inline_label --- chatkit/types.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/chatkit/types.py b/chatkit/types.py index c84c3db..2463348 100644 --- a/chatkit/types.py +++ b/chatkit/types.py @@ -860,6 +860,8 @@ class EntitySource(SourceBase): """Optional label shown with the icon in the default entity hover header when no preview callback is provided. """ + inline_label: str | None = None + """Optional label for the inline annotation view. When not provided, the icon is used instead.""" interactive: bool = False """Per-entity toggle to wire client callbacks and render this entity as interactive.""" data: dict[str, Any] = Field(default_factory=dict)