Source code for agntcy_acp.acp_v0.models.thread_status
# 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 ThreadStatus(str, Enum):
"""
ThreadStatus
"""
"""
allowed enum values
"""
IDLE = "idle"
BUSY = "busy"
INTERRUPTED = "interrupted"
ERROR = "error"
[docs]
@classmethod
def from_json(cls, json_str: str) -> Self:
"""Create an instance of ThreadStatus from a JSON string"""
return cls(json.loads(json_str))