Skip to content
Open
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
4 changes: 2 additions & 2 deletions src/openai/types/responses/response_output_text.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class AnnotationFileCitation(BaseModel):
"""The filename of the file cited."""

index: int
"""The index of the file in the list of files."""
"""The index at which to insert the file citation in the message text (zero-based character index)."""

type: Literal["file_citation"]
"""The type of the file citation. Always `file_citation`."""
Expand Down Expand Up @@ -74,7 +74,7 @@ class AnnotationFilePath(BaseModel):
"""The ID of the file."""

index: int
"""The index of the file in the list of files."""
"""The index at which to insert the file path annotation in the message text (zero-based character index)."""

type: Literal["file_path"]
"""The type of the file path. Always `file_path`."""
Expand Down