Source code for agntcy_acp.acp_v0.models.streaming_mode

# Copyright AGNTCY Contributors (https://github.com/agntcy)
# SPDX-License-Identifier: Apache-2.0
# coding: utf-8

"""
Agent Connect Protocol

No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)

The version of the OpenAPI document: 0.2.2
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 StreamingMode(str, Enum): """ StreamingMode """ """ allowed enum values """ VALUES = "values" CUSTOM = "custom"
[docs] @classmethod def from_json(cls, json_str: str) -> Self: """Create an instance of StreamingMode from a JSON string""" return cls(json.loads(json_str))