Skip to content

Commit 85c4e54

Browse files
committed
fix: apply code review suggestions
Refs: #2914
1 parent ae4a07e commit 85c4e54

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/openai/types/responses/response_text_delta_event.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class ResponseTextDeltaEvent(BaseModel):
4545
"""The text delta that was added."""
4646

4747
item_id: str
48-
logprobs: List[Logprob]
48+
"""The ID of the output item that the text delta was added to."""
4949

5050
logprobs: Optional[List[Logprob]] = None
5151
"""The log probabilities of the tokens in the delta."""

src/openai/types/responses/response_text_done_event.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class ResponseTextDoneEvent(BaseModel):
4242
"""The index of the content part that the text content is finalized."""
4343

4444
item_id: str
45-
logprobs: List[Logprob]
45+
"""The ID of the output item that the text content is finalized."""
4646

4747
logprobs: Optional[List[Logprob]] = None
4848
"""The log probabilities of the tokens in the delta."""

0 commit comments

Comments
 (0)