Source code for arize._generated.api_client.models.input_variable_format

# coding: utf-8

"""
    Arize REST API

    API specification for the backend data server. The API is hosted globally at https://api.arize.com/v2 or in your own environment. 

    The version of the OpenAPI document: 2.0.0
    Generated by OpenAPI Generator (https://openapi-generator.tech)

    Do not edit the class manually.
"""  # noqa: E501


from __future__ import annotations
import json
from enum import Enum
from typing_extensions import Self


[docs] class InputVariableFormat(str, Enum): """ The format for input variables in the prompt messages. Defaults to `f_string` if not provided. - `f_string`: Single curly braces ({variable_name}) - `mustache`: Double curly braces ({{variable_name}}) - `none`: **Deprecated.** Treated as `f_string`. Will be removed in a future version. """ """ allowed enum values """ F_STRING = 'f_string' MUSTACHE = 'mustache' NONE = 'none'
[docs] @classmethod def from_json(cls, json_str: str) -> Self: """Create an instance of InputVariableFormat from a JSON string""" return cls(json.loads(json_str))