# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

from typing_extensions import Literal

from .._models import BaseModel

__all__ = ["ThinkingBlock"]


class ThinkingBlock(BaseModel):
    signature: str

    thinking: str

    type: Literal["thinking"]
