"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.""" from __future__ import annotations from .generationcontentdata import GenerationContentData, GenerationContentDataTypedDict from openrouter.types import BaseModel from typing_extensions import TypedDict class GenerationContentResponseTypedDict(TypedDict): r"""Stored prompt and completion content for a generation""" data: GenerationContentDataTypedDict r"""Stored prompt and completion content""" class GenerationContentResponse(BaseModel): r"""Stored prompt and completion content for a generation""" data: GenerationContentData r"""Stored prompt and completion content"""