"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
# @generated-id: 4330bdaa00b9

from __future__ import annotations
from datetime import datetime
from mistralai.client.types import BaseModel
from typing_extensions import TypedDict


class UpdateRunInfoTypedDict(TypedDict):
    execution_time: datetime
    chunks_count: int


class UpdateRunInfo(BaseModel):
    execution_time: datetime

    chunks_count: int
