mirror of
https://github.com/wassname/openrouter-python-sdk-retry-errors.git
synced 2026-08-02 12:50:48 +08:00
fix: add overlay to remove nullable from pagination offset params (#121)
This commit is contained in:
@@ -12,25 +12,25 @@ ReasoningDeltaEventType = Literal["response.reasoning_text.delta",]
|
||||
class ReasoningDeltaEventTypedDict(TypedDict):
|
||||
r"""Event emitted when reasoning text delta is streamed"""
|
||||
|
||||
type: ReasoningDeltaEventType
|
||||
output_index: float
|
||||
item_id: str
|
||||
content_index: float
|
||||
content_index: int
|
||||
delta: str
|
||||
sequence_number: float
|
||||
item_id: str
|
||||
output_index: int
|
||||
sequence_number: int
|
||||
type: ReasoningDeltaEventType
|
||||
|
||||
|
||||
class ReasoningDeltaEvent(BaseModel):
|
||||
r"""Event emitted when reasoning text delta is streamed"""
|
||||
|
||||
type: ReasoningDeltaEventType
|
||||
|
||||
output_index: float
|
||||
|
||||
item_id: str
|
||||
|
||||
content_index: float
|
||||
content_index: int
|
||||
|
||||
delta: str
|
||||
|
||||
sequence_number: float
|
||||
item_id: str
|
||||
|
||||
output_index: int
|
||||
|
||||
sequence_number: int
|
||||
|
||||
type: ReasoningDeltaEventType
|
||||
|
||||
Reference in New Issue
Block a user