asteroid-odyssey 1.3.13__py3-none-any.whl → 1.6.1__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 -82
- 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.1.dist-info/METADATA +64 -0
- asteroid_odyssey-1.6.1.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.13.dist-info/METADATA +0 -214
- asteroid_odyssey-1.3.13.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.13.dist-info → asteroid_odyssey-1.6.1.dist-info}/WHEEL +0 -0
- {asteroid_odyssey-1.3.13.dist-info → asteroid_odyssey-1.6.1.dist-info}/top_level.txt +0 -0
|
@@ -19,15 +19,15 @@ from typing_extensions import Annotated
|
|
|
19
19
|
from pydantic import Field, StrictInt, StrictStr
|
|
20
20
|
from typing import Optional
|
|
21
21
|
from typing_extensions import Annotated
|
|
22
|
-
from asteroid_odyssey.
|
|
23
|
-
from asteroid_odyssey.
|
|
24
|
-
from asteroid_odyssey.
|
|
25
|
-
from asteroid_odyssey.
|
|
26
|
-
from asteroid_odyssey.
|
|
22
|
+
from asteroid_odyssey.models.agent_list200_response import AgentList200Response
|
|
23
|
+
from asteroid_odyssey.models.agents_agent_execute_agent_request import AgentsAgentExecuteAgentRequest
|
|
24
|
+
from asteroid_odyssey.models.agents_agent_execute_agent_response import AgentsAgentExecuteAgentResponse
|
|
25
|
+
from asteroid_odyssey.models.agents_agent_sort_field import AgentsAgentSortField
|
|
26
|
+
from asteroid_odyssey.models.common_sort_direction import CommonSortDirection
|
|
27
27
|
|
|
28
|
-
from asteroid_odyssey.
|
|
29
|
-
from asteroid_odyssey.
|
|
30
|
-
from asteroid_odyssey.
|
|
28
|
+
from asteroid_odyssey.api_client import ApiClient, RequestSerialized
|
|
29
|
+
from asteroid_odyssey.api_response import ApiResponse
|
|
30
|
+
from asteroid_odyssey.rest import RESTResponseType
|
|
31
31
|
|
|
32
32
|
|
|
33
33
|
class AgentsApi:
|
|
@@ -335,9 +335,9 @@ class AgentsApi:
|
|
|
335
335
|
@validate_call
|
|
336
336
|
def agent_list(
|
|
337
337
|
self,
|
|
338
|
-
page_size: StrictInt,
|
|
339
|
-
page: StrictInt,
|
|
340
338
|
organization_id: Optional[StrictStr] = None,
|
|
339
|
+
page_size: Optional[StrictInt] = None,
|
|
340
|
+
page: Optional[StrictInt] = None,
|
|
341
341
|
search_name: Optional[StrictStr] = None,
|
|
342
342
|
sort_field: Optional[AgentsAgentSortField] = None,
|
|
343
343
|
sort_direction: Optional[CommonSortDirection] = None,
|
|
@@ -357,12 +357,12 @@ class AgentsApi:
|
|
|
357
357
|
"""agent_list
|
|
358
358
|
|
|
359
359
|
|
|
360
|
-
:param page_size: (required)
|
|
361
|
-
:type page_size: int
|
|
362
|
-
:param page: (required)
|
|
363
|
-
:type page: int
|
|
364
360
|
:param organization_id:
|
|
365
361
|
:type organization_id: str
|
|
362
|
+
:param page_size:
|
|
363
|
+
:type page_size: int
|
|
364
|
+
:param page:
|
|
365
|
+
:type page: int
|
|
366
366
|
:param search_name:
|
|
367
367
|
:type search_name: str
|
|
368
368
|
:param sort_field:
|
|
@@ -392,9 +392,9 @@ class AgentsApi:
|
|
|
392
392
|
""" # noqa: E501
|
|
393
393
|
|
|
394
394
|
_param = self._agent_list_serialize(
|
|
395
|
+
organization_id=organization_id,
|
|
395
396
|
page_size=page_size,
|
|
396
397
|
page=page,
|
|
397
|
-
organization_id=organization_id,
|
|
398
398
|
search_name=search_name,
|
|
399
399
|
sort_field=sort_field,
|
|
400
400
|
sort_direction=sort_direction,
|
|
@@ -423,9 +423,9 @@ class AgentsApi:
|
|
|
423
423
|
@validate_call
|
|
424
424
|
def agent_list_with_http_info(
|
|
425
425
|
self,
|
|
426
|
-
page_size: StrictInt,
|
|
427
|
-
page: StrictInt,
|
|
428
426
|
organization_id: Optional[StrictStr] = None,
|
|
427
|
+
page_size: Optional[StrictInt] = None,
|
|
428
|
+
page: Optional[StrictInt] = None,
|
|
429
429
|
search_name: Optional[StrictStr] = None,
|
|
430
430
|
sort_field: Optional[AgentsAgentSortField] = None,
|
|
431
431
|
sort_direction: Optional[CommonSortDirection] = None,
|
|
@@ -445,12 +445,12 @@ class AgentsApi:
|
|
|
445
445
|
"""agent_list
|
|
446
446
|
|
|
447
447
|
|
|
448
|
-
:param page_size: (required)
|
|
449
|
-
:type page_size: int
|
|
450
|
-
:param page: (required)
|
|
451
|
-
:type page: int
|
|
452
448
|
:param organization_id:
|
|
453
449
|
:type organization_id: str
|
|
450
|
+
:param page_size:
|
|
451
|
+
:type page_size: int
|
|
452
|
+
:param page:
|
|
453
|
+
:type page: int
|
|
454
454
|
:param search_name:
|
|
455
455
|
:type search_name: str
|
|
456
456
|
:param sort_field:
|
|
@@ -480,9 +480,9 @@ class AgentsApi:
|
|
|
480
480
|
""" # noqa: E501
|
|
481
481
|
|
|
482
482
|
_param = self._agent_list_serialize(
|
|
483
|
+
organization_id=organization_id,
|
|
483
484
|
page_size=page_size,
|
|
484
485
|
page=page,
|
|
485
|
-
organization_id=organization_id,
|
|
486
486
|
search_name=search_name,
|
|
487
487
|
sort_field=sort_field,
|
|
488
488
|
sort_direction=sort_direction,
|
|
@@ -511,9 +511,9 @@ class AgentsApi:
|
|
|
511
511
|
@validate_call
|
|
512
512
|
def agent_list_without_preload_content(
|
|
513
513
|
self,
|
|
514
|
-
page_size: StrictInt,
|
|
515
|
-
page: StrictInt,
|
|
516
514
|
organization_id: Optional[StrictStr] = None,
|
|
515
|
+
page_size: Optional[StrictInt] = None,
|
|
516
|
+
page: Optional[StrictInt] = None,
|
|
517
517
|
search_name: Optional[StrictStr] = None,
|
|
518
518
|
sort_field: Optional[AgentsAgentSortField] = None,
|
|
519
519
|
sort_direction: Optional[CommonSortDirection] = None,
|
|
@@ -533,12 +533,12 @@ class AgentsApi:
|
|
|
533
533
|
"""agent_list
|
|
534
534
|
|
|
535
535
|
|
|
536
|
-
:param page_size: (required)
|
|
537
|
-
:type page_size: int
|
|
538
|
-
:param page: (required)
|
|
539
|
-
:type page: int
|
|
540
536
|
:param organization_id:
|
|
541
537
|
:type organization_id: str
|
|
538
|
+
:param page_size:
|
|
539
|
+
:type page_size: int
|
|
540
|
+
:param page:
|
|
541
|
+
:type page: int
|
|
542
542
|
:param search_name:
|
|
543
543
|
:type search_name: str
|
|
544
544
|
:param sort_field:
|
|
@@ -568,9 +568,9 @@ class AgentsApi:
|
|
|
568
568
|
""" # noqa: E501
|
|
569
569
|
|
|
570
570
|
_param = self._agent_list_serialize(
|
|
571
|
+
organization_id=organization_id,
|
|
571
572
|
page_size=page_size,
|
|
572
573
|
page=page,
|
|
573
|
-
organization_id=organization_id,
|
|
574
574
|
search_name=search_name,
|
|
575
575
|
sort_field=sort_field,
|
|
576
576
|
sort_direction=sort_direction,
|
|
@@ -594,9 +594,9 @@ class AgentsApi:
|
|
|
594
594
|
|
|
595
595
|
def _agent_list_serialize(
|
|
596
596
|
self,
|
|
597
|
+
organization_id,
|
|
597
598
|
page_size,
|
|
598
599
|
page,
|
|
599
|
-
organization_id,
|
|
600
600
|
search_name,
|
|
601
601
|
sort_field,
|
|
602
602
|
sort_direction,
|
|
@@ -20,17 +20,17 @@ from datetime import datetime
|
|
|
20
20
|
from pydantic import Field, StrictInt, StrictStr, field_validator
|
|
21
21
|
from typing import List, Optional
|
|
22
22
|
from typing_extensions import Annotated
|
|
23
|
-
from asteroid_odyssey.
|
|
24
|
-
from asteroid_odyssey.
|
|
25
|
-
from asteroid_odyssey.
|
|
26
|
-
from asteroid_odyssey.
|
|
27
|
-
from asteroid_odyssey.
|
|
28
|
-
from asteroid_odyssey.
|
|
29
|
-
from asteroid_odyssey.
|
|
23
|
+
from asteroid_odyssey.models.agents_execution_activity import AgentsExecutionActivity
|
|
24
|
+
from asteroid_odyssey.models.agents_execution_list_item import AgentsExecutionListItem
|
|
25
|
+
from asteroid_odyssey.models.agents_execution_sort_field import AgentsExecutionSortField
|
|
26
|
+
from asteroid_odyssey.models.agents_execution_status import AgentsExecutionStatus
|
|
27
|
+
from asteroid_odyssey.models.agents_execution_user_messages_add_text_body import AgentsExecutionUserMessagesAddTextBody
|
|
28
|
+
from asteroid_odyssey.models.common_sort_direction import CommonSortDirection
|
|
29
|
+
from asteroid_odyssey.models.executions_list200_response import ExecutionsList200Response
|
|
30
30
|
|
|
31
|
-
from asteroid_odyssey.
|
|
32
|
-
from asteroid_odyssey.
|
|
33
|
-
from asteroid_odyssey.
|
|
31
|
+
from asteroid_odyssey.api_client import ApiClient, RequestSerialized
|
|
32
|
+
from asteroid_odyssey.api_response import ApiResponse
|
|
33
|
+
from asteroid_odyssey.rest import RESTResponseType
|
|
34
34
|
|
|
35
35
|
|
|
36
36
|
class ExecutionApi:
|
|
@@ -940,13 +940,12 @@ class ExecutionApi:
|
|
|
940
940
|
@validate_call
|
|
941
941
|
def executions_list(
|
|
942
942
|
self,
|
|
943
|
-
page_size: StrictInt,
|
|
944
|
-
page: StrictInt,
|
|
945
943
|
organization_id: Annotated[Optional[StrictStr], Field(description="Optional organization ID filter (required for customer queries)")] = None,
|
|
944
|
+
page_size: Optional[StrictInt] = None,
|
|
945
|
+
page: Optional[StrictInt] = None,
|
|
946
946
|
execution_id: Annotated[Optional[StrictStr], Field(description="Search by execution ID (partial, case-insensitive match)")] = None,
|
|
947
947
|
agent_id: Annotated[Optional[StrictStr], Field(description="Filter by agent ID")] = None,
|
|
948
948
|
status: Annotated[Optional[List[AgentsExecutionStatus]], Field(description="Filter by execution status (can specify multiple, there is an 'OR' condition applied to these)")] = None,
|
|
949
|
-
agent_version: Annotated[Optional[StrictInt], Field(description="Filter by agent version")] = None,
|
|
950
949
|
created_after: Annotated[Optional[datetime], Field(description="Filter executions created after this timestamp")] = None,
|
|
951
950
|
created_before: Annotated[Optional[datetime], Field(description="Filter executions created before this timestamp")] = None,
|
|
952
951
|
human_labels: Annotated[Optional[List[StrictStr]], Field(description="Filter by human labels (can specify multiple label IDs, there is an 'OR' condition applied to these)")] = None,
|
|
@@ -972,20 +971,18 @@ class ExecutionApi:
|
|
|
972
971
|
|
|
973
972
|
List executions with filtering and pagination
|
|
974
973
|
|
|
975
|
-
:param page_size: (required)
|
|
976
|
-
:type page_size: int
|
|
977
|
-
:param page: (required)
|
|
978
|
-
:type page: int
|
|
979
974
|
:param organization_id: Optional organization ID filter (required for customer queries)
|
|
980
975
|
:type organization_id: str
|
|
976
|
+
:param page_size:
|
|
977
|
+
:type page_size: int
|
|
978
|
+
:param page:
|
|
979
|
+
:type page: int
|
|
981
980
|
:param execution_id: Search by execution ID (partial, case-insensitive match)
|
|
982
981
|
:type execution_id: str
|
|
983
982
|
:param agent_id: Filter by agent ID
|
|
984
983
|
:type agent_id: str
|
|
985
984
|
:param status: Filter by execution status (can specify multiple, there is an 'OR' condition applied to these)
|
|
986
985
|
:type status: List[AgentsExecutionStatus]
|
|
987
|
-
:param agent_version: Filter by agent version
|
|
988
|
-
:type agent_version: int
|
|
989
986
|
:param created_after: Filter executions created after this timestamp
|
|
990
987
|
:type created_after: datetime
|
|
991
988
|
:param created_before: Filter executions created before this timestamp
|
|
@@ -1025,13 +1022,12 @@ class ExecutionApi:
|
|
|
1025
1022
|
""" # noqa: E501
|
|
1026
1023
|
|
|
1027
1024
|
_param = self._executions_list_serialize(
|
|
1025
|
+
organization_id=organization_id,
|
|
1028
1026
|
page_size=page_size,
|
|
1029
1027
|
page=page,
|
|
1030
|
-
organization_id=organization_id,
|
|
1031
1028
|
execution_id=execution_id,
|
|
1032
1029
|
agent_id=agent_id,
|
|
1033
1030
|
status=status,
|
|
1034
|
-
agent_version=agent_version,
|
|
1035
1031
|
created_after=created_after,
|
|
1036
1032
|
created_before=created_before,
|
|
1037
1033
|
human_labels=human_labels,
|
|
@@ -1068,13 +1064,12 @@ class ExecutionApi:
|
|
|
1068
1064
|
@validate_call
|
|
1069
1065
|
def executions_list_with_http_info(
|
|
1070
1066
|
self,
|
|
1071
|
-
page_size: StrictInt,
|
|
1072
|
-
page: StrictInt,
|
|
1073
1067
|
organization_id: Annotated[Optional[StrictStr], Field(description="Optional organization ID filter (required for customer queries)")] = None,
|
|
1068
|
+
page_size: Optional[StrictInt] = None,
|
|
1069
|
+
page: Optional[StrictInt] = None,
|
|
1074
1070
|
execution_id: Annotated[Optional[StrictStr], Field(description="Search by execution ID (partial, case-insensitive match)")] = None,
|
|
1075
1071
|
agent_id: Annotated[Optional[StrictStr], Field(description="Filter by agent ID")] = None,
|
|
1076
1072
|
status: Annotated[Optional[List[AgentsExecutionStatus]], Field(description="Filter by execution status (can specify multiple, there is an 'OR' condition applied to these)")] = None,
|
|
1077
|
-
agent_version: Annotated[Optional[StrictInt], Field(description="Filter by agent version")] = None,
|
|
1078
1073
|
created_after: Annotated[Optional[datetime], Field(description="Filter executions created after this timestamp")] = None,
|
|
1079
1074
|
created_before: Annotated[Optional[datetime], Field(description="Filter executions created before this timestamp")] = None,
|
|
1080
1075
|
human_labels: Annotated[Optional[List[StrictStr]], Field(description="Filter by human labels (can specify multiple label IDs, there is an 'OR' condition applied to these)")] = None,
|
|
@@ -1100,20 +1095,18 @@ class ExecutionApi:
|
|
|
1100
1095
|
|
|
1101
1096
|
List executions with filtering and pagination
|
|
1102
1097
|
|
|
1103
|
-
:param page_size: (required)
|
|
1104
|
-
:type page_size: int
|
|
1105
|
-
:param page: (required)
|
|
1106
|
-
:type page: int
|
|
1107
1098
|
:param organization_id: Optional organization ID filter (required for customer queries)
|
|
1108
1099
|
:type organization_id: str
|
|
1100
|
+
:param page_size:
|
|
1101
|
+
:type page_size: int
|
|
1102
|
+
:param page:
|
|
1103
|
+
:type page: int
|
|
1109
1104
|
:param execution_id: Search by execution ID (partial, case-insensitive match)
|
|
1110
1105
|
:type execution_id: str
|
|
1111
1106
|
:param agent_id: Filter by agent ID
|
|
1112
1107
|
:type agent_id: str
|
|
1113
1108
|
:param status: Filter by execution status (can specify multiple, there is an 'OR' condition applied to these)
|
|
1114
1109
|
:type status: List[AgentsExecutionStatus]
|
|
1115
|
-
:param agent_version: Filter by agent version
|
|
1116
|
-
:type agent_version: int
|
|
1117
1110
|
:param created_after: Filter executions created after this timestamp
|
|
1118
1111
|
:type created_after: datetime
|
|
1119
1112
|
:param created_before: Filter executions created before this timestamp
|
|
@@ -1153,13 +1146,12 @@ class ExecutionApi:
|
|
|
1153
1146
|
""" # noqa: E501
|
|
1154
1147
|
|
|
1155
1148
|
_param = self._executions_list_serialize(
|
|
1149
|
+
organization_id=organization_id,
|
|
1156
1150
|
page_size=page_size,
|
|
1157
1151
|
page=page,
|
|
1158
|
-
organization_id=organization_id,
|
|
1159
1152
|
execution_id=execution_id,
|
|
1160
1153
|
agent_id=agent_id,
|
|
1161
1154
|
status=status,
|
|
1162
|
-
agent_version=agent_version,
|
|
1163
1155
|
created_after=created_after,
|
|
1164
1156
|
created_before=created_before,
|
|
1165
1157
|
human_labels=human_labels,
|
|
@@ -1196,13 +1188,12 @@ class ExecutionApi:
|
|
|
1196
1188
|
@validate_call
|
|
1197
1189
|
def executions_list_without_preload_content(
|
|
1198
1190
|
self,
|
|
1199
|
-
page_size: StrictInt,
|
|
1200
|
-
page: StrictInt,
|
|
1201
1191
|
organization_id: Annotated[Optional[StrictStr], Field(description="Optional organization ID filter (required for customer queries)")] = None,
|
|
1192
|
+
page_size: Optional[StrictInt] = None,
|
|
1193
|
+
page: Optional[StrictInt] = None,
|
|
1202
1194
|
execution_id: Annotated[Optional[StrictStr], Field(description="Search by execution ID (partial, case-insensitive match)")] = None,
|
|
1203
1195
|
agent_id: Annotated[Optional[StrictStr], Field(description="Filter by agent ID")] = None,
|
|
1204
1196
|
status: Annotated[Optional[List[AgentsExecutionStatus]], Field(description="Filter by execution status (can specify multiple, there is an 'OR' condition applied to these)")] = None,
|
|
1205
|
-
agent_version: Annotated[Optional[StrictInt], Field(description="Filter by agent version")] = None,
|
|
1206
1197
|
created_after: Annotated[Optional[datetime], Field(description="Filter executions created after this timestamp")] = None,
|
|
1207
1198
|
created_before: Annotated[Optional[datetime], Field(description="Filter executions created before this timestamp")] = None,
|
|
1208
1199
|
human_labels: Annotated[Optional[List[StrictStr]], Field(description="Filter by human labels (can specify multiple label IDs, there is an 'OR' condition applied to these)")] = None,
|
|
@@ -1228,20 +1219,18 @@ class ExecutionApi:
|
|
|
1228
1219
|
|
|
1229
1220
|
List executions with filtering and pagination
|
|
1230
1221
|
|
|
1231
|
-
:param page_size: (required)
|
|
1232
|
-
:type page_size: int
|
|
1233
|
-
:param page: (required)
|
|
1234
|
-
:type page: int
|
|
1235
1222
|
:param organization_id: Optional organization ID filter (required for customer queries)
|
|
1236
1223
|
:type organization_id: str
|
|
1224
|
+
:param page_size:
|
|
1225
|
+
:type page_size: int
|
|
1226
|
+
:param page:
|
|
1227
|
+
:type page: int
|
|
1237
1228
|
:param execution_id: Search by execution ID (partial, case-insensitive match)
|
|
1238
1229
|
:type execution_id: str
|
|
1239
1230
|
:param agent_id: Filter by agent ID
|
|
1240
1231
|
:type agent_id: str
|
|
1241
1232
|
:param status: Filter by execution status (can specify multiple, there is an 'OR' condition applied to these)
|
|
1242
1233
|
:type status: List[AgentsExecutionStatus]
|
|
1243
|
-
:param agent_version: Filter by agent version
|
|
1244
|
-
:type agent_version: int
|
|
1245
1234
|
:param created_after: Filter executions created after this timestamp
|
|
1246
1235
|
:type created_after: datetime
|
|
1247
1236
|
:param created_before: Filter executions created before this timestamp
|
|
@@ -1281,13 +1270,12 @@ class ExecutionApi:
|
|
|
1281
1270
|
""" # noqa: E501
|
|
1282
1271
|
|
|
1283
1272
|
_param = self._executions_list_serialize(
|
|
1273
|
+
organization_id=organization_id,
|
|
1284
1274
|
page_size=page_size,
|
|
1285
1275
|
page=page,
|
|
1286
|
-
organization_id=organization_id,
|
|
1287
1276
|
execution_id=execution_id,
|
|
1288
1277
|
agent_id=agent_id,
|
|
1289
1278
|
status=status,
|
|
1290
|
-
agent_version=agent_version,
|
|
1291
1279
|
created_after=created_after,
|
|
1292
1280
|
created_before=created_before,
|
|
1293
1281
|
human_labels=human_labels,
|
|
@@ -1319,13 +1307,12 @@ class ExecutionApi:
|
|
|
1319
1307
|
|
|
1320
1308
|
def _executions_list_serialize(
|
|
1321
1309
|
self,
|
|
1310
|
+
organization_id,
|
|
1322
1311
|
page_size,
|
|
1323
1312
|
page,
|
|
1324
|
-
organization_id,
|
|
1325
1313
|
execution_id,
|
|
1326
1314
|
agent_id,
|
|
1327
1315
|
status,
|
|
1328
|
-
agent_version,
|
|
1329
1316
|
created_after,
|
|
1330
1317
|
created_before,
|
|
1331
1318
|
human_labels,
|
|
@@ -1382,10 +1369,6 @@ class ExecutionApi:
|
|
|
1382
1369
|
|
|
1383
1370
|
_query_params.append(('status', status))
|
|
1384
1371
|
|
|
1385
|
-
if agent_version is not None:
|
|
1386
|
-
|
|
1387
|
-
_query_params.append(('agentVersion', agent_version))
|
|
1388
|
-
|
|
1389
1372
|
if created_after is not None:
|
|
1390
1373
|
if isinstance(created_after, datetime):
|
|
1391
1374
|
_query_params.append(
|
|
@@ -19,12 +19,12 @@ from typing_extensions import Annotated
|
|
|
19
19
|
from pydantic import Field, StrictBytes, StrictStr, field_validator
|
|
20
20
|
from typing import List, Tuple, Union
|
|
21
21
|
from typing_extensions import Annotated
|
|
22
|
-
from asteroid_odyssey.
|
|
23
|
-
from asteroid_odyssey.
|
|
22
|
+
from asteroid_odyssey.models.agents_files_file import AgentsFilesFile
|
|
23
|
+
from asteroid_odyssey.models.agents_files_temp_files_response import AgentsFilesTempFilesResponse
|
|
24
24
|
|
|
25
|
-
from asteroid_odyssey.
|
|
26
|
-
from asteroid_odyssey.
|
|
27
|
-
from asteroid_odyssey.
|
|
25
|
+
from asteroid_odyssey.api_client import ApiClient, RequestSerialized
|
|
26
|
+
from asteroid_odyssey.api_response import ApiResponse
|
|
27
|
+
from asteroid_odyssey.rest import RESTResponseType
|
|
28
28
|
|
|
29
29
|
|
|
30
30
|
class FilesApi:
|
|
@@ -26,11 +26,11 @@ from urllib.parse import quote
|
|
|
26
26
|
from typing import Tuple, Optional, List, Dict, Union
|
|
27
27
|
from pydantic import SecretStr
|
|
28
28
|
|
|
29
|
-
from asteroid_odyssey.
|
|
30
|
-
from asteroid_odyssey.
|
|
31
|
-
import asteroid_odyssey.
|
|
32
|
-
from asteroid_odyssey
|
|
33
|
-
from asteroid_odyssey.
|
|
29
|
+
from asteroid_odyssey.configuration import Configuration
|
|
30
|
+
from asteroid_odyssey.api_response import ApiResponse, T as ApiResponseT
|
|
31
|
+
import asteroid_odyssey.models
|
|
32
|
+
from asteroid_odyssey import rest
|
|
33
|
+
from asteroid_odyssey.exceptions import (
|
|
34
34
|
ApiValueError,
|
|
35
35
|
ApiException,
|
|
36
36
|
BadRequestException,
|
|
@@ -382,6 +382,10 @@ class ApiClient:
|
|
|
382
382
|
else:
|
|
383
383
|
obj_dict = obj.__dict__
|
|
384
384
|
|
|
385
|
+
if isinstance(obj_dict, list):
|
|
386
|
+
# here we handle instances that can either be a list or something else, and only became a real list by calling to_dict()
|
|
387
|
+
return self.sanitize_for_serialization(obj_dict)
|
|
388
|
+
|
|
385
389
|
return {
|
|
386
390
|
key: self.sanitize_for_serialization(val)
|
|
387
391
|
for key, val in obj_dict.items()
|
|
@@ -449,7 +453,7 @@ class ApiClient:
|
|
|
449
453
|
if klass in self.NATIVE_TYPES_MAPPING:
|
|
450
454
|
klass = self.NATIVE_TYPES_MAPPING[klass]
|
|
451
455
|
else:
|
|
452
|
-
klass = getattr(asteroid_odyssey.
|
|
456
|
+
klass = getattr(asteroid_odyssey.models, klass)
|
|
453
457
|
|
|
454
458
|
if klass in self.PRIMITIVE_TYPES:
|
|
455
459
|
return self.__deserialize_primitive(data, klass)
|
|
@@ -18,7 +18,7 @@ import logging
|
|
|
18
18
|
from logging import FileHandler
|
|
19
19
|
import multiprocessing
|
|
20
20
|
import sys
|
|
21
|
-
from typing import Any, ClassVar, Dict, List, Literal, Optional, TypedDict
|
|
21
|
+
from typing import Any, ClassVar, Dict, List, Literal, Optional, TypedDict, Union
|
|
22
22
|
from typing_extensions import NotRequired, Self
|
|
23
23
|
|
|
24
24
|
import urllib3
|
|
@@ -161,6 +161,8 @@ class Configuration:
|
|
|
161
161
|
:param ssl_ca_cert: str - the path to a file of concatenated CA certificates
|
|
162
162
|
in PEM format.
|
|
163
163
|
:param retries: Number of retries for API requests.
|
|
164
|
+
:param ca_cert_data: verify the peer using concatenated CA certificate data
|
|
165
|
+
in PEM (str) or DER (bytes) format.
|
|
164
166
|
|
|
165
167
|
:Example:
|
|
166
168
|
|
|
@@ -175,7 +177,7 @@ class Configuration:
|
|
|
175
177
|
|
|
176
178
|
You can programmatically set the cookie:
|
|
177
179
|
|
|
178
|
-
conf = asteroid_odyssey.
|
|
180
|
+
conf = asteroid_odyssey.Configuration(
|
|
179
181
|
api_key={'cookieAuth': 'abc123'}
|
|
180
182
|
api_key_prefix={'cookieAuth': 'JSESSIONID'}
|
|
181
183
|
)
|
|
@@ -194,13 +196,14 @@ conf = asteroid_odyssey.agents_v2_gen.Configuration(
|
|
|
194
196
|
username: Optional[str]=None,
|
|
195
197
|
password: Optional[str]=None,
|
|
196
198
|
access_token: Optional[str]=None,
|
|
197
|
-
server_index: Optional[int]=None,
|
|
199
|
+
server_index: Optional[int]=None,
|
|
198
200
|
server_variables: Optional[ServerVariablesT]=None,
|
|
199
201
|
server_operation_index: Optional[Dict[int, int]]=None,
|
|
200
202
|
server_operation_variables: Optional[Dict[int, ServerVariablesT]]=None,
|
|
201
203
|
ignore_operation_servers: bool=False,
|
|
202
204
|
ssl_ca_cert: Optional[str]=None,
|
|
203
205
|
retries: Optional[int] = None,
|
|
206
|
+
ca_cert_data: Optional[Union[str, bytes]] = None,
|
|
204
207
|
*,
|
|
205
208
|
debug: Optional[bool] = None,
|
|
206
209
|
) -> None:
|
|
@@ -249,7 +252,7 @@ conf = asteroid_odyssey.agents_v2_gen.Configuration(
|
|
|
249
252
|
self.logger = {}
|
|
250
253
|
"""Logging Settings
|
|
251
254
|
"""
|
|
252
|
-
self.logger["package_logger"] = logging.getLogger("asteroid_odyssey
|
|
255
|
+
self.logger["package_logger"] = logging.getLogger("asteroid_odyssey")
|
|
253
256
|
self.logger["urllib3_logger"] = logging.getLogger("urllib3")
|
|
254
257
|
self.logger_format = '%(asctime)s %(levelname)s %(message)s'
|
|
255
258
|
"""Log format
|
|
@@ -278,6 +281,10 @@ conf = asteroid_odyssey.agents_v2_gen.Configuration(
|
|
|
278
281
|
self.ssl_ca_cert = ssl_ca_cert
|
|
279
282
|
"""Set this to customize the certificate file to verify the peer.
|
|
280
283
|
"""
|
|
284
|
+
self.ca_cert_data = ca_cert_data
|
|
285
|
+
"""Set this to verify the peer using PEM (str) or DER (bytes)
|
|
286
|
+
certificate data.
|
|
287
|
+
"""
|
|
281
288
|
self.cert_file = None
|
|
282
289
|
"""client certificate file
|
|
283
290
|
"""
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
# flake8: noqa
|
|
4
|
+
"""
|
|
5
|
+
Agent Service
|
|
6
|
+
|
|
7
|
+
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
8
|
+
|
|
9
|
+
The version of the OpenAPI document: v1
|
|
10
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
|
+
|
|
12
|
+
Do not edit the class manually.
|
|
13
|
+
""" # noqa: E501
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
# import models into model package
|
|
17
|
+
from asteroid_odyssey.models.agent_list200_response import AgentList200Response
|
|
18
|
+
from asteroid_odyssey.models.agent_profile_clear_browser_cache200_response import AgentProfileClearBrowserCache200Response
|
|
19
|
+
from asteroid_odyssey.models.agent_profiles_list200_response import AgentProfilesList200Response
|
|
20
|
+
from asteroid_odyssey.models.agents_agent_base import AgentsAgentBase
|
|
21
|
+
from asteroid_odyssey.models.agents_agent_execute_agent_request import AgentsAgentExecuteAgentRequest
|
|
22
|
+
from asteroid_odyssey.models.agents_agent_execute_agent_response import AgentsAgentExecuteAgentResponse
|
|
23
|
+
from asteroid_odyssey.models.agents_agent_sort_field import AgentsAgentSortField
|
|
24
|
+
from asteroid_odyssey.models.agents_execution_action_name import AgentsExecutionActionName
|
|
25
|
+
from asteroid_odyssey.models.agents_execution_activity import AgentsExecutionActivity
|
|
26
|
+
from asteroid_odyssey.models.agents_execution_activity_action_completed_info import AgentsExecutionActivityActionCompletedInfo
|
|
27
|
+
from asteroid_odyssey.models.agents_execution_activity_action_completed_payload import AgentsExecutionActivityActionCompletedPayload
|
|
28
|
+
from asteroid_odyssey.models.agents_execution_activity_action_failed_payload import AgentsExecutionActivityActionFailedPayload
|
|
29
|
+
from asteroid_odyssey.models.agents_execution_activity_action_started_info import AgentsExecutionActivityActionStartedInfo
|
|
30
|
+
from asteroid_odyssey.models.agents_execution_activity_action_started_payload import AgentsExecutionActivityActionStartedPayload
|
|
31
|
+
from asteroid_odyssey.models.agents_execution_activity_file_added_payload import AgentsExecutionActivityFileAddedPayload
|
|
32
|
+
from asteroid_odyssey.models.agents_execution_activity_generic_payload import AgentsExecutionActivityGenericPayload
|
|
33
|
+
from asteroid_odyssey.models.agents_execution_activity_payload_union import AgentsExecutionActivityPayloadUnion
|
|
34
|
+
from asteroid_odyssey.models.agents_execution_activity_playwright_script_generated_payload import AgentsExecutionActivityPlaywrightScriptGeneratedPayload
|
|
35
|
+
from asteroid_odyssey.models.agents_execution_activity_reasoning_payload import AgentsExecutionActivityReasoningPayload
|
|
36
|
+
from asteroid_odyssey.models.agents_execution_activity_status_changed_payload import AgentsExecutionActivityStatusChangedPayload
|
|
37
|
+
from asteroid_odyssey.models.agents_execution_activity_step_completed_payload import AgentsExecutionActivityStepCompletedPayload
|
|
38
|
+
from asteroid_odyssey.models.agents_execution_activity_step_started_payload import AgentsExecutionActivityStepStartedPayload
|
|
39
|
+
from asteroid_odyssey.models.agents_execution_activity_transitioned_node_payload import AgentsExecutionActivityTransitionedNodePayload
|
|
40
|
+
from asteroid_odyssey.models.agents_execution_activity_user_message_received_payload import AgentsExecutionActivityUserMessageReceivedPayload
|
|
41
|
+
from asteroid_odyssey.models.agents_execution_activity_workflow_updated_payload import AgentsExecutionActivityWorkflowUpdatedPayload
|
|
42
|
+
from asteroid_odyssey.models.agents_execution_agent_query_context_completed_details import AgentsExecutionAgentQueryContextCompletedDetails
|
|
43
|
+
from asteroid_odyssey.models.agents_execution_agent_query_context_started_details import AgentsExecutionAgentQueryContextStartedDetails
|
|
44
|
+
from asteroid_odyssey.models.agents_execution_awaiting_confirmation_payload import AgentsExecutionAwaitingConfirmationPayload
|
|
45
|
+
from asteroid_odyssey.models.agents_execution_cancel_reason import AgentsExecutionCancelReason
|
|
46
|
+
from asteroid_odyssey.models.agents_execution_cancelled_payload import AgentsExecutionCancelledPayload
|
|
47
|
+
from asteroid_odyssey.models.agents_execution_comment import AgentsExecutionComment
|
|
48
|
+
from asteroid_odyssey.models.agents_execution_completed_payload import AgentsExecutionCompletedPayload
|
|
49
|
+
from asteroid_odyssey.models.agents_execution_element_file_upload_completed_details import AgentsExecutionElementFileUploadCompletedDetails
|
|
50
|
+
from asteroid_odyssey.models.agents_execution_execution_result import AgentsExecutionExecutionResult
|
|
51
|
+
from asteroid_odyssey.models.agents_execution_ext_api_call_completed_details import AgentsExecutionExtApiCallCompletedDetails
|
|
52
|
+
from asteroid_odyssey.models.agents_execution_ext_get_mail_completed_details import AgentsExecutionExtGetMailCompletedDetails
|
|
53
|
+
from asteroid_odyssey.models.agents_execution_failed_payload import AgentsExecutionFailedPayload
|
|
54
|
+
from asteroid_odyssey.models.agents_execution_file_list_completed_details import AgentsExecutionFileListCompletedDetails
|
|
55
|
+
from asteroid_odyssey.models.agents_execution_file_read_completed_details import AgentsExecutionFileReadCompletedDetails
|
|
56
|
+
from asteroid_odyssey.models.agents_execution_file_stage_completed_details import AgentsExecutionFileStageCompletedDetails
|
|
57
|
+
from asteroid_odyssey.models.agents_execution_human_label import AgentsExecutionHumanLabel
|
|
58
|
+
from asteroid_odyssey.models.agents_execution_llm_call_purpose import AgentsExecutionLLMCallPurpose
|
|
59
|
+
from asteroid_odyssey.models.agents_execution_llm_call_started_details import AgentsExecutionLLMCallStartedDetails
|
|
60
|
+
from asteroid_odyssey.models.agents_execution_list_item import AgentsExecutionListItem
|
|
61
|
+
from asteroid_odyssey.models.agents_execution_nav_to_completed_details import AgentsExecutionNavToCompletedDetails
|
|
62
|
+
from asteroid_odyssey.models.agents_execution_nav_to_started_details import AgentsExecutionNavToStartedDetails
|
|
63
|
+
from asteroid_odyssey.models.agents_execution_node_details import AgentsExecutionNodeDetails
|
|
64
|
+
from asteroid_odyssey.models.agents_execution_obs_snapshot_with_selectors_completed_details import AgentsExecutionObsSnapshotWithSelectorsCompletedDetails
|
|
65
|
+
from asteroid_odyssey.models.agents_execution_paused_payload import AgentsExecutionPausedPayload
|
|
66
|
+
from asteroid_odyssey.models.agents_execution_rules_details import AgentsExecutionRulesDetails
|
|
67
|
+
from asteroid_odyssey.models.agents_execution_scratchpad_read_completed_details import AgentsExecutionScratchpadReadCompletedDetails
|
|
68
|
+
from asteroid_odyssey.models.agents_execution_scratchpad_read_started_details import AgentsExecutionScratchpadReadStartedDetails
|
|
69
|
+
from asteroid_odyssey.models.agents_execution_scratchpad_write_completed_details import AgentsExecutionScratchpadWriteCompletedDetails
|
|
70
|
+
from asteroid_odyssey.models.agents_execution_scratchpad_write_started_details import AgentsExecutionScratchpadWriteStartedDetails
|
|
71
|
+
from asteroid_odyssey.models.agents_execution_script_eval_completed_details import AgentsExecutionScriptEvalCompletedDetails
|
|
72
|
+
from asteroid_odyssey.models.agents_execution_script_eval_started_details import AgentsExecutionScriptEvalStartedDetails
|
|
73
|
+
from asteroid_odyssey.models.agents_execution_script_hybrid_playwright_completed_details import AgentsExecutionScriptHybridPlaywrightCompletedDetails
|
|
74
|
+
from asteroid_odyssey.models.agents_execution_script_hybrid_playwright_started_details import AgentsExecutionScriptHybridPlaywrightStartedDetails
|
|
75
|
+
from asteroid_odyssey.models.agents_execution_script_pad_run_function_completed_details import AgentsExecutionScriptPadRunFunctionCompletedDetails
|
|
76
|
+
from asteroid_odyssey.models.agents_execution_script_playwright_completed_details import AgentsExecutionScriptPlaywrightCompletedDetails
|
|
77
|
+
from asteroid_odyssey.models.agents_execution_script_playwright_started_details import AgentsExecutionScriptPlaywrightStartedDetails
|
|
78
|
+
from asteroid_odyssey.models.agents_execution_scriptpad_read_completed_details import AgentsExecutionScriptpadReadCompletedDetails
|
|
79
|
+
from asteroid_odyssey.models.agents_execution_scriptpad_read_started_details import AgentsExecutionScriptpadReadStartedDetails
|
|
80
|
+
from asteroid_odyssey.models.agents_execution_scriptpad_run_function_started_details import AgentsExecutionScriptpadRunFunctionStartedDetails
|
|
81
|
+
from asteroid_odyssey.models.agents_execution_scriptpad_search_replace_completed_details import AgentsExecutionScriptpadSearchReplaceCompletedDetails
|
|
82
|
+
from asteroid_odyssey.models.agents_execution_scriptpad_search_replace_started_details import AgentsExecutionScriptpadSearchReplaceStartedDetails
|
|
83
|
+
from asteroid_odyssey.models.agents_execution_scriptpad_write_completed_details import AgentsExecutionScriptpadWriteCompletedDetails
|
|
84
|
+
from asteroid_odyssey.models.agents_execution_sort_field import AgentsExecutionSortField
|
|
85
|
+
from asteroid_odyssey.models.agents_execution_status import AgentsExecutionStatus
|
|
86
|
+
from asteroid_odyssey.models.agents_execution_terminal_payload import AgentsExecutionTerminalPayload
|
|
87
|
+
from asteroid_odyssey.models.agents_execution_transition_details import AgentsExecutionTransitionDetails
|
|
88
|
+
from asteroid_odyssey.models.agents_execution_update_type import AgentsExecutionUpdateType
|
|
89
|
+
from asteroid_odyssey.models.agents_execution_user_messages_add_text_body import AgentsExecutionUserMessagesAddTextBody
|
|
90
|
+
from asteroid_odyssey.models.agents_execution_util_get_datetime_completed_details import AgentsExecutionUtilGetDatetimeCompletedDetails
|
|
91
|
+
from asteroid_odyssey.models.agents_execution_util_get_datetime_started_details import AgentsExecutionUtilGetDatetimeStartedDetails
|
|
92
|
+
from asteroid_odyssey.models.agents_execution_workflow_update import AgentsExecutionWorkflowUpdate
|
|
93
|
+
from asteroid_odyssey.models.agents_files_file import AgentsFilesFile
|
|
94
|
+
from asteroid_odyssey.models.agents_files_temp_file import AgentsFilesTempFile
|
|
95
|
+
from asteroid_odyssey.models.agents_files_temp_files_response import AgentsFilesTempFilesResponse
|
|
96
|
+
from asteroid_odyssey.models.agents_graph_models_nodes_properties_playwright_script_llm_var import AgentsGraphModelsNodesPropertiesPlaywrightScriptLLMVar
|
|
97
|
+
from asteroid_odyssey.models.agents_graph_models_nodes_properties_playwright_script_llm_var_type import AgentsGraphModelsNodesPropertiesPlaywrightScriptLLMVarType
|
|
98
|
+
from asteroid_odyssey.models.agents_graph_models_transitions_transition_type import AgentsGraphModelsTransitionsTransitionType
|
|
99
|
+
from asteroid_odyssey.models.agents_profile_agent_profile import AgentsProfileAgentProfile
|
|
100
|
+
from asteroid_odyssey.models.agents_profile_cookie import AgentsProfileCookie
|
|
101
|
+
from asteroid_odyssey.models.agents_profile_country_code import AgentsProfileCountryCode
|
|
102
|
+
from asteroid_odyssey.models.agents_profile_create_agent_profile_request import AgentsProfileCreateAgentProfileRequest
|
|
103
|
+
from asteroid_odyssey.models.agents_profile_credential import AgentsProfileCredential
|
|
104
|
+
from asteroid_odyssey.models.agents_profile_operating_system import AgentsProfileOperatingSystem
|
|
105
|
+
from asteroid_odyssey.models.agents_profile_proxy_type import AgentsProfileProxyType
|
|
106
|
+
from asteroid_odyssey.models.agents_profile_same_site import AgentsProfileSameSite
|
|
107
|
+
from asteroid_odyssey.models.agents_profile_sort_field import AgentsProfileSortField
|
|
108
|
+
from asteroid_odyssey.models.agents_profile_update_agent_profile_request import AgentsProfileUpdateAgentProfileRequest
|
|
109
|
+
from asteroid_odyssey.models.common_bad_request_error_body import CommonBadRequestErrorBody
|
|
110
|
+
from asteroid_odyssey.models.common_error import CommonError
|
|
111
|
+
from asteroid_odyssey.models.common_forbidden_error_body import CommonForbiddenErrorBody
|
|
112
|
+
from asteroid_odyssey.models.common_internal_server_error_body import CommonInternalServerErrorBody
|
|
113
|
+
from asteroid_odyssey.models.common_not_found_error_body import CommonNotFoundErrorBody
|
|
114
|
+
from asteroid_odyssey.models.common_os_error import CommonOSError
|
|
115
|
+
from asteroid_odyssey.models.common_sort_direction import CommonSortDirection
|
|
116
|
+
from asteroid_odyssey.models.common_unauthorized_error_body import CommonUnauthorizedErrorBody
|
|
117
|
+
from asteroid_odyssey.models.executions_list200_response import ExecutionsList200Response
|
|
118
|
+
from asteroid_odyssey.models.version import Version
|
|
@@ -19,7 +19,7 @@ import json
|
|
|
19
19
|
|
|
20
20
|
from pydantic import BaseModel, ConfigDict, Field, StrictInt
|
|
21
21
|
from typing import Any, ClassVar, Dict, List
|
|
22
|
-
from asteroid_odyssey.
|
|
22
|
+
from asteroid_odyssey.models.agents_agent_base import AgentsAgentBase
|
|
23
23
|
from typing import Optional, Set
|
|
24
24
|
from typing_extensions import Self
|
|
25
25
|
|