asteroid-odyssey 1.3.12__py3-none-any.whl → 1.6.0__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 +254 -48
- asteroid_odyssey/api/__init__.py +8 -0
- asteroid_odyssey/{agents_v1_gen/api/agent_profile_api.py → api/agent_profiles_api.py} +414 -281
- asteroid_odyssey/{agents_v2_gen/api → api}/agents_api.py +30 -30
- asteroid_odyssey/{agents_v2_gen/api → api}/execution_api.py +32 -49
- asteroid_odyssey/{agents_v2_gen/api → api}/files_api.py +5 -5
- asteroid_odyssey/{agents_v2_gen/api_client.py → api_client.py} +10 -6
- asteroid_odyssey/{agents_v2_gen/configuration.py → configuration.py} +11 -4
- asteroid_odyssey/models/__init__.py +118 -0
- asteroid_odyssey/{agents_v2_gen/models → models}/agent_list200_response.py +1 -1
- asteroid_odyssey/models/agent_profile_clear_browser_cache200_response.py +87 -0
- asteroid_odyssey/models/agent_profiles_list200_response.py +101 -0
- asteroid_odyssey/{agents_v2_gen/models → models}/agents_agent_base.py +3 -3
- asteroid_odyssey/{agents_v2_gen/models → models}/agents_agent_execute_agent_request.py +7 -5
- asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_activity.py +4 -4
- asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_activity_action_completed_info.py +65 -37
- asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_activity_action_completed_payload.py +8 -8
- asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_activity_action_failed_payload.py +9 -9
- asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_activity_action_started_info.py +50 -22
- asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_activity_action_started_payload.py +10 -10
- asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_activity_file_added_payload.py +6 -6
- asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_activity_payload_union.py +14 -14
- asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_activity_playwright_script_generated_payload.py +9 -9
- asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_activity_status_changed_payload.py +19 -19
- asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_activity_transitioned_node_payload.py +6 -6
- asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_activity_workflow_updated_payload.py +1 -1
- asteroid_odyssey/models/agents_execution_agent_query_context_completed_details.py +98 -0
- asteroid_odyssey/models/agents_execution_agent_query_context_started_details.py +96 -0
- asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_cancelled_payload.py +1 -1
- asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_comment.py +10 -10
- asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_completed_payload.py +4 -4
- asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_execution_result.py +6 -6
- asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_ext_api_call_completed_details.py +6 -6
- asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_failed_payload.py +5 -5
- asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_file_read_completed_details.py +3 -3
- asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_human_label.py +7 -7
- asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_list_item.py +33 -37
- asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_llm_call_started_details.py +1 -1
- asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_obs_snapshot_with_selectors_completed_details.py +4 -4
- asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_scratchpad_write_completed_details.py +7 -7
- asteroid_odyssey/models/agents_execution_script_eval_completed_details.py +101 -0
- asteroid_odyssey/models/agents_execution_script_eval_started_details.py +100 -0
- asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_script_hybrid_playwright_completed_details.py +6 -6
- asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_script_pad_run_function_completed_details.py +6 -6
- asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_script_playwright_completed_details.py +6 -6
- asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_scriptpad_read_started_details.py +4 -4
- asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_scriptpad_run_function_started_details.py +4 -4
- asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_scriptpad_search_replace_completed_details.py +5 -5
- asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_scriptpad_search_replace_started_details.py +4 -4
- asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_scriptpad_write_completed_details.py +4 -4
- asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_terminal_payload.py +4 -4
- asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_util_get_datetime_completed_details.py +4 -4
- asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_workflow_update.py +13 -13
- asteroid_odyssey/{agents_v2_gen/models → models}/agents_files_file.py +11 -11
- asteroid_odyssey/{agents_v2_gen/models → models}/agents_files_temp_files_response.py +1 -1
- asteroid_odyssey/{agents_v2_gen/models → models}/agents_graph_models_nodes_properties_playwright_script_llm_var.py +5 -5
- asteroid_odyssey/{agents_v1_gen/models/agent_profile.py → models/agents_profile_agent_profile.py} +37 -32
- asteroid_odyssey/{agents_v1_gen/models/cookie.py → models/agents_profile_cookie.py} +21 -26
- asteroid_odyssey/{agents_v1_gen/models/country_code.py → models/agents_profile_country_code.py} +5 -5
- asteroid_odyssey/{agents_v1_gen/models/create_agent_profile_request.py → models/agents_profile_create_agent_profile_request.py} +33 -28
- asteroid_odyssey/{agents_v1_gen/models/credential.py → models/agents_profile_credential.py} +13 -13
- asteroid_odyssey/models/agents_profile_operating_system.py +37 -0
- asteroid_odyssey/models/agents_profile_proxy_type.py +38 -0
- asteroid_odyssey/models/agents_profile_same_site.py +38 -0
- asteroid_odyssey/models/agents_profile_sort_field.py +38 -0
- asteroid_odyssey/models/agents_profile_update_agent_profile_request.py +129 -0
- asteroid_odyssey/{agents_v2_gen/models → models}/executions_list200_response.py +1 -1
- asteroid_odyssey/{agents_v2_gen/rest.py → rest.py} +2 -1
- asteroid_odyssey-1.6.0.dist-info/METADATA +65 -0
- asteroid_odyssey-1.6.0.dist-info/RECORD +119 -0
- asteroid_odyssey/agents_v1_gen/__init__.py +0 -53
- asteroid_odyssey/agents_v1_gen/api/__init__.py +0 -7
- asteroid_odyssey/agents_v1_gen/api/api_api.py +0 -516
- asteroid_odyssey/agents_v1_gen/api/execution_api.py +0 -1449
- asteroid_odyssey/agents_v1_gen/api_client.py +0 -797
- asteroid_odyssey/agents_v1_gen/configuration.py +0 -599
- asteroid_odyssey/agents_v1_gen/exceptions.py +0 -216
- asteroid_odyssey/agents_v1_gen/models/__init__.py +0 -34
- asteroid_odyssey/agents_v1_gen/models/browser_session_recording_response.py +0 -87
- asteroid_odyssey/agents_v1_gen/models/delete_agent_profile200_response.py +0 -87
- asteroid_odyssey/agents_v1_gen/models/error_response.py +0 -87
- asteroid_odyssey/agents_v1_gen/models/execution_response.py +0 -87
- asteroid_odyssey/agents_v1_gen/models/execution_result.py +0 -101
- asteroid_odyssey/agents_v1_gen/models/execution_result_response.py +0 -100
- asteroid_odyssey/agents_v1_gen/models/execution_status_response.py +0 -95
- asteroid_odyssey/agents_v1_gen/models/health_check200_response.py +0 -87
- asteroid_odyssey/agents_v1_gen/models/health_check500_response.py +0 -87
- asteroid_odyssey/agents_v1_gen/models/proxy_type.py +0 -38
- asteroid_odyssey/agents_v1_gen/models/status.py +0 -43
- asteroid_odyssey/agents_v1_gen/models/structured_agent_execution_request.py +0 -89
- asteroid_odyssey/agents_v1_gen/models/update_agent_profile_request.py +0 -126
- asteroid_odyssey/agents_v1_gen/rest.py +0 -257
- asteroid_odyssey/agents_v2_gen/__init__.py +0 -121
- asteroid_odyssey/agents_v2_gen/api/__init__.py +0 -7
- asteroid_odyssey/agents_v2_gen/api_response.py +0 -21
- asteroid_odyssey/agents_v2_gen/models/__init__.py +0 -102
- asteroid_odyssey/agents_v2_gen/py.typed +0 -0
- asteroid_odyssey/client.py +0 -1629
- asteroid_odyssey-1.3.12.dist-info/METADATA +0 -214
- asteroid_odyssey-1.3.12.dist-info/RECORD +0 -134
- /asteroid_odyssey/{agents_v1_gen/api_response.py → api_response.py} +0 -0
- /asteroid_odyssey/{agents_v2_gen/exceptions.py → exceptions.py} +0 -0
- /asteroid_odyssey/{agents_v2_gen/models → models}/agents_agent_execute_agent_response.py +0 -0
- /asteroid_odyssey/{agents_v2_gen/models → models}/agents_agent_sort_field.py +0 -0
- /asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_action_name.py +0 -0
- /asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_activity_generic_payload.py +0 -0
- /asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_activity_reasoning_payload.py +0 -0
- /asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_activity_step_completed_payload.py +0 -0
- /asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_activity_step_started_payload.py +0 -0
- /asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_activity_user_message_received_payload.py +0 -0
- /asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_awaiting_confirmation_payload.py +0 -0
- /asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_cancel_reason.py +0 -0
- /asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_element_file_upload_completed_details.py +0 -0
- /asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_ext_get_mail_completed_details.py +0 -0
- /asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_file_list_completed_details.py +0 -0
- /asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_file_stage_completed_details.py +0 -0
- /asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_llm_call_purpose.py +0 -0
- /asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_nav_to_completed_details.py +0 -0
- /asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_nav_to_started_details.py +0 -0
- /asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_node_details.py +0 -0
- /asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_paused_payload.py +0 -0
- /asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_rules_details.py +0 -0
- /asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_scratchpad_read_completed_details.py +0 -0
- /asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_scratchpad_read_started_details.py +0 -0
- /asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_scratchpad_write_started_details.py +0 -0
- /asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_script_hybrid_playwright_started_details.py +0 -0
- /asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_script_playwright_started_details.py +0 -0
- /asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_scriptpad_read_completed_details.py +0 -0
- /asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_sort_field.py +0 -0
- /asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_status.py +0 -0
- /asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_transition_details.py +0 -0
- /asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_update_type.py +0 -0
- /asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_user_messages_add_text_body.py +0 -0
- /asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_util_get_datetime_started_details.py +0 -0
- /asteroid_odyssey/{agents_v2_gen/models → models}/agents_files_temp_file.py +0 -0
- /asteroid_odyssey/{agents_v2_gen/models → models}/agents_graph_models_nodes_properties_playwright_script_llm_var_type.py +0 -0
- /asteroid_odyssey/{agents_v2_gen/models → models}/agents_graph_models_transitions_transition_type.py +0 -0
- /asteroid_odyssey/{agents_v2_gen/models → models}/common_bad_request_error_body.py +0 -0
- /asteroid_odyssey/{agents_v2_gen/models → models}/common_error.py +0 -0
- /asteroid_odyssey/{agents_v2_gen/models → models}/common_forbidden_error_body.py +0 -0
- /asteroid_odyssey/{agents_v2_gen/models → models}/common_internal_server_error_body.py +0 -0
- /asteroid_odyssey/{agents_v2_gen/models → models}/common_not_found_error_body.py +0 -0
- /asteroid_odyssey/{agents_v2_gen/models → models}/common_os_error.py +0 -0
- /asteroid_odyssey/{agents_v2_gen/models → models}/common_sort_direction.py +0 -0
- /asteroid_odyssey/{agents_v2_gen/models → models}/common_unauthorized_error_body.py +0 -0
- /asteroid_odyssey/{agents_v2_gen/models → models}/version.py +0 -0
- /asteroid_odyssey/{agents_v1_gen/py.typed → py.typed} +0 -0
- {asteroid_odyssey-1.3.12.dist-info → asteroid_odyssey-1.6.0.dist-info}/WHEEL +0 -0
- {asteroid_odyssey-1.3.12.dist-info → asteroid_odyssey-1.6.0.dist-info}/top_level.txt +0 -0
|
@@ -1,214 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: asteroid-odyssey
|
|
3
|
-
Version: 1.3.12
|
|
4
|
-
Summary: A Python SDK for browser automation using Asteroid platform.
|
|
5
|
-
Author-email: David Mlcoch <founders@asteroid.com>
|
|
6
|
-
License-Expression: MIT
|
|
7
|
-
Project-URL: Repository, https://github.com/asteroid/asteroid-odyssey-py
|
|
8
|
-
Project-URL: Homepage, https://asteroid.ai
|
|
9
|
-
Project-URL: Documentation, https://docs.asteroid.ai
|
|
10
|
-
Keywords: OpenAPI,OpenAPI-Generator,Asteroid Agents API,browser automation,AI agents
|
|
11
|
-
Classifier: Programming Language :: Python :: 3
|
|
12
|
-
Classifier: Operating System :: OS Independent
|
|
13
|
-
Classifier: Development Status :: 4 - Beta
|
|
14
|
-
Classifier: Intended Audience :: Developers
|
|
15
|
-
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
16
|
-
Classifier: Topic :: Internet :: WWW/HTTP :: Browsers
|
|
17
|
-
Requires-Python: >=3.9
|
|
18
|
-
Description-Content-Type: text/markdown
|
|
19
|
-
Requires-Dist: urllib3<3.0.0,>=2.1.0
|
|
20
|
-
Requires-Dist: python-dateutil>=2.8.2
|
|
21
|
-
Requires-Dist: pydantic>=2
|
|
22
|
-
Requires-Dist: typing-extensions>=4.7.1
|
|
23
|
-
Requires-Dist: requests>=2.28.0
|
|
24
|
-
Requires-Dist: cryptography>=41.0.0
|
|
25
|
-
Requires-Dist: lazy-imports>=1.0.0
|
|
26
|
-
Provides-Extra: dev
|
|
27
|
-
Requires-Dist: pytest>=7.2.1; extra == "dev"
|
|
28
|
-
Requires-Dist: pytest-cov>=2.8.1; extra == "dev"
|
|
29
|
-
Requires-Dist: tox>=3.9.0; extra == "dev"
|
|
30
|
-
Requires-Dist: flake8>=4.0.0; extra == "dev"
|
|
31
|
-
Requires-Dist: types-python-dateutil>=2.8.19.14; extra == "dev"
|
|
32
|
-
Requires-Dist: mypy>=1.5; extra == "dev"
|
|
33
|
-
|
|
34
|
-
# Asteroid Odyssey
|
|
35
|
-
|
|
36
|
-
The official Python SDK for interacting with the Asteroid Agents API.
|
|
37
|
-
|
|
38
|
-
## Installation
|
|
39
|
-
|
|
40
|
-
```bash
|
|
41
|
-
pip install asteroid-odyssey
|
|
42
|
-
```
|
|
43
|
-
|
|
44
|
-
## Usage
|
|
45
|
-
|
|
46
|
-
Please head to our documentation at https://docs.asteroid.ai/sdk/python
|
|
47
|
-
|
|
48
|
-
## License
|
|
49
|
-
|
|
50
|
-
The Asteroid Odyssey SDK is available under the MIT License.
|
|
51
|
-
|
|
52
|
-
### Tests
|
|
53
|
-
|
|
54
|
-
Execute `pytest` to run the tests.
|
|
55
|
-
|
|
56
|
-
## Getting Started
|
|
57
|
-
|
|
58
|
-
The SDK provides a high-level `AsteroidClient` class that makes it easy to interact with the Asteroid Agents API:
|
|
59
|
-
|
|
60
|
-
```python
|
|
61
|
-
from asteroid_odyssey import AsteroidClient
|
|
62
|
-
|
|
63
|
-
# Create a client with your API key
|
|
64
|
-
client = AsteroidClient('your-api-key')
|
|
65
|
-
|
|
66
|
-
# Execute an agent
|
|
67
|
-
execution_id = client.execute_agent('my-agent-id', {'input': 'some dynamic value'})
|
|
68
|
-
|
|
69
|
-
# Wait for the execution to complete and get the result
|
|
70
|
-
result = client.wait_for_execution_result(execution_id)
|
|
71
|
-
print(result)
|
|
72
|
-
|
|
73
|
-
# Or check status manually
|
|
74
|
-
status = client.get_execution_status(execution_id)
|
|
75
|
-
print(f"Status: {status.status}")
|
|
76
|
-
|
|
77
|
-
# Upload files to an execution
|
|
78
|
-
hello_content = "Hello World!".encode()
|
|
79
|
-
response = client.upload_execution_files(execution_id, [hello_content])
|
|
80
|
-
print(f"Uploaded files: {response.file_ids}")
|
|
81
|
-
|
|
82
|
-
# Get browser session recording (for completed executions)
|
|
83
|
-
recording_url = client.get_browser_session_recording(execution_id)
|
|
84
|
-
print(f"Recording available at: {recording_url}")
|
|
85
|
-
```
|
|
86
|
-
|
|
87
|
-
### Context Manager Usage
|
|
88
|
-
|
|
89
|
-
The client can also be used as a context manager:
|
|
90
|
-
|
|
91
|
-
```python
|
|
92
|
-
from asteroid_odyssey import AsteroidClient
|
|
93
|
-
|
|
94
|
-
with AsteroidClient('your-api-key') as client:
|
|
95
|
-
execution_id = client.execute_agent('my-agent-id', {'input': 'test'})
|
|
96
|
-
result = client.wait_for_execution_result(execution_id)
|
|
97
|
-
print(result)
|
|
98
|
-
```
|
|
99
|
-
|
|
100
|
-
### Convenience Functions
|
|
101
|
-
|
|
102
|
-
The SDK also provides convenience functions:
|
|
103
|
-
|
|
104
|
-
```python
|
|
105
|
-
from asteroid_odyssey import create_client, execute_agent, wait_for_execution_result
|
|
106
|
-
|
|
107
|
-
client = create_client('your-api-key')
|
|
108
|
-
execution_id = execute_agent(client, 'my-agent-id', {'input': 'test'})
|
|
109
|
-
result = wait_for_execution_result(client, execution_id)
|
|
110
|
-
```
|
|
111
|
-
|
|
112
|
-
## API Reference
|
|
113
|
-
|
|
114
|
-
### AsteroidClient
|
|
115
|
-
|
|
116
|
-
The main client class provides the following methods:
|
|
117
|
-
|
|
118
|
-
- `execute_agent(agent_id, agent_profile_id (optional), execution_data(optional))` - Execute an agent and return execution ID
|
|
119
|
-
- `get_execution_status(execution_id)` - Get current execution status
|
|
120
|
-
- `get_execution_result(execution_id)` - Get final execution result
|
|
121
|
-
- `wait_for_execution_result(execution_id, interval=1.0, timeout=3600.0)` - Wait for completion
|
|
122
|
-
- `upload_execution_files(execution_id, files, default_filename="file.txt")` - Upload files
|
|
123
|
-
- `get_browser_session_recording(execution_id)` - Get browser recording URL
|
|
124
|
-
|
|
125
|
-
### Low-Level API Access
|
|
126
|
-
|
|
127
|
-
If you need direct access to the generated OpenAPI client, you can still use it:
|
|
128
|
-
|
|
129
|
-
```python
|
|
130
|
-
import openapi_client
|
|
131
|
-
from openapi_client.rest import ApiException
|
|
132
|
-
from pprint import pprint
|
|
133
|
-
|
|
134
|
-
# Defining the host is optional and defaults to https://odyssey.asteroid.ai/api/v1
|
|
135
|
-
configuration = openapi_client.Configuration(
|
|
136
|
-
host = "https://odyssey.asteroid.ai/api/v1"
|
|
137
|
-
)
|
|
138
|
-
|
|
139
|
-
# Enter a context with an instance of the API client
|
|
140
|
-
with openapi_client.ApiClient(configuration) as api_client:
|
|
141
|
-
# Create an instance of the API class
|
|
142
|
-
api_instance = openapi_client.APIApi(api_client)
|
|
143
|
-
|
|
144
|
-
try:
|
|
145
|
-
# Get the OpenAPI schema
|
|
146
|
-
api_instance.get_open_api()
|
|
147
|
-
except ApiException as e:
|
|
148
|
-
print("Exception when calling APIApi->get_open_api: %s\n" % e)
|
|
149
|
-
```
|
|
150
|
-
|
|
151
|
-
| Class | Method | Return Type Representation | Description |
|
|
152
|
-
| ---------------- | ------------------------------- | -------------------------- | -------------------------------------------------------- |
|
|
153
|
-
| `AsteroidClient` | `execute_agent` | `str` (execution ID) | Executes an agent and returns its execution ID. |
|
|
154
|
-
| `AsteroidClient` | `get_execution_status` | `dict-like object` | Gets the current status of an execution. |
|
|
155
|
-
| `AsteroidClient` | `get_execution_result` | `dict` (execution result) | Retrieves the result data of a completed execution. |
|
|
156
|
-
| `AsteroidClient` | `get_browser_session_recording` | `str` (URL) | Returns the session recording URL of an execution. |
|
|
157
|
-
| `AsteroidClient` | `upload_execution_files` | `dict-like object` | Uploads files to an execution and returns file metadata. |
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
<a id="documentation-for-authorization"></a>
|
|
163
|
-
## Documentation For Authorization
|
|
164
|
-
|
|
165
|
-
To generate an API key, go to our [platform](https://platform.asteroid.ai) and in your profile section, click on API Keys. You can now create and manage your API keys.
|
|
166
|
-
|
|
167
|
-
Authentication schemes defined for the API:
|
|
168
|
-
<a id="ApiKeyAuth"></a>
|
|
169
|
-
### ApiKeyAuth
|
|
170
|
-
|
|
171
|
-
- **Type**: API key
|
|
172
|
-
- **API key parameter name**: X-Asteroid-Agents-Api-Key
|
|
173
|
-
- **Location**: HTTP header
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
## Development quick‑start
|
|
177
|
-
```bash
|
|
178
|
-
# clone
|
|
179
|
-
git clone https://github.com/<org>/asteroid-odyssey-py.git
|
|
180
|
-
cd asteroid-odyssey-py
|
|
181
|
-
|
|
182
|
-
# create / activate a virtualenv (example using venv)
|
|
183
|
-
python -m venv .venv
|
|
184
|
-
source .venv/bin/activate
|
|
185
|
-
|
|
186
|
-
# install project in *editable* mode + dev tools
|
|
187
|
-
pip install -U pip
|
|
188
|
-
pip install -e .[dev] # or: pip install -e .
|
|
189
|
-
|
|
190
|
-
# run the generated SDK tests
|
|
191
|
-
pytest
|
|
192
|
-
```
|
|
193
|
-
|
|
194
|
-
## Regenerating the SDK
|
|
195
|
-
|
|
196
|
-
To update the SDK, regenerate the code by running
|
|
197
|
-
|
|
198
|
-
```bash
|
|
199
|
-
./regen-sdk.sh
|
|
200
|
-
```
|
|
201
|
-
|
|
202
|
-
If the OpenAPI spec changes:
|
|
203
|
-
```bash
|
|
204
|
-
./regen-sdk.sh # regenerate client & docs
|
|
205
|
-
pip install -e . # refresh editable install (safe to rerun)
|
|
206
|
-
pytest # all tests should still pass
|
|
207
|
-
```
|
|
208
|
-
|
|
209
|
-
After generation, ensure `pyproject.toml` is configured correctly and that files are modified correctly. Check for new files and if they are needed.
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
@@ -1,134 +0,0 @@
|
|
|
1
|
-
asteroid_odyssey/__init__.py,sha256=po0AK2n1AiFyeAywL4Ju3qHGzTcRuH2LuXstuXthbT0,1273
|
|
2
|
-
asteroid_odyssey/client.py,sha256=Xbx62w9l1syhdl8lnYUBNwLGOl8bN2mFGrGbk9RbtmA,63609
|
|
3
|
-
asteroid_odyssey/agents_v1_gen/__init__.py,sha256=8ULksHLOQJbxz9LkUs0sHFs47cWst2SeKs3NLGlLCjk,2841
|
|
4
|
-
asteroid_odyssey/agents_v1_gen/api_client.py,sha256=sxH4_y4LtJLTmK9Sd67qYIkHwnbjLGFI7aaL-Y4xZUs,27513
|
|
5
|
-
asteroid_odyssey/agents_v1_gen/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
6
|
-
asteroid_odyssey/agents_v1_gen/configuration.py,sha256=1t9XRUOXQHxmjI04S56NYuqNXC7Bh-vuDA9jKTzBUK0,18722
|
|
7
|
-
asteroid_odyssey/agents_v1_gen/exceptions.py,sha256=xauMukb96TkgN7Rx5c_d_XWOJb7ldCY5SuTmybyKTr8,6414
|
|
8
|
-
asteroid_odyssey/agents_v1_gen/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
-
asteroid_odyssey/agents_v1_gen/rest.py,sha256=iduh4ZegNAHkGyuLXUjHAQFp5U82c-dtAMCvTTBO0Fg,9371
|
|
10
|
-
asteroid_odyssey/agents_v1_gen/api/__init__.py,sha256=oj1pzgrbo8C6FrpBVC7IvfUu-uplU4JQjfE_jZE0Mz4,265
|
|
11
|
-
asteroid_odyssey/agents_v1_gen/api/agent_profile_api.py,sha256=uOgyH3VN8LseS5Mq2uFxAbZM5iH88O0YEmXFTMc8bQ0,66369
|
|
12
|
-
asteroid_odyssey/agents_v1_gen/api/api_api.py,sha256=vqZ7wQEQGOpa1D6U1QLL27XK-0DY5_v9tdQJNt_lpsM,19217
|
|
13
|
-
asteroid_odyssey/agents_v1_gen/api/execution_api.py,sha256=S9tbYepfA2KJo_b0yjF9rcrOkXQ43Zr7VSY4Ht_BW5M,57247
|
|
14
|
-
asteroid_odyssey/agents_v1_gen/models/__init__.py,sha256=4PpzL2BSjKC9Xr0D2P4Mx1TQmWzJZ5cPWsyF3pNYBgs,1936
|
|
15
|
-
asteroid_odyssey/agents_v1_gen/models/agent_profile.py,sha256=PDYXOpWJpOYhbYdijVFtbcRseIm-j7Iw6_W3qzMsJ6Y,5561
|
|
16
|
-
asteroid_odyssey/agents_v1_gen/models/browser_session_recording_response.py,sha256=OgYXsMiADk5IIDKkWJTy0RfnnBO3Zbaq9mEUyaxTaH0,2590
|
|
17
|
-
asteroid_odyssey/agents_v1_gen/models/cookie.py,sha256=jvK-SgpFn8Untq3JnHTxDQnznT6Snn7Vnykba1-c3XU,4020
|
|
18
|
-
asteroid_odyssey/agents_v1_gen/models/country_code.py,sha256=pYFM0OC_maaGfUsFTTnKtSJxXKQiNS0pU3O0LLFz_Uo,802
|
|
19
|
-
asteroid_odyssey/agents_v1_gen/models/create_agent_profile_request.py,sha256=cIH7pgti55wHhNh9TJiNJJJuJVVnbje4LL2SjgsUfFM,5453
|
|
20
|
-
asteroid_odyssey/agents_v1_gen/models/credential.py,sha256=MSzwgGLjNiH_fclHpZpYKKDWn-498etD1CLS_EfmA7k,3033
|
|
21
|
-
asteroid_odyssey/agents_v1_gen/models/delete_agent_profile200_response.py,sha256=y6gaG8VLeC2muBcw-i6KG64i-xrHq1v-8A7T8ViwBwk,2514
|
|
22
|
-
asteroid_odyssey/agents_v1_gen/models/error_response.py,sha256=njnDeKZeMPiteuX4l3MsWTHkG4qEiv8sbIUTv0Z8yQY,2459
|
|
23
|
-
asteroid_odyssey/agents_v1_gen/models/execution_response.py,sha256=c4PJNQDsWlQwumSonH1Sxqcb1q521FhNGgZugoinZNA,2513
|
|
24
|
-
asteroid_odyssey/agents_v1_gen/models/execution_result.py,sha256=o6V8oHt9QR7vfRcCrnHwk8exwALUollWBfShze_lzBM,3354
|
|
25
|
-
asteroid_odyssey/agents_v1_gen/models/execution_result_response.py,sha256=zBGBV9FOtCOFE9vDwfWEJkcKMkXYOHluo2ycJlW_S2A,3603
|
|
26
|
-
asteroid_odyssey/agents_v1_gen/models/execution_status_response.py,sha256=ykdr-9kRFmIs3FnmsYWrlX4s-096wlMy3BQX6CCdiBc,3050
|
|
27
|
-
asteroid_odyssey/agents_v1_gen/models/health_check200_response.py,sha256=x_6F6rhTvqpuMUFtD5ynLrUFY4vuVdkWfDRkTx2hVp0,2548
|
|
28
|
-
asteroid_odyssey/agents_v1_gen/models/health_check500_response.py,sha256=b6pG-pqUKkQ5oqmWWyakdr7YYjnTYYeZjoVHkcU-TSY,2533
|
|
29
|
-
asteroid_odyssey/agents_v1_gen/models/proxy_type.py,sha256=zZ2MI0w7PZ8_a3KCLlNqQUcf99qyvuRSMWwyjaEDT-o,724
|
|
30
|
-
asteroid_odyssey/agents_v1_gen/models/status.py,sha256=tnt_4jdoMzcjo6J0vttf2QKLNK0FC9XcjZKbGC3sbz0,889
|
|
31
|
-
asteroid_odyssey/agents_v1_gen/models/structured_agent_execution_request.py,sha256=VZyW85pVz9T27aiG4ZlGywnnxTOaJCAjHSDz8D2YxY8,2913
|
|
32
|
-
asteroid_odyssey/agents_v1_gen/models/update_agent_profile_request.py,sha256=zFy3EoYm9-nCncNPHwZDX7I5O2ZlKRJH6foPk0sAhA8,5895
|
|
33
|
-
asteroid_odyssey/agents_v2_gen/__init__.py,sha256=Zp_fAYikJ55pSXr1vdXgH5akHbWUEc9kvV8fkrSBblQ,12192
|
|
34
|
-
asteroid_odyssey/agents_v2_gen/api_client.py,sha256=zf8LBIbhuInmYPs4iTmxc8mU4gwONeX3JPq3D8ZTftM,27573
|
|
35
|
-
asteroid_odyssey/agents_v2_gen/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
36
|
-
asteroid_odyssey/agents_v2_gen/configuration.py,sha256=z_um4Jc01mYd-U0-8J74KOy2AJYq6KDtcRxBtDFVsEQ,18593
|
|
37
|
-
asteroid_odyssey/agents_v2_gen/exceptions.py,sha256=UnVNkXG6lZtS5J3YpOcPu3rg5SUP1XRwSyYJl30rM0M,6474
|
|
38
|
-
asteroid_odyssey/agents_v2_gen/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
39
|
-
asteroid_odyssey/agents_v2_gen/rest.py,sha256=pSjg1rCUe0Z7K1xrRtsHwQo7Xa-yF35k2o2ORAdbiKY,9431
|
|
40
|
-
asteroid_odyssey/agents_v2_gen/api/__init__.py,sha256=zP96zXtocDaIDci8REJzcl6ARlnBapyslSrPf7-JiT0,256
|
|
41
|
-
asteroid_odyssey/agents_v2_gen/api/agents_api.py,sha256=UAIQsb3CLwN-q_cwlEH3sfOwfEvaT67E5OSDpVXFK9M,26558
|
|
42
|
-
asteroid_odyssey/agents_v2_gen/api/execution_api.py,sha256=PZ11wUU9ilYzf943aDdL2r-JKmBq1KNYC5qC0itRv8g,63665
|
|
43
|
-
asteroid_odyssey/agents_v2_gen/api/files_api.py,sha256=jcIgHi2b6g49eh07bVd99LdWXGpZuN0czmrWoxayqSQ,35517
|
|
44
|
-
asteroid_odyssey/agents_v2_gen/models/__init__.py,sha256=PxgTCmKQyJNiZ3KDO2YKBqkjZSU5uIT0E9RkcUXObFQ,11296
|
|
45
|
-
asteroid_odyssey/agents_v2_gen/models/agent_list200_response.py,sha256=09DlBwTk0VSWPgfLewU9HkNncyrz1ij2I7PxtaYQC8o,3249
|
|
46
|
-
asteroid_odyssey/agents_v2_gen/models/agents_agent_base.py,sha256=XfW4gpuvynUZ1JJn1ovnLBcM25fB_Ctgnm7VO1NoiNg,2955
|
|
47
|
-
asteroid_odyssey/agents_v2_gen/models/agents_agent_execute_agent_request.py,sha256=BDOK7pn3RTNIlmSTFspgtxpTy8AQa0MC0pJp9-b_VgI,4245
|
|
48
|
-
asteroid_odyssey/agents_v2_gen/models/agents_agent_execute_agent_response.py,sha256=iPx3FB9Che9HSG5DBvCq4SUZonxch-R7XkxlXe9qqvM,2661
|
|
49
|
-
asteroid_odyssey/agents_v2_gen/models/agents_agent_sort_field.py,sha256=vxZxy30RGb858YI2WH8Z1U_vV9yRzKnaCCRAJj9Xek0,780
|
|
50
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_action_name.py,sha256=NT6N_rccFXAMxCKxoPVVQhS5GVPVVysP8lRD53B4d4g,3147
|
|
51
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_activity.py,sha256=ZaqHV8COfTp_uCk6zQcyAigsaZwpm1RloaPeC6oQ4-g,3228
|
|
52
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_activity_action_completed_info.py,sha256=c5l6ZxFjC6Ls_FedPgn6kz8jTS4vfGZK3SSH5YyfyWI,26403
|
|
53
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_activity_action_completed_payload.py,sha256=Mqj-jehnNVGsnimLLrA8gnPepUlxOoc8vR5urHIGyWM,4002
|
|
54
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_activity_action_failed_payload.py,sha256=ODI7ITkecfd2mFiRIt8zM1xd1jclso4687_devJZPVs,3484
|
|
55
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_activity_action_started_info.py,sha256=isHHsViPhoDVEo6zRXDAzQURfiELz5X7dJwV-7yuVeI,16963
|
|
56
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_activity_action_started_payload.py,sha256=FWDYKyFYQrmLDF6BMg_X6KtNN2AtXMX2doHuY0Do-HI,3873
|
|
57
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_activity_file_added_payload.py,sha256=ZwoVj55vRP3hLEgP6YCjNeUU7jo34XXuxuoJbaOPOvY,3820
|
|
58
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_activity_generic_payload.py,sha256=ClyP-v4Ck3zq7ns6hNb6ZosxOn4Kd2raLQSJWIjDPmM,2986
|
|
59
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_activity_payload_union.py,sha256=bUTqlQzUOfkK7RWMCWqw57qzg4HXUq1Jb1Uy7ZWcqD8,21779
|
|
60
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_activity_playwright_script_generated_payload.py,sha256=VLtpJynT9Ov2I5qW0bdDvvPYVCRbrMACvIqBTrIJ1hs,4332
|
|
61
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_activity_reasoning_payload.py,sha256=eRIZ54HaiUNDbUACmiEShc32FNO8Auu3MAJRyFoUVYs,3006
|
|
62
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_activity_status_changed_payload.py,sha256=WQeZCuXGDQRYohFXj99D7Krvc_uOewMr3Y3TA02xyuk,6248
|
|
63
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_activity_step_completed_payload.py,sha256=TxWr78dmHY3DZ88yXci1AmVtetSzMWn8nFEnhGmZuEQ,3076
|
|
64
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_activity_step_started_payload.py,sha256=mSzcUN46hbTFuxPrVLeQL0wZ9aXVsBS68djbrquQ7o0,3064
|
|
65
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_activity_transitioned_node_payload.py,sha256=Za7hC7rkjt7LqGsEhywCu9XtwXI7W4nnafFg1E59tDI,3867
|
|
66
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_activity_user_message_received_payload.py,sha256=thhGRBVaAo5bMtwLisOeTbhJd0EUaiZvE3-fzsb0aeY,3170
|
|
67
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_activity_workflow_updated_payload.py,sha256=wmAQhvbDonf0-yT32fVnAowp6i_oRseYfTOsEBHodUk,3729
|
|
68
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_awaiting_confirmation_payload.py,sha256=ebQJgeBSCQpLM_Z601NFSg8xQF9b5MsvGVY59dgCWW4,2595
|
|
69
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_cancel_reason.py,sha256=oOJGrFL0N4BYFQLcT8WfBCbhk2ccyly733vqwEd-Ewc,843
|
|
70
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_cancelled_payload.py,sha256=1rU132jiPc4Ol2S8VqzAn0SDglL6UjcSNDpP-QHuD9Q,2667
|
|
71
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_comment.py,sha256=yPq0I7_YCoHZQkV1vfUgkKotJCbDVCw2woUcYB-oBgs,3519
|
|
72
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_completed_payload.py,sha256=1Ca4Xvr6L7tj1faEmLeWMFJdKP5_GmWsRQy1EvrxlI8,3060
|
|
73
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_element_file_upload_completed_details.py,sha256=1snXxE6gAILCwVSKborLGS5X5YbuEj_vdEt1BYVFbHw,3082
|
|
74
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_execution_result.py,sha256=HHPCn5OP0MtH_NUh4QnN0Crq227vxVD3vTDngV12ilc,3560
|
|
75
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_ext_api_call_completed_details.py,sha256=-HKJ0FTzX7uyo5J4TuFXqiwvKFgaRVS_FpiC2JLmemo,3476
|
|
76
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_ext_get_mail_completed_details.py,sha256=EUcy_L7suF7GwAmG0FUnb22-o3J7vG-n5IgO8x9q_IU,3123
|
|
77
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_failed_payload.py,sha256=wbP_Z7ATkE6s8gwSBkYtWJ_GORM74rT4608znA26sZc,2966
|
|
78
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_file_list_completed_details.py,sha256=7HT4SLGnjBeBQ9e4-Ly260PHt1ZqYWZbqwe1HxOc5oE,3026
|
|
79
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_file_read_completed_details.py,sha256=4LVTrL7iS2yfE4JAMXNeCxAPaVfgJSKVqih_T6Vgb5I,3352
|
|
80
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_file_stage_completed_details.py,sha256=aowoJrFg-jwZQ3ImE1WRdMR-8gS2qo4bxrBavbQSCbk,3032
|
|
81
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_human_label.py,sha256=kjFJmgimqWECegmLpeiomykYdupyvw67s3OXS5vNutg,3218
|
|
82
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_list_item.py,sha256=DzdAV5e7c_hFYTbrIvaTtU4LL5HKRJb0FFEtYHX3Uys,7734
|
|
83
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_llm_call_purpose.py,sha256=ZyMEExVLDmrRDU25GWEePHAnDhKFEgJmUaU4h7ij2lU,1065
|
|
84
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_llm_call_started_details.py,sha256=18pbGktwRxtLhvGm58uAvihD9Ve3hKrWrsrPzMfhAGY,3104
|
|
85
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_nav_to_completed_details.py,sha256=x3FB2vujx1Kedlplfe6jaZ6KhchFuX0KCliZbGgUDzE,3036
|
|
86
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_nav_to_started_details.py,sha256=lphdKOrjjT08uNkk4LEHEOcZZuxgx7M_yDtGsK0Nybo,2942
|
|
87
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_node_details.py,sha256=ER2CJB4e_zIJyBlDxoi-oh3DyOEdzG7lQKo_GWLZ-KI,2779
|
|
88
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_obs_snapshot_with_selectors_completed_details.py,sha256=K8E5epBkFfqqkDWjfaiZZFjCfLqMt396mWtEdArUMAg,3137
|
|
89
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_paused_payload.py,sha256=slW-OsLyXs3JyDE9Zx8YGIU2y0msgoKCbHDG8IkYG8k,2539
|
|
90
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_rules_details.py,sha256=6QJ_XkLzSlgxxJqEjnM2jKzgbMkskHqdNSWG4ri_eNk,2531
|
|
91
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_scratchpad_read_completed_details.py,sha256=O-uAgkiTNSMMO6mXOREsdigyXaYDMdm0X6OAr0LuqaM,3232
|
|
92
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_scratchpad_read_started_details.py,sha256=LHzefgHTPiQGvo97t5fz4e8EM6P7ZpdSllFe4kzB82g,3261
|
|
93
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_scratchpad_write_completed_details.py,sha256=-ktkWvB7F9JolKMtc6cAsZFsAm2hcAyxsbicVWphVa0,3633
|
|
94
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_scratchpad_write_started_details.py,sha256=Wc7H4oUeZQrgPtyBtvJRTsAwT4T3Bw0RPvrA57jMXoE,3269
|
|
95
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_script_hybrid_playwright_completed_details.py,sha256=MGkJf5BsCaMGIKCa3t1p1QvMwLAN4DvkydUzajrG3u8,3448
|
|
96
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_script_hybrid_playwright_started_details.py,sha256=RAIS0GZu3HfLr2J0pgBJMRjYH7_m0q8krvrpVkHyKpk,3128
|
|
97
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_script_pad_run_function_completed_details.py,sha256=VzmtRheJNRdSwC7eTFmcQMbie8iF4oSuZAA1NkLNX5A,3436
|
|
98
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_script_playwright_completed_details.py,sha256=asMLJqKvtwxOmKTDxoVolSthM3-iYo2y20qe9F0843c,3410
|
|
99
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_script_playwright_started_details.py,sha256=pPvKZwP6On90isiWWuGVfJsXG-Z2Q0bZK2f3EYUCsAg,3090
|
|
100
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_scriptpad_read_completed_details.py,sha256=pBxpEg8tJJFZUu_A0t42K0S_OnORBuHiLcgk4EBi4rg,3014
|
|
101
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_scriptpad_read_started_details.py,sha256=BRRyOYYpp3vrbt6Nevs6ii0QRs5_vt_5dzyqAR2tyAs,3082
|
|
102
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_scriptpad_run_function_started_details.py,sha256=JeAR9md01kMYdV95cN0V3kyB5bumh-ijBioPltdVWCg,3419
|
|
103
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_scriptpad_search_replace_completed_details.py,sha256=ESxQ2d2zJPIBRuMBKE_dK2wzXikMfNn9qeOPA1UpRpk,3873
|
|
104
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_scriptpad_search_replace_started_details.py,sha256=dVrKojDR6OZcLYndQUnEdMTOYDqLc8oAP9tPZovUwtU,3266
|
|
105
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_scriptpad_write_completed_details.py,sha256=vF088dn0Tqu7K6BNFlknBOcCoyy5SaLJ4sfuw6kpnOA,3450
|
|
106
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_sort_field.py,sha256=KVc_CoONxPHD8MQ2x9T5Y9ejbQYzdv0j1e07cZeWe6I,818
|
|
107
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_status.py,sha256=xGM7e94JQGqf9tA4nl0hpmJWFLTIyLhPDLR-bnx_QuY,977
|
|
108
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_terminal_payload.py,sha256=InBz7gXuGozbEOkNFAcomTW--B36D6JxhxqM4EwwEoc,3351
|
|
109
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_transition_details.py,sha256=v9DuY5uODsDIO49hxUcn8gfUv7fED7G6Nz2Qf95iT2o,2755
|
|
110
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_update_type.py,sha256=2oVD53MapRhp93RB9fBDltn9ZWlR0rNApk-dLR5P-Rg,803
|
|
111
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_user_messages_add_text_body.py,sha256=RvfuJaVRDkEunpPBdLBVEfj7muuIokoQXHxZJ_o1FHE,2583
|
|
112
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_util_get_datetime_completed_details.py,sha256=jcgZw6TjVGrrUcr2Zslo4Q7qKFr3VQS1FMqT7z-Ap8Y,3407
|
|
113
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_util_get_datetime_started_details.py,sha256=hReMWYIPNZxHIM5MfzQbMt4MFGQHgVhwuh5qxEjoaJg,3112
|
|
114
|
-
asteroid_odyssey/agents_v2_gen/models/agents_execution_workflow_update.py,sha256=qSvecAMSzPL9ELr3qyUhpjbnXtILOovkcOn8OT9KpII,4424
|
|
115
|
-
asteroid_odyssey/agents_v2_gen/models/agents_files_file.py,sha256=nw4_8muCPxjAaRkjXNtM3iD-_IBwOjjX223q9pq7R5s,3613
|
|
116
|
-
asteroid_odyssey/agents_v2_gen/models/agents_files_temp_file.py,sha256=XjavH68R-o3d_EuVRaFNbnaJZXoiaSMMeIornmk2LJA,2552
|
|
117
|
-
asteroid_odyssey/agents_v2_gen/models/agents_files_temp_files_response.py,sha256=NpcTPzxlBi4N9NIJOedRCJQey_ODcO9jJ0jKY_Wmz6o,3127
|
|
118
|
-
asteroid_odyssey/agents_v2_gen/models/agents_graph_models_nodes_properties_playwright_script_llm_var.py,sha256=m9PSQs4BBSM6aO-akyK4_qdYGjHuc5Kv8akT9XMWfyI,3019
|
|
119
|
-
asteroid_odyssey/agents_v2_gen/models/agents_graph_models_nodes_properties_playwright_script_llm_var_type.py,sha256=lu_J1UrE9WKhzNJV34kVDxKxsjV3fvFBJjnnB0LsgIE,914
|
|
120
|
-
asteroid_odyssey/agents_v2_gen/models/agents_graph_models_transitions_transition_type.py,sha256=QnUO0ARjDeBRhPdRiR2emGrSkD8lIJnNgpzG7OHzeTg,882
|
|
121
|
-
asteroid_odyssey/agents_v2_gen/models/common_bad_request_error_body.py,sha256=cZQcZH6c2RmQleZe57-mfUsCKW74lGGtVMWbJFGc1ho,2889
|
|
122
|
-
asteroid_odyssey/agents_v2_gen/models/common_error.py,sha256=to8zl1yPqcf8hRXEZeOrhuA_jWhmpaMmly5Y_Xl129k,2551
|
|
123
|
-
asteroid_odyssey/agents_v2_gen/models/common_forbidden_error_body.py,sha256=9yADAujD_9eTW4BtZ7oYifmFCDTpAw-j1jEEJhwdAVs,2885
|
|
124
|
-
asteroid_odyssey/agents_v2_gen/models/common_internal_server_error_body.py,sha256=DDtB3LOeVTtvdWhTEthmobNL-0BsuhAd7Zh0ZAb4Mgs,2905
|
|
125
|
-
asteroid_odyssey/agents_v2_gen/models/common_not_found_error_body.py,sha256=BAVAweVD5ltGL2lWfdDNwaq82CI4iVkPVE_E9JfEpi8,2881
|
|
126
|
-
asteroid_odyssey/agents_v2_gen/models/common_os_error.py,sha256=5hF0Q4D2sYdRe-F-mDT1FmD5yH4PcbKRlm8VkqDtBC4,2483
|
|
127
|
-
asteroid_odyssey/agents_v2_gen/models/common_sort_direction.py,sha256=UBW99PM3QRGRRE7dB5OSBhmhogmsXQQsrw66j0fg_xc,763
|
|
128
|
-
asteroid_odyssey/agents_v2_gen/models/common_unauthorized_error_body.py,sha256=Ng62vZVuPWEkTvdnYimbItSKhUGT9G52ZOapMQ2O7Xg,2897
|
|
129
|
-
asteroid_odyssey/agents_v2_gen/models/executions_list200_response.py,sha256=hmZBiOEUKpzEptDcElwgNwhCwSnXFJsrBbb9w2amGiM,3302
|
|
130
|
-
asteroid_odyssey/agents_v2_gen/models/version.py,sha256=Vjiri_a5CcDJ1lSziRqif5HuFpaxneVDLIB1r8SFIkE,707
|
|
131
|
-
asteroid_odyssey-1.3.12.dist-info/METADATA,sha256=ZGau6sWIHr0pggeik6aF6XBQPJqfv3m8pPQFyB3PgVA,7109
|
|
132
|
-
asteroid_odyssey-1.3.12.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
133
|
-
asteroid_odyssey-1.3.12.dist-info/top_level.txt,sha256=h4T6NKscnThJ4Nhzors2NKlJeZzepnM7XvDgsnfi5HA,17
|
|
134
|
-
asteroid_odyssey-1.3.12.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_activity_generic_payload.py
RENAMED
|
File without changes
|
/asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_activity_reasoning_payload.py
RENAMED
|
File without changes
|
|
File without changes
|
/asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_activity_step_started_payload.py
RENAMED
|
File without changes
|
|
File without changes
|
/asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_awaiting_confirmation_payload.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
/asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_ext_get_mail_completed_details.py
RENAMED
|
File without changes
|
/asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_file_list_completed_details.py
RENAMED
|
File without changes
|
/asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_file_stage_completed_details.py
RENAMED
|
File without changes
|
|
File without changes
|
/asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_nav_to_completed_details.py
RENAMED
|
File without changes
|
/asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_nav_to_started_details.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/asteroid_odyssey/{agents_v2_gen/models → models}/agents_execution_user_messages_add_text_body.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/asteroid_odyssey/{agents_v2_gen/models → models}/agents_graph_models_transitions_transition_type.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|