fix: add overlay to remove nullable from pagination offset params (#121)

This commit is contained in:
Matt Apperson
2026-04-14 12:48:15 -04:00
committed by GitHub
parent 2bba049182
commit b2386114cd
440 changed files with 36150 additions and 32168 deletions
+10 -10
View File
@@ -6,39 +6,39 @@ from typing import Literal
from typing_extensions import TypedDict
ChatToolCallType = Literal["function",]
class ChatToolCallFunctionTypedDict(TypedDict):
name: str
r"""Function name to call"""
arguments: str
r"""Function arguments as JSON string"""
name: str
r"""Function name to call"""
class ChatToolCallFunction(BaseModel):
arguments: str
r"""Function arguments as JSON string"""
name: str
r"""Function name to call"""
arguments: str
r"""Function arguments as JSON string"""
ChatToolCallType = Literal["function",]
class ChatToolCallTypedDict(TypedDict):
r"""Tool call made by the assistant"""
function: ChatToolCallFunctionTypedDict
id: str
r"""Tool call identifier"""
type: ChatToolCallType
function: ChatToolCallFunctionTypedDict
class ChatToolCall(BaseModel):
r"""Tool call made by the assistant"""
function: ChatToolCallFunction
id: str
r"""Tool call identifier"""
type: ChatToolCallType
function: ChatToolCallFunction