Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions python/semantic_kernel/contents/annotation_content.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ class CitationType(str, Enum):
URL_CITATION = "url_citation"
FILE_PATH = "file_path"
FILE_CITATION = "file_citation"
CONTAINER_FILE_CITATION = "container_file_citation"


@experimental
Expand All @@ -38,6 +39,8 @@ class AnnotationContent(KernelContent):
url: str | None = None
title: str | None = None
citation_type: CitationType | None = Field(None, alias="type")
Comment thread
moonbox3 marked this conversation as resolved.
container_id: str | None = None
Comment thread
moonbox3 marked this conversation as resolved.
filename: str | None = None

model_config = ConfigDict(
extra="ignore",
Expand Down
Loading