# This file was auto-generated by Fern from our API Definition.

import typing

import pydantic
from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel


class CompletionUsage(UniversalBaseModel):
    completion_tokens: int = pydantic.Field()
    """
    Number of tokens in the generated completion.
    """

    prompt_tokens: int = pydantic.Field()
    """
    Number of tokens in the prompt.
    """

    total_tokens: int = pydantic.Field()
    """
    Total number of tokens used in the request (prompt + completion).
    """

    if IS_PYDANTIC_V2:
        model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True)  # type: ignore # Pydantic v2
    else:

        class Config:
            frozen = True
            smart_union = True
            extra = pydantic.Extra.allow
