asteroid-odyssey 1.3.2__tar.gz → 1.3.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/PKG-INFO +2 -1
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/pyproject.toml +3 -2
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v1_gen/models/agent_profile.py +3 -3
- asteroid_odyssey-1.3.4/src/asteroid_odyssey/agents_v2_gen/__init__.py +121 -0
- asteroid_odyssey-1.3.4/src/asteroid_odyssey/agents_v2_gen/api/__init__.py +5 -0
- asteroid_odyssey-1.3.4/src/asteroid_odyssey/agents_v2_gen/api/default_api.py +1199 -0
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v2_gen/api_client.py +1 -1
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v2_gen/configuration.py +4 -14
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v2_gen/exceptions.py +1 -1
- asteroid_odyssey-1.3.4/src/asteroid_odyssey/agents_v2_gen/models/__init__.py +53 -0
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v2_gen/models/activity_payload_union_action_completed.py +4 -4
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v2_gen/models/activity_payload_union_action_failed.py +4 -4
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v2_gen/models/activity_payload_union_action_started.py +4 -4
- asteroid_odyssey-1.3.4/src/asteroid_odyssey/agents_v2_gen/models/activity_payload_union_file_added.py +100 -0
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v2_gen/models/activity_payload_union_generic.py +4 -4
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v2_gen/models/activity_payload_union_status_changed.py +4 -4
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v2_gen/models/activity_payload_union_step_completed.py +4 -4
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v2_gen/models/activity_payload_union_step_started.py +4 -4
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v2_gen/models/activity_payload_union_terminal.py +4 -4
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v2_gen/models/activity_payload_union_transitioned_node.py +4 -4
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v2_gen/models/activity_payload_union_user_message_received.py +4 -4
- asteroid_odyssey-1.3.2/src/asteroid_odyssey/agents_v2_gen/models/execution_activity.py → asteroid_odyssey-1.3.4/src/asteroid_odyssey/agents_v2_gen/models/agents_execution_activity.py +8 -8
- asteroid_odyssey-1.3.2/src/asteroid_odyssey/agents_v2_gen/models/execution_activity_action_failed_payload.py → asteroid_odyssey-1.3.4/src/asteroid_odyssey/agents_v2_gen/models/agents_execution_activity_action_completed_payload.py +5 -5
- asteroid_odyssey-1.3.2/src/asteroid_odyssey/agents_v2_gen/models/execution_activity_generic_payload.py → asteroid_odyssey-1.3.4/src/asteroid_odyssey/agents_v2_gen/models/agents_execution_activity_action_failed_payload.py +5 -5
- asteroid_odyssey-1.3.2/src/asteroid_odyssey/agents_v2_gen/models/execution_activity_action_completed_payload.py → asteroid_odyssey-1.3.4/src/asteroid_odyssey/agents_v2_gen/models/agents_execution_activity_action_started_payload.py +5 -5
- asteroid_odyssey-1.3.4/src/asteroid_odyssey/agents_v2_gen/models/agents_execution_activity_file_added_payload.py +104 -0
- asteroid_odyssey-1.3.2/src/asteroid_odyssey/agents_v2_gen/models/execution_activity_action_started_payload.py → asteroid_odyssey-1.3.4/src/asteroid_odyssey/agents_v2_gen/models/agents_execution_activity_generic_payload.py +5 -5
- asteroid_odyssey-1.3.2/src/asteroid_odyssey/agents_v2_gen/models/execution_activity_payload_union.py → asteroid_odyssey-1.3.4/src/asteroid_odyssey/agents_v2_gen/models/agents_execution_activity_payload_union.py +26 -12
- asteroid_odyssey-1.3.2/src/asteroid_odyssey/agents_v2_gen/models/execution_activity_status_changed_payload.py → asteroid_odyssey-1.3.4/src/asteroid_odyssey/agents_v2_gen/models/agents_execution_activity_status_changed_payload.py +26 -20
- asteroid_odyssey-1.3.2/src/asteroid_odyssey/agents_v2_gen/models/execution_activity_step_started_payload.py → asteroid_odyssey-1.3.4/src/asteroid_odyssey/agents_v2_gen/models/agents_execution_activity_step_completed_payload.py +5 -5
- asteroid_odyssey-1.3.2/src/asteroid_odyssey/agents_v2_gen/models/execution_activity_step_completed_payload.py → asteroid_odyssey-1.3.4/src/asteroid_odyssey/agents_v2_gen/models/agents_execution_activity_step_started_payload.py +5 -5
- asteroid_odyssey-1.3.2/src/asteroid_odyssey/agents_v2_gen/models/execution_activity_transitioned_node_payload.py → asteroid_odyssey-1.3.4/src/asteroid_odyssey/agents_v2_gen/models/agents_execution_activity_transitioned_node_payload.py +5 -5
- asteroid_odyssey-1.3.2/src/asteroid_odyssey/agents_v2_gen/models/execution_activity_user_message_received_payload.py → asteroid_odyssey-1.3.4/src/asteroid_odyssey/agents_v2_gen/models/agents_execution_activity_user_message_received_payload.py +5 -5
- asteroid_odyssey-1.3.2/src/asteroid_odyssey/agents_v2_gen/models/execution_awaiting_confirmation_payload.py → asteroid_odyssey-1.3.4/src/asteroid_odyssey/agents_v2_gen/models/agents_execution_awaiting_confirmation_payload.py +5 -5
- asteroid_odyssey-1.3.4/src/asteroid_odyssey/agents_v2_gen/models/agents_execution_cancel_reason.py +38 -0
- asteroid_odyssey-1.3.4/src/asteroid_odyssey/agents_v2_gen/models/agents_execution_cancelled_payload.py +88 -0
- asteroid_odyssey-1.3.2/src/asteroid_odyssey/agents_v2_gen/models/execution_completed_payload.py → asteroid_odyssey-1.3.4/src/asteroid_odyssey/agents_v2_gen/models/agents_execution_completed_payload.py +5 -5
- asteroid_odyssey-1.3.2/src/asteroid_odyssey/agents_v2_gen/models/execution_failed_payload.py → asteroid_odyssey-1.3.4/src/asteroid_odyssey/agents_v2_gen/models/agents_execution_failed_payload.py +5 -5
- asteroid_odyssey-1.3.2/src/asteroid_odyssey/agents_v2_gen/models/execution_paused_payload.py → asteroid_odyssey-1.3.4/src/asteroid_odyssey/agents_v2_gen/models/agents_execution_paused_payload.py +5 -5
- asteroid_odyssey-1.3.2/src/asteroid_odyssey/agents_v2_gen/models/execution_status.py → asteroid_odyssey-1.3.4/src/asteroid_odyssey/agents_v2_gen/models/agents_execution_status.py +4 -4
- asteroid_odyssey-1.3.2/src/asteroid_odyssey/agents_v2_gen/models/execution_terminal_payload.py → asteroid_odyssey-1.3.4/src/asteroid_odyssey/agents_v2_gen/models/agents_execution_terminal_payload.py +5 -5
- asteroid_odyssey-1.3.2/src/asteroid_odyssey/agents_v2_gen/models/execution_user_messages_add_text_body.py → asteroid_odyssey-1.3.4/src/asteroid_odyssey/agents_v2_gen/models/agents_execution_user_messages_add_text_body.py +5 -5
- asteroid_odyssey-1.3.4/src/asteroid_odyssey/agents_v2_gen/models/agents_files_file.py +108 -0
- asteroid_odyssey-1.3.4/src/asteroid_odyssey/agents_v2_gen/models/common_bad_request_error_body.py +96 -0
- asteroid_odyssey-1.3.4/src/asteroid_odyssey/agents_v2_gen/models/common_forbidden_error_body.py +96 -0
- asteroid_odyssey-1.3.2/src/asteroid_odyssey/agents_v2_gen/models/error.py → asteroid_odyssey-1.3.4/src/asteroid_odyssey/agents_v2_gen/models/common_not_found_error_body.py +15 -8
- asteroid_odyssey-1.3.2/src/asteroid_odyssey/agents_v2_gen/models/versions.py → asteroid_odyssey-1.3.4/src/asteroid_odyssey/agents_v2_gen/models/version.py +5 -6
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v2_gen/rest.py +1 -1
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/client.py +177 -6
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey.egg-info/PKG-INFO +2 -1
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey.egg-info/SOURCES.txt +28 -21
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey.egg-info/requires.txt +1 -0
- asteroid_odyssey-1.3.2/src/asteroid_odyssey/agents_v2_gen/__init__.py +0 -107
- asteroid_odyssey-1.3.2/src/asteroid_odyssey/agents_v2_gen/api/__init__.py +0 -5
- asteroid_odyssey-1.3.2/src/asteroid_odyssey/agents_v2_gen/api/execution_api.py +0 -625
- asteroid_odyssey-1.3.2/src/asteroid_odyssey/agents_v2_gen/models/__init__.py +0 -46
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/README.md +0 -0
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/setup.cfg +0 -0
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/__init__.py +0 -0
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v1_gen/__init__.py +0 -0
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v1_gen/api/__init__.py +0 -0
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v1_gen/api/agent_profile_api.py +0 -0
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v1_gen/api/api_api.py +0 -0
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v1_gen/api/execution_api.py +0 -0
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v1_gen/api_client.py +0 -0
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v1_gen/api_response.py +0 -0
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v1_gen/configuration.py +0 -0
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v1_gen/exceptions.py +0 -0
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v1_gen/models/__init__.py +0 -0
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v1_gen/models/browser_session_recording_response.py +0 -0
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v1_gen/models/cookie.py +0 -0
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v1_gen/models/country_code.py +0 -0
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v1_gen/models/create_agent_profile_request.py +0 -0
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v1_gen/models/credential.py +0 -0
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v1_gen/models/delete_agent_profile200_response.py +0 -0
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v1_gen/models/error_response.py +0 -0
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v1_gen/models/execution_response.py +0 -0
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v1_gen/models/execution_result.py +0 -0
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v1_gen/models/execution_result_response.py +0 -0
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v1_gen/models/execution_status_response.py +0 -0
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v1_gen/models/health_check200_response.py +0 -0
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v1_gen/models/health_check500_response.py +0 -0
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v1_gen/models/proxy_type.py +0 -0
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v1_gen/models/status.py +0 -0
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v1_gen/models/structured_agent_execution_request.py +0 -0
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v1_gen/models/update_agent_profile_request.py +0 -0
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v1_gen/models/upload_execution_files200_response.py +0 -0
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v1_gen/py.typed +0 -0
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v1_gen/rest.py +0 -0
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v2_gen/api_response.py +0 -0
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey/agents_v2_gen/py.typed +0 -0
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey.egg-info/dependency_links.txt +0 -0
- {asteroid_odyssey-1.3.2 → asteroid_odyssey-1.3.4}/src/asteroid_odyssey.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: asteroid-odyssey
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.4
|
|
4
4
|
Summary: A Python SDK for browser automation using Asteroid platform.
|
|
5
5
|
Author-email: David Mlcoch <founders@asteroid.com>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -22,6 +22,7 @@ Requires-Dist: pydantic>=2
|
|
|
22
22
|
Requires-Dist: typing-extensions>=4.7.1
|
|
23
23
|
Requires-Dist: requests>=2.28.0
|
|
24
24
|
Requires-Dist: cryptography>=41.0.0
|
|
25
|
+
Requires-Dist: lazy-imports>=1.0.0
|
|
25
26
|
Provides-Extra: dev
|
|
26
27
|
Requires-Dist: pytest>=7.2.1; extra == "dev"
|
|
27
28
|
Requires-Dist: pytest-cov>=2.8.1; extra == "dev"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "asteroid-odyssey"
|
|
3
|
-
version = "1.3.
|
|
3
|
+
version = "1.3.4"
|
|
4
4
|
authors = [
|
|
5
5
|
{ name = "David Mlcoch", email = "founders@asteroid.com" },
|
|
6
6
|
]
|
|
@@ -16,7 +16,8 @@ dependencies = [
|
|
|
16
16
|
"pydantic>=2",
|
|
17
17
|
"typing-extensions>=4.7.1",
|
|
18
18
|
"requests>=2.28.0",
|
|
19
|
-
"cryptography>=41.0.0"
|
|
19
|
+
"cryptography>=41.0.0",
|
|
20
|
+
"lazy-imports>=1.0.0"
|
|
20
21
|
]
|
|
21
22
|
classifiers = [
|
|
22
23
|
"Programming Language :: Python :: 3",
|
|
@@ -19,7 +19,7 @@ import json
|
|
|
19
19
|
|
|
20
20
|
from datetime import datetime
|
|
21
21
|
from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictStr
|
|
22
|
-
from typing import Any, ClassVar, Dict, List
|
|
22
|
+
from typing import Any, ClassVar, Dict, List, Optional
|
|
23
23
|
from asteroid_odyssey.agents_v1_gen.models.cookie import Cookie
|
|
24
24
|
from asteroid_odyssey.agents_v1_gen.models.country_code import CountryCode
|
|
25
25
|
from asteroid_odyssey.agents_v1_gen.models.credential import Credential
|
|
@@ -35,8 +35,8 @@ class AgentProfile(BaseModel):
|
|
|
35
35
|
name: StrictStr = Field(description="Name of the agent profile (unique within organization)")
|
|
36
36
|
description: StrictStr = Field(description="Description of the agent profile")
|
|
37
37
|
organization_id: StrictStr = Field(description="The ID of the organization that the agent profile belongs to")
|
|
38
|
-
proxy_cc: CountryCode
|
|
39
|
-
proxy_type: ProxyType
|
|
38
|
+
proxy_cc: Optional[CountryCode] = None
|
|
39
|
+
proxy_type: Optional[ProxyType] = None
|
|
40
40
|
captcha_solver_active: StrictBool = Field(description="Whether the captcha solver is active for this profile")
|
|
41
41
|
sticky_ip: StrictBool = Field(description="Whether the same IP address should be used for all executions of this profile")
|
|
42
42
|
credentials: List[Credential] = Field(description="List of credentials associated with this agent profile")
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
# flake8: noqa
|
|
4
|
+
|
|
5
|
+
"""
|
|
6
|
+
Agent Service
|
|
7
|
+
|
|
8
|
+
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
9
|
+
|
|
10
|
+
The version of the OpenAPI document: v1
|
|
11
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
12
|
+
|
|
13
|
+
Do not edit the class manually.
|
|
14
|
+
""" # noqa: E501
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
__version__ = "1.0.0"
|
|
18
|
+
|
|
19
|
+
# Define package exports
|
|
20
|
+
__all__ = [
|
|
21
|
+
"DefaultApi",
|
|
22
|
+
"ApiResponse",
|
|
23
|
+
"ApiClient",
|
|
24
|
+
"Configuration",
|
|
25
|
+
"OpenApiException",
|
|
26
|
+
"ApiTypeError",
|
|
27
|
+
"ApiValueError",
|
|
28
|
+
"ApiKeyError",
|
|
29
|
+
"ApiAttributeError",
|
|
30
|
+
"ApiException",
|
|
31
|
+
"ActivityPayloadUnionActionCompleted",
|
|
32
|
+
"ActivityPayloadUnionActionFailed",
|
|
33
|
+
"ActivityPayloadUnionActionStarted",
|
|
34
|
+
"ActivityPayloadUnionFileAdded",
|
|
35
|
+
"ActivityPayloadUnionGeneric",
|
|
36
|
+
"ActivityPayloadUnionStatusChanged",
|
|
37
|
+
"ActivityPayloadUnionStepCompleted",
|
|
38
|
+
"ActivityPayloadUnionStepStarted",
|
|
39
|
+
"ActivityPayloadUnionTerminal",
|
|
40
|
+
"ActivityPayloadUnionTransitionedNode",
|
|
41
|
+
"ActivityPayloadUnionUserMessageReceived",
|
|
42
|
+
"AgentsExecutionActivity",
|
|
43
|
+
"AgentsExecutionActivityActionCompletedPayload",
|
|
44
|
+
"AgentsExecutionActivityActionFailedPayload",
|
|
45
|
+
"AgentsExecutionActivityActionStartedPayload",
|
|
46
|
+
"AgentsExecutionActivityFileAddedPayload",
|
|
47
|
+
"AgentsExecutionActivityGenericPayload",
|
|
48
|
+
"AgentsExecutionActivityPayloadUnion",
|
|
49
|
+
"AgentsExecutionActivityStatusChangedPayload",
|
|
50
|
+
"AgentsExecutionActivityStepCompletedPayload",
|
|
51
|
+
"AgentsExecutionActivityStepStartedPayload",
|
|
52
|
+
"AgentsExecutionActivityTransitionedNodePayload",
|
|
53
|
+
"AgentsExecutionActivityUserMessageReceivedPayload",
|
|
54
|
+
"AgentsExecutionAwaitingConfirmationPayload",
|
|
55
|
+
"AgentsExecutionCancelReason",
|
|
56
|
+
"AgentsExecutionCancelledPayload",
|
|
57
|
+
"AgentsExecutionCompletedPayload",
|
|
58
|
+
"AgentsExecutionFailedPayload",
|
|
59
|
+
"AgentsExecutionPausedPayload",
|
|
60
|
+
"AgentsExecutionStatus",
|
|
61
|
+
"AgentsExecutionTerminalPayload",
|
|
62
|
+
"AgentsExecutionUserMessagesAddTextBody",
|
|
63
|
+
"AgentsFilesFile",
|
|
64
|
+
"CommonBadRequestErrorBody",
|
|
65
|
+
"CommonForbiddenErrorBody",
|
|
66
|
+
"CommonNotFoundErrorBody",
|
|
67
|
+
"Version",
|
|
68
|
+
]
|
|
69
|
+
|
|
70
|
+
# import apis into sdk package
|
|
71
|
+
from asteroid_odyssey.agents_v2_gen.api.default_api import DefaultApi as DefaultApi
|
|
72
|
+
|
|
73
|
+
# import ApiClient
|
|
74
|
+
from asteroid_odyssey.agents_v2_gen.api_response import ApiResponse as ApiResponse
|
|
75
|
+
from asteroid_odyssey.agents_v2_gen.api_client import ApiClient as ApiClient
|
|
76
|
+
from asteroid_odyssey.agents_v2_gen.configuration import Configuration as Configuration
|
|
77
|
+
from asteroid_odyssey.agents_v2_gen.exceptions import OpenApiException as OpenApiException
|
|
78
|
+
from asteroid_odyssey.agents_v2_gen.exceptions import ApiTypeError as ApiTypeError
|
|
79
|
+
from asteroid_odyssey.agents_v2_gen.exceptions import ApiValueError as ApiValueError
|
|
80
|
+
from asteroid_odyssey.agents_v2_gen.exceptions import ApiKeyError as ApiKeyError
|
|
81
|
+
from asteroid_odyssey.agents_v2_gen.exceptions import ApiAttributeError as ApiAttributeError
|
|
82
|
+
from asteroid_odyssey.agents_v2_gen.exceptions import ApiException as ApiException
|
|
83
|
+
|
|
84
|
+
# import models into sdk package
|
|
85
|
+
from asteroid_odyssey.agents_v2_gen.models.activity_payload_union_action_completed import ActivityPayloadUnionActionCompleted as ActivityPayloadUnionActionCompleted
|
|
86
|
+
from asteroid_odyssey.agents_v2_gen.models.activity_payload_union_action_failed import ActivityPayloadUnionActionFailed as ActivityPayloadUnionActionFailed
|
|
87
|
+
from asteroid_odyssey.agents_v2_gen.models.activity_payload_union_action_started import ActivityPayloadUnionActionStarted as ActivityPayloadUnionActionStarted
|
|
88
|
+
from asteroid_odyssey.agents_v2_gen.models.activity_payload_union_file_added import ActivityPayloadUnionFileAdded as ActivityPayloadUnionFileAdded
|
|
89
|
+
from asteroid_odyssey.agents_v2_gen.models.activity_payload_union_generic import ActivityPayloadUnionGeneric as ActivityPayloadUnionGeneric
|
|
90
|
+
from asteroid_odyssey.agents_v2_gen.models.activity_payload_union_status_changed import ActivityPayloadUnionStatusChanged as ActivityPayloadUnionStatusChanged
|
|
91
|
+
from asteroid_odyssey.agents_v2_gen.models.activity_payload_union_step_completed import ActivityPayloadUnionStepCompleted as ActivityPayloadUnionStepCompleted
|
|
92
|
+
from asteroid_odyssey.agents_v2_gen.models.activity_payload_union_step_started import ActivityPayloadUnionStepStarted as ActivityPayloadUnionStepStarted
|
|
93
|
+
from asteroid_odyssey.agents_v2_gen.models.activity_payload_union_terminal import ActivityPayloadUnionTerminal as ActivityPayloadUnionTerminal
|
|
94
|
+
from asteroid_odyssey.agents_v2_gen.models.activity_payload_union_transitioned_node import ActivityPayloadUnionTransitionedNode as ActivityPayloadUnionTransitionedNode
|
|
95
|
+
from asteroid_odyssey.agents_v2_gen.models.activity_payload_union_user_message_received import ActivityPayloadUnionUserMessageReceived as ActivityPayloadUnionUserMessageReceived
|
|
96
|
+
from asteroid_odyssey.agents_v2_gen.models.agents_execution_activity import AgentsExecutionActivity as AgentsExecutionActivity
|
|
97
|
+
from asteroid_odyssey.agents_v2_gen.models.agents_execution_activity_action_completed_payload import AgentsExecutionActivityActionCompletedPayload as AgentsExecutionActivityActionCompletedPayload
|
|
98
|
+
from asteroid_odyssey.agents_v2_gen.models.agents_execution_activity_action_failed_payload import AgentsExecutionActivityActionFailedPayload as AgentsExecutionActivityActionFailedPayload
|
|
99
|
+
from asteroid_odyssey.agents_v2_gen.models.agents_execution_activity_action_started_payload import AgentsExecutionActivityActionStartedPayload as AgentsExecutionActivityActionStartedPayload
|
|
100
|
+
from asteroid_odyssey.agents_v2_gen.models.agents_execution_activity_file_added_payload import AgentsExecutionActivityFileAddedPayload as AgentsExecutionActivityFileAddedPayload
|
|
101
|
+
from asteroid_odyssey.agents_v2_gen.models.agents_execution_activity_generic_payload import AgentsExecutionActivityGenericPayload as AgentsExecutionActivityGenericPayload
|
|
102
|
+
from asteroid_odyssey.agents_v2_gen.models.agents_execution_activity_payload_union import AgentsExecutionActivityPayloadUnion as AgentsExecutionActivityPayloadUnion
|
|
103
|
+
from asteroid_odyssey.agents_v2_gen.models.agents_execution_activity_status_changed_payload import AgentsExecutionActivityStatusChangedPayload as AgentsExecutionActivityStatusChangedPayload
|
|
104
|
+
from asteroid_odyssey.agents_v2_gen.models.agents_execution_activity_step_completed_payload import AgentsExecutionActivityStepCompletedPayload as AgentsExecutionActivityStepCompletedPayload
|
|
105
|
+
from asteroid_odyssey.agents_v2_gen.models.agents_execution_activity_step_started_payload import AgentsExecutionActivityStepStartedPayload as AgentsExecutionActivityStepStartedPayload
|
|
106
|
+
from asteroid_odyssey.agents_v2_gen.models.agents_execution_activity_transitioned_node_payload import AgentsExecutionActivityTransitionedNodePayload as AgentsExecutionActivityTransitionedNodePayload
|
|
107
|
+
from asteroid_odyssey.agents_v2_gen.models.agents_execution_activity_user_message_received_payload import AgentsExecutionActivityUserMessageReceivedPayload as AgentsExecutionActivityUserMessageReceivedPayload
|
|
108
|
+
from asteroid_odyssey.agents_v2_gen.models.agents_execution_awaiting_confirmation_payload import AgentsExecutionAwaitingConfirmationPayload as AgentsExecutionAwaitingConfirmationPayload
|
|
109
|
+
from asteroid_odyssey.agents_v2_gen.models.agents_execution_cancel_reason import AgentsExecutionCancelReason as AgentsExecutionCancelReason
|
|
110
|
+
from asteroid_odyssey.agents_v2_gen.models.agents_execution_cancelled_payload import AgentsExecutionCancelledPayload as AgentsExecutionCancelledPayload
|
|
111
|
+
from asteroid_odyssey.agents_v2_gen.models.agents_execution_completed_payload import AgentsExecutionCompletedPayload as AgentsExecutionCompletedPayload
|
|
112
|
+
from asteroid_odyssey.agents_v2_gen.models.agents_execution_failed_payload import AgentsExecutionFailedPayload as AgentsExecutionFailedPayload
|
|
113
|
+
from asteroid_odyssey.agents_v2_gen.models.agents_execution_paused_payload import AgentsExecutionPausedPayload as AgentsExecutionPausedPayload
|
|
114
|
+
from asteroid_odyssey.agents_v2_gen.models.agents_execution_status import AgentsExecutionStatus as AgentsExecutionStatus
|
|
115
|
+
from asteroid_odyssey.agents_v2_gen.models.agents_execution_terminal_payload import AgentsExecutionTerminalPayload as AgentsExecutionTerminalPayload
|
|
116
|
+
from asteroid_odyssey.agents_v2_gen.models.agents_execution_user_messages_add_text_body import AgentsExecutionUserMessagesAddTextBody as AgentsExecutionUserMessagesAddTextBody
|
|
117
|
+
from asteroid_odyssey.agents_v2_gen.models.agents_files_file import AgentsFilesFile as AgentsFilesFile
|
|
118
|
+
from asteroid_odyssey.agents_v2_gen.models.common_bad_request_error_body import CommonBadRequestErrorBody as CommonBadRequestErrorBody
|
|
119
|
+
from asteroid_odyssey.agents_v2_gen.models.common_forbidden_error_body import CommonForbiddenErrorBody as CommonForbiddenErrorBody
|
|
120
|
+
from asteroid_odyssey.agents_v2_gen.models.common_not_found_error_body import CommonNotFoundErrorBody as CommonNotFoundErrorBody
|
|
121
|
+
from asteroid_odyssey.agents_v2_gen.models.version import Version as Version
|