docs: Mintlify MDX docs + docs.json; bump Speakeasy to 1.787.0 (#382)

This commit is contained in:
Matt Apperson
2026-06-30 16:13:28 -04:00
committed by GitHub
parent 778e2e36fb
commit babeffc9aa
2100 changed files with 50407 additions and 16612 deletions
@@ -2,11 +2,9 @@
from __future__ import annotations
from openrouter.types import BaseModel, Nullable, UNSET_SENTINEL, UnrecognizedStr
from openrouter.utils import validate_open_enum
from pydantic import model_serializer
from pydantic.functional_validators import PlainValidator
from typing import Literal, Union
from typing_extensions import Annotated, TypedDict
from typing_extensions import TypedDict
UnifiedBenchmarksMetaSource = Union[
@@ -50,9 +48,7 @@ class UnifiedBenchmarksMeta(BaseModel):
model_count: int
r"""Number of unique models in the response."""
source: Annotated[
Nullable[UnifiedBenchmarksMetaSource], PlainValidator(validate_open_enum(False))
]
source: Nullable[UnifiedBenchmarksMetaSource]
r"""The source filter applied, or null when all sources are returned."""
source_url: Nullable[str]
@@ -66,30 +62,14 @@ class UnifiedBenchmarksMeta(BaseModel):
@model_serializer(mode="wrap")
def serialize_model(self, handler):
optional_fields = []
nullable_fields = ["citation", "source", "source_url", "task_type"]
null_default_fields = []
serialized = handler(self)
m = {}
for n, f in type(self).model_fields.items():
k = f.alias or n
val = serialized.get(k)
serialized.pop(k, None)
val = serialized.get(k, serialized.get(n))
optional_nullable = k in optional_fields and k in nullable_fields
is_set = (
self.__pydantic_fields_set__.intersection({n})
or k in null_default_fields
) # pylint: disable=no-member
if val is not None and val != UNSET_SENTINEL:
m[k] = val
elif val != UNSET_SENTINEL and (
not k in optional_fields or (optional_nullable and is_set)
):
if val != UNSET_SENTINEL:
m[k] = val
return m