"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.""" from __future__ import annotations from .toolcallstatus import ToolCallStatus from openrouter.types import ( BaseModel, Nullable, OptionalNullable, UNSET, UNSET_SENTINEL, ) import pydantic from pydantic import model_serializer from typing import Literal, Optional from typing_extensions import Annotated, NotRequired, TypedDict OutputImageGenerationServerToolItemType = Literal["openrouter:image_generation",] class OutputImageGenerationServerToolItemTypedDict(TypedDict): r"""An openrouter:image_generation server tool output item""" status: ToolCallStatus type: OutputImageGenerationServerToolItemType id: NotRequired[str] image_b64: NotRequired[str] image_url: NotRequired[str] result: NotRequired[Nullable[str]] r"""The generated image as a base64-encoded string or URL, matching OpenAI image_generation_call format""" revised_prompt: NotRequired[str] class OutputImageGenerationServerToolItem(BaseModel): r"""An openrouter:image_generation server tool output item""" status: ToolCallStatus type: OutputImageGenerationServerToolItemType id: Optional[str] = None image_b64: Annotated[Optional[str], pydantic.Field(alias="imageB64")] = None image_url: Annotated[Optional[str], pydantic.Field(alias="imageUrl")] = None result: OptionalNullable[str] = UNSET r"""The generated image as a base64-encoded string or URL, matching OpenAI image_generation_call format""" revised_prompt: Annotated[Optional[str], pydantic.Field(alias="revisedPrompt")] = ( None ) @model_serializer(mode="wrap") def serialize_model(self, handler): optional_fields = set(["id", "imageB64", "imageUrl", "result", "revisedPrompt"]) nullable_fields = set(["result"]) serialized = handler(self) m = {} for n, f in type(self).model_fields.items(): k = f.alias or n val = serialized.get(k, serialized.get(n)) is_nullable_and_explicitly_set = ( k in nullable_fields and (self.__pydantic_fields_set__.intersection({n})) # pylint: disable=no-member ) if val != UNSET_SENTINEL: if ( val is not None or k not in optional_fields or is_nullable_and_explicitly_set ): m[k] = val return m try: OutputImageGenerationServerToolItem.model_rebuild() except NameError: pass