-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(python-client): Reference PR #93
- Loading branch information
Showing
39 changed files
with
5,874 additions
and
4,902 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
.openapi-generator/ | ||
agent_protocol_client_README.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# OpenAPI Generator Ignore | ||
# Generated by openapi-generator https://github.com/openapitools/openapi-generator | ||
|
||
# Use this file to prevent files from being overwritten by the generator. | ||
# The patterns follow closely to .gitignore or .dockerignore. | ||
|
||
# As an example, the C# client generator defines ApiClient.cs. | ||
# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line: | ||
#ApiClient.cs | ||
|
||
# You can match any string of characters against a directory, file or extension with a single asterisk (*): | ||
#foo/*/qux | ||
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux | ||
|
||
# You can recursively match patterns against a directory, file or extension with a double asterisk (**): | ||
#foo/**/qux | ||
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux | ||
|
||
# You can also negate patterns with an exclamation (!). | ||
# For example, you can ignore all files in a docs folder with the file extension .md: | ||
#docs/*.md | ||
# Then explicitly reverse the ignore rule for a single file: | ||
#!docs/README.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,47 @@ | ||
# 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 agent_protocol_client.api.agent_api import AgentApi | ||
|
||
# import ApiClient | ||
from agent_protocol_client.api_response import ApiResponse | ||
from agent_protocol_client.api_client import ApiClient | ||
from agent_protocol_client.configuration import Configuration | ||
from agent_protocol_client.exceptions import OpenApiException | ||
from agent_protocol_client.exceptions import ApiTypeError | ||
from agent_protocol_client.exceptions import ApiValueError | ||
from agent_protocol_client.exceptions import ApiKeyError | ||
from agent_protocol_client.exceptions import ApiAttributeError | ||
from agent_protocol_client.exceptions import ApiException | ||
|
||
# import models into sdk package | ||
from agent_protocol_client.models.artifact import Artifact | ||
from agent_protocol_client.models.step import Step | ||
from agent_protocol_client.models.step_all_of import StepAllOf | ||
from agent_protocol_client.models.step_request_body import StepRequestBody | ||
from agent_protocol_client.models.task import Task | ||
from agent_protocol_client.models.task_all_of import TaskAllOf | ||
from agent_protocol_client.models.task_request_body import TaskRequestBody | ||
# coding: utf-8 | ||
|
||
# flake8: noqa | ||
|
||
""" | ||
Agent Protocol | ||
Specification of the API protocol for communication with an agent. | ||
The version of the OpenAPI document: v1 | ||
Generated by OpenAPI Generator (https://openapi-generator.tech) | ||
Do not edit the class manually. | ||
""" # noqa: E501 | ||
|
||
|
||
__version__ = "1.1.0" | ||
|
||
# import apis into sdk package | ||
from agent_protocol_client.api.agent_api import AgentApi | ||
|
||
# import ApiClient | ||
from agent_protocol_client.api_response import ApiResponse | ||
from agent_protocol_client.api_client import ApiClient | ||
from agent_protocol_client.configuration import Configuration | ||
from agent_protocol_client.exceptions import OpenApiException | ||
from agent_protocol_client.exceptions import ApiTypeError | ||
from agent_protocol_client.exceptions import ApiValueError | ||
from agent_protocol_client.exceptions import ApiKeyError | ||
from agent_protocol_client.exceptions import ApiAttributeError | ||
from agent_protocol_client.exceptions import ApiException | ||
|
||
# import models into sdk package | ||
from agent_protocol_client.models.artifact import Artifact | ||
from agent_protocol_client.models.get_agent_task404_response import ( | ||
GetAgentTask404Response, | ||
) | ||
from agent_protocol_client.models.pagination import Pagination | ||
from agent_protocol_client.models.step import Step | ||
from agent_protocol_client.models.step_request_body import StepRequestBody | ||
from agent_protocol_client.models.task import Task | ||
from agent_protocol_client.models.task_artifacts_list_response import ( | ||
TaskArtifactsListResponse, | ||
) | ||
from agent_protocol_client.models.task_list_response import TaskListResponse | ||
from agent_protocol_client.models.task_request_body import TaskRequestBody | ||
from agent_protocol_client.models.task_steps_list_response import TaskStepsListResponse |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# flake8: noqa | ||
|
||
# import apis into api package | ||
from agent_protocol_client.api.agent_api import AgentApi | ||
# flake8: noqa | ||
|
||
# import apis into api package | ||
from agent_protocol_client.api.agent_api import AgentApi |
Oops, something went wrong.