asteroid-odyssey 1.3.12__py3-none-any.whl → 1.3.13__py3-none-any.whl
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/__init__.py +44 -10
- {asteroid_odyssey-1.3.12.dist-info → asteroid_odyssey-1.3.13.dist-info}/METADATA +1 -1
- {asteroid_odyssey-1.3.12.dist-info → asteroid_odyssey-1.3.13.dist-info}/RECORD +5 -5
- {asteroid_odyssey-1.3.12.dist-info → asteroid_odyssey-1.3.13.dist-info}/WHEEL +0 -0
- {asteroid_odyssey-1.3.12.dist-info → asteroid_odyssey-1.3.13.dist-info}/top_level.txt +0 -0
asteroid_odyssey/__init__.py
CHANGED
|
@@ -1,51 +1,85 @@
|
|
|
1
1
|
from .client import (
|
|
2
|
+
# Client
|
|
2
3
|
AsteroidClient,
|
|
3
4
|
create_client,
|
|
5
|
+
# Agent Execution (V2)
|
|
4
6
|
execute_agent,
|
|
5
|
-
|
|
6
|
-
|
|
7
|
+
get_execution,
|
|
8
|
+
get_executions,
|
|
7
9
|
wait_for_execution_result,
|
|
8
10
|
upload_execution_files,
|
|
9
|
-
|
|
11
|
+
stage_temp_files,
|
|
12
|
+
# Agent Profiles (V1)
|
|
10
13
|
get_agent_profiles,
|
|
11
14
|
get_agent_profile,
|
|
12
15
|
create_agent_profile,
|
|
13
16
|
update_agent_profile,
|
|
14
17
|
delete_agent_profile,
|
|
18
|
+
get_credentials_public_key,
|
|
19
|
+
# Agents (V2)
|
|
20
|
+
get_agents,
|
|
21
|
+
# Execution Activities (V2)
|
|
15
22
|
get_last_n_execution_activities,
|
|
16
23
|
add_message_to_execution,
|
|
24
|
+
get_execution_files,
|
|
25
|
+
download_execution_file,
|
|
17
26
|
wait_for_agent_interaction,
|
|
18
|
-
|
|
27
|
+
# Exceptions
|
|
19
28
|
AsteroidAPIError,
|
|
20
29
|
ExecutionError,
|
|
21
30
|
TimeoutError,
|
|
22
31
|
AgentInteractionResult,
|
|
32
|
+
# Types
|
|
23
33
|
TempFile,
|
|
34
|
+
TempFilesResponse,
|
|
35
|
+
ExecuteAgentRequest,
|
|
36
|
+
ExecutionListItem,
|
|
37
|
+
ExecutionResult,
|
|
38
|
+
ExecutionsList200Response,
|
|
39
|
+
ExecutionStatus,
|
|
40
|
+
ExecutionSortField,
|
|
41
|
+
SortDirection,
|
|
24
42
|
)
|
|
25
|
-
from .agents_v1_gen import ExecutionResult
|
|
26
43
|
|
|
27
44
|
__all__ = [
|
|
45
|
+
# Client
|
|
28
46
|
'AsteroidClient',
|
|
29
47
|
'create_client',
|
|
48
|
+
# Agent Execution (V2)
|
|
30
49
|
'execute_agent',
|
|
31
|
-
'
|
|
32
|
-
'
|
|
50
|
+
'get_execution',
|
|
51
|
+
'get_executions',
|
|
33
52
|
'wait_for_execution_result',
|
|
34
53
|
'upload_execution_files',
|
|
35
|
-
'
|
|
54
|
+
'stage_temp_files',
|
|
55
|
+
# Agent Profiles (V1)
|
|
36
56
|
'get_agent_profiles',
|
|
37
57
|
'get_agent_profile',
|
|
38
58
|
'create_agent_profile',
|
|
39
59
|
'update_agent_profile',
|
|
40
60
|
'delete_agent_profile',
|
|
61
|
+
'get_credentials_public_key',
|
|
62
|
+
# Agents (V2)
|
|
63
|
+
'get_agents',
|
|
64
|
+
# Execution Activities (V2)
|
|
41
65
|
'get_last_n_execution_activities',
|
|
42
66
|
'add_message_to_execution',
|
|
67
|
+
'get_execution_files',
|
|
68
|
+
'download_execution_file',
|
|
43
69
|
'wait_for_agent_interaction',
|
|
44
|
-
|
|
70
|
+
# Exceptions
|
|
45
71
|
'AsteroidAPIError',
|
|
46
72
|
'ExecutionError',
|
|
47
73
|
'TimeoutError',
|
|
48
74
|
'AgentInteractionResult',
|
|
49
|
-
|
|
75
|
+
# Types
|
|
50
76
|
'TempFile',
|
|
77
|
+
'TempFilesResponse',
|
|
78
|
+
'ExecuteAgentRequest',
|
|
79
|
+
'ExecutionListItem',
|
|
80
|
+
'ExecutionResult',
|
|
81
|
+
'ExecutionsList200Response',
|
|
82
|
+
'ExecutionStatus',
|
|
83
|
+
'ExecutionSortField',
|
|
84
|
+
'SortDirection',
|
|
51
85
|
]
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
asteroid_odyssey/__init__.py,sha256=
|
|
1
|
+
asteroid_odyssey/__init__.py,sha256=XL4o3Z0f9s8MnssRlpsrGMvor2TC13jOlB5J9rXRyjU,1981
|
|
2
2
|
asteroid_odyssey/client.py,sha256=Xbx62w9l1syhdl8lnYUBNwLGOl8bN2mFGrGbk9RbtmA,63609
|
|
3
3
|
asteroid_odyssey/agents_v1_gen/__init__.py,sha256=8ULksHLOQJbxz9LkUs0sHFs47cWst2SeKs3NLGlLCjk,2841
|
|
4
4
|
asteroid_odyssey/agents_v1_gen/api_client.py,sha256=sxH4_y4LtJLTmK9Sd67qYIkHwnbjLGFI7aaL-Y4xZUs,27513
|
|
@@ -128,7 +128,7 @@ asteroid_odyssey/agents_v2_gen/models/common_sort_direction.py,sha256=UBW99PM3QR
|
|
|
128
128
|
asteroid_odyssey/agents_v2_gen/models/common_unauthorized_error_body.py,sha256=Ng62vZVuPWEkTvdnYimbItSKhUGT9G52ZOapMQ2O7Xg,2897
|
|
129
129
|
asteroid_odyssey/agents_v2_gen/models/executions_list200_response.py,sha256=hmZBiOEUKpzEptDcElwgNwhCwSnXFJsrBbb9w2amGiM,3302
|
|
130
130
|
asteroid_odyssey/agents_v2_gen/models/version.py,sha256=Vjiri_a5CcDJ1lSziRqif5HuFpaxneVDLIB1r8SFIkE,707
|
|
131
|
-
asteroid_odyssey-1.3.
|
|
132
|
-
asteroid_odyssey-1.3.
|
|
133
|
-
asteroid_odyssey-1.3.
|
|
134
|
-
asteroid_odyssey-1.3.
|
|
131
|
+
asteroid_odyssey-1.3.13.dist-info/METADATA,sha256=gzHHO8iYUfyWQrXg-H3SS10UTus0PnRvtCRg274RA14,7109
|
|
132
|
+
asteroid_odyssey-1.3.13.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
133
|
+
asteroid_odyssey-1.3.13.dist-info/top_level.txt,sha256=h4T6NKscnThJ4Nhzors2NKlJeZzepnM7XvDgsnfi5HA,17
|
|
134
|
+
asteroid_odyssey-1.3.13.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|