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
+7 -7
View File
@@ -10,20 +10,20 @@ URLCitationType = Literal["url_citation",]
class URLCitationTypedDict(TypedDict):
end_index: int
start_index: int
title: str
type: URLCitationType
url: str
title: str
start_index: float
end_index: float
class URLCitation(BaseModel):
type: URLCitationType
end_index: int
url: str
start_index: int
title: str
start_index: float
type: URLCitationType
end_index: float
url: str