From 586c063b55ed9d8773fae5559b59d06c0af79b8e Mon Sep 17 00:00:00 2001 From: Pranjal Bhatia <233476158+pranjalbhatia710@users.noreply.github.com> Date: Thu, 2 Jul 2026 02:30:23 +0400 Subject: [PATCH] fix(types): type response annotation added event --- .../responses/response_output_text_annotation_added_event.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/openai/types/responses/response_output_text_annotation_added_event.py b/src/openai/types/responses/response_output_text_annotation_added_event.py index b9dc262150..090fdb7f72 100644 --- a/src/openai/types/responses/response_output_text_annotation_added_event.py +++ b/src/openai/types/responses/response_output_text_annotation_added_event.py @@ -3,6 +3,7 @@ from typing_extensions import Literal from ..._models import BaseModel +from .response_output_text import Annotation __all__ = ["ResponseOutputTextAnnotationAddedEvent"] @@ -10,8 +11,8 @@ class ResponseOutputTextAnnotationAddedEvent(BaseModel): """Emitted when an annotation is added to output text content.""" - annotation: object - """The annotation object being added. (See annotation schema for details.)""" + annotation: Annotation + """The annotation object being added.""" annotation_index: int """The index of the annotation within the content part."""