main
 1# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
 2
 3from __future__ import annotations
 4
 5from typing import Optional
 6from typing_extensions import TypedDict
 7
 8from .shared_params.metadata import Metadata
 9
10__all__ = ["EvalUpdateParams"]
11
12
13class EvalUpdateParams(TypedDict, total=False):
14    metadata: Optional[Metadata]
15    """Set of 16 key-value pairs that can be attached to an object.
16
17    This can be useful for storing additional information about the object in a
18    structured format, and querying for objects via API or the dashboard.
19
20    Keys are strings with a maximum length of 64 characters. Values are strings with
21    a maximum length of 512 characters.
22    """
23
24    name: str
25    """Rename the evaluation."""