mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-22 08:24:26 +01:00
43 lines
1.4 KiB
Python
43 lines
1.4 KiB
Python
# coding: utf-8
|
|
|
|
# flake8: noqa
|
|
|
|
"""
|
|
Agent Communication Protocol
|
|
|
|
Specification of the API protocol for communication with an agent. # noqa: E501
|
|
|
|
The version of the OpenAPI document: v0.2
|
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
|
|
Do not edit the class manually.
|
|
"""
|
|
|
|
|
|
__version__ = "1.0.0"
|
|
|
|
# import apis into sdk package
|
|
from agbenchmark.agent_protocol_client.api.agent_api import AgentApi
|
|
from agbenchmark.agent_protocol_client.api_client import ApiClient
|
|
|
|
# import ApiClient
|
|
from agbenchmark.agent_protocol_client.api_response import ApiResponse
|
|
from agbenchmark.agent_protocol_client.configuration import Configuration
|
|
from agbenchmark.agent_protocol_client.exceptions import (
|
|
ApiAttributeError,
|
|
ApiException,
|
|
ApiKeyError,
|
|
ApiTypeError,
|
|
ApiValueError,
|
|
OpenApiException,
|
|
)
|
|
|
|
# import models into sdk package
|
|
from agbenchmark.agent_protocol_client.models.artifact import Artifact
|
|
from agbenchmark.agent_protocol_client.models.step import Step
|
|
from agbenchmark.agent_protocol_client.models.step_all_of import StepAllOf
|
|
from agbenchmark.agent_protocol_client.models.step_request_body import StepRequestBody
|
|
from agbenchmark.agent_protocol_client.models.task import Task
|
|
from agbenchmark.agent_protocol_client.models.task_all_of import TaskAllOf
|
|
from agbenchmark.agent_protocol_client.models.task_request_body import TaskRequestBody
|