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
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
asteroid_odyssey/__init__.py,sha256=MkpmyXxAk3SVsCRy1aAHLDpCDoTXd73FO6gS6bxJwSE,21391
|
|
2
|
+
asteroid_odyssey/api_client.py,sha256=vk7bgx6L2b1SvKdTD9RRCY2d1rRvHaI6QoQy0KiFZ8A,27723
|
|
3
|
+
asteroid_odyssey/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
4
|
+
asteroid_odyssey/configuration.py,sha256=ICQFu0VrF-OoEScevweF58q4R7IMpP_-r9x60nuyba4,18903
|
|
5
|
+
asteroid_odyssey/exceptions.py,sha256=UnVNkXG6lZtS5J3YpOcPu3rg5SUP1XRwSyYJl30rM0M,6474
|
|
6
|
+
asteroid_odyssey/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
+
asteroid_odyssey/rest.py,sha256=PrQd_XeVrCJrR7bNi85Sv2BKmisgadkYkSvVeXa7xPs,9473
|
|
8
|
+
asteroid_odyssey/api/__init__.py,sha256=likCMpf7qYN0xwRbFo-DABPSqFclPQtgcXLHUhskPhc,283
|
|
9
|
+
asteroid_odyssey/api/agent_profiles_api.py,sha256=EzvS-86oCwa_9xF5XBAy5Z0VaUvJmzcs-ZVbEw16L0U,74023
|
|
10
|
+
asteroid_odyssey/api/agents_api.py,sha256=EWiMV7wcVBMdas96xbWBNw2mqIs3b04G6S1URXW12-4,26482
|
|
11
|
+
asteroid_odyssey/api/execution_api.py,sha256=r1oi9Be6MynnuzsnfkrtkORqflxZWhi33-ZNJ35YGOw,62700
|
|
12
|
+
asteroid_odyssey/api/files_api.py,sha256=3eelhlLfOhN53THJ90LfdLo3kdCnnw5Qml83dtWqPC4,35447
|
|
13
|
+
asteroid_odyssey/models/__init__.py,sha256=OOPbUQiBu9uyOJNofi2JOKw1Qg5u5zD0kNw153BYMPQ,11766
|
|
14
|
+
asteroid_odyssey/models/agent_list200_response.py,sha256=fZNz18hRSrvKPHPAe16A5p1K1RopKj0Unn6Npglhu7w,3235
|
|
15
|
+
asteroid_odyssey/models/agent_profile_clear_browser_cache200_response.py,sha256=R7svpgREt63we4utbMFsBPxw2-oycWLwi5xfINc6wL4,2591
|
|
16
|
+
asteroid_odyssey/models/agent_profiles_list200_response.py,sha256=OHvPOC6Kzo0jLWgkbx8TnkRs9w4VlAMsghH6gpyitdc,3308
|
|
17
|
+
asteroid_odyssey/models/agents_agent_base.py,sha256=nT6EXdabshyZ-ncWbA4tqNmGH1C-I5sFS8U9FgUAFd8,2955
|
|
18
|
+
asteroid_odyssey/models/agents_agent_execute_agent_request.py,sha256=1RhFMqaGXZghctUlChVCVpP8NZgLok8jY7PmopvBNzY,4445
|
|
19
|
+
asteroid_odyssey/models/agents_agent_execute_agent_response.py,sha256=iPx3FB9Che9HSG5DBvCq4SUZonxch-R7XkxlXe9qqvM,2661
|
|
20
|
+
asteroid_odyssey/models/agents_agent_sort_field.py,sha256=vxZxy30RGb858YI2WH8Z1U_vV9yRzKnaCCRAJj9Xek0,780
|
|
21
|
+
asteroid_odyssey/models/agents_execution_action_name.py,sha256=NT6N_rccFXAMxCKxoPVVQhS5GVPVVysP8lRD53B4d4g,3147
|
|
22
|
+
asteroid_odyssey/models/agents_execution_activity.py,sha256=nzxwTGfrO3D8eW1-uGIx3ezERAiJ7gb3VxF3aH5Za2M,3214
|
|
23
|
+
asteroid_odyssey/models/agents_execution_activity_action_completed_info.py,sha256=PQquRIefQ99S_yhR5WdnjcqZmOEKVg99u3BI21A-dNo,28739
|
|
24
|
+
asteroid_odyssey/models/agents_execution_activity_action_completed_payload.py,sha256=2n2c7eAnj9sXEZwvVDqKOTQOgIzHJaSx9i_qLDEEcfA,3974
|
|
25
|
+
asteroid_odyssey/models/agents_execution_activity_action_failed_payload.py,sha256=Sgu-KlxoZJVTr1tXKJXQpvmiM8f3tK-MpoWlc2qmdGI,3470
|
|
26
|
+
asteroid_odyssey/models/agents_execution_activity_action_started_info.py,sha256=J05CWqINkJlkcypKkQt_V0pOWmIM4Ps47XhRo2cseuk,19329
|
|
27
|
+
asteroid_odyssey/models/agents_execution_activity_action_started_payload.py,sha256=69C_3WI52QG06AyNMAlCYdTlyEyOgerng9EB1X3CV0c,3845
|
|
28
|
+
asteroid_odyssey/models/agents_execution_activity_file_added_payload.py,sha256=VISsA4l1GjtHIdK5SxaQWuiQZx-9kCYGYpqeCNwHA4g,3820
|
|
29
|
+
asteroid_odyssey/models/agents_execution_activity_generic_payload.py,sha256=ClyP-v4Ck3zq7ns6hNb6ZosxOn4Kd2raLQSJWIjDPmM,2986
|
|
30
|
+
asteroid_odyssey/models/agents_execution_activity_payload_union.py,sha256=aeNOSUdX9jr-XrdvPFYOA8cOff2U3jBZ-JP7NfyPSFI,21583
|
|
31
|
+
asteroid_odyssey/models/agents_execution_activity_playwright_script_generated_payload.py,sha256=oYkKCZHMAofFEonK8NbYEdbJR2fGY9w2Rb34FeR6ItM,4318
|
|
32
|
+
asteroid_odyssey/models/agents_execution_activity_reasoning_payload.py,sha256=eRIZ54HaiUNDbUACmiEShc32FNO8Auu3MAJRyFoUVYs,3006
|
|
33
|
+
asteroid_odyssey/models/agents_execution_activity_status_changed_payload.py,sha256=Xulhum0cYJfgXklZE5rP86urPlTH_mJGRAlEW0F-fF8,6164
|
|
34
|
+
asteroid_odyssey/models/agents_execution_activity_step_completed_payload.py,sha256=TxWr78dmHY3DZ88yXci1AmVtetSzMWn8nFEnhGmZuEQ,3076
|
|
35
|
+
asteroid_odyssey/models/agents_execution_activity_step_started_payload.py,sha256=mSzcUN46hbTFuxPrVLeQL0wZ9aXVsBS68djbrquQ7o0,3064
|
|
36
|
+
asteroid_odyssey/models/agents_execution_activity_transitioned_node_payload.py,sha256=yK4Wo_Q3NfRUhMGBlQ6INwyUJ1LmlU-_1dIPXDiIRgI,3853
|
|
37
|
+
asteroid_odyssey/models/agents_execution_activity_user_message_received_payload.py,sha256=thhGRBVaAo5bMtwLisOeTbhJd0EUaiZvE3-fzsb0aeY,3170
|
|
38
|
+
asteroid_odyssey/models/agents_execution_activity_workflow_updated_payload.py,sha256=YGLzyKgsXROjAQxzZqNI-8968px0HizQaFno9WqbLW0,3715
|
|
39
|
+
asteroid_odyssey/models/agents_execution_agent_query_context_completed_details.py,sha256=uCXll7oeFrhXI336OSNxbi0sgdL82lbJQlDP4q3Ew60,3105
|
|
40
|
+
asteroid_odyssey/models/agents_execution_agent_query_context_started_details.py,sha256=WoqM20eJeRGKoT9HLtmMbMLCyUNpr0zmLmbQxxjJD1U,3024
|
|
41
|
+
asteroid_odyssey/models/agents_execution_awaiting_confirmation_payload.py,sha256=ebQJgeBSCQpLM_Z601NFSg8xQF9b5MsvGVY59dgCWW4,2595
|
|
42
|
+
asteroid_odyssey/models/agents_execution_cancel_reason.py,sha256=oOJGrFL0N4BYFQLcT8WfBCbhk2ccyly733vqwEd-Ewc,843
|
|
43
|
+
asteroid_odyssey/models/agents_execution_cancelled_payload.py,sha256=jzzKXmiYDGh15AdDzcJU0-d9APwq9ZmJdDxggXPavjE,2653
|
|
44
|
+
asteroid_odyssey/models/agents_execution_comment.py,sha256=Osi4WLBPUMXTRmlJWNoh0svAY81MeGw97TF_Iqs0seM,3519
|
|
45
|
+
asteroid_odyssey/models/agents_execution_completed_payload.py,sha256=V0ZgD5UoGRBKqi-c0t2mM7M_D37DKb3z0Bvm2xKh3HQ,3060
|
|
46
|
+
asteroid_odyssey/models/agents_execution_element_file_upload_completed_details.py,sha256=1snXxE6gAILCwVSKborLGS5X5YbuEj_vdEt1BYVFbHw,3082
|
|
47
|
+
asteroid_odyssey/models/agents_execution_execution_result.py,sha256=YnqkQOqE8UmwsFArAYwx6eFGvilacRJisBbqZU9tnXw,3560
|
|
48
|
+
asteroid_odyssey/models/agents_execution_ext_api_call_completed_details.py,sha256=TelX_oqjqEpWxq6tl50cxQ2JFBnks2_Y-nobcbRvX1E,3476
|
|
49
|
+
asteroid_odyssey/models/agents_execution_ext_get_mail_completed_details.py,sha256=EUcy_L7suF7GwAmG0FUnb22-o3J7vG-n5IgO8x9q_IU,3123
|
|
50
|
+
asteroid_odyssey/models/agents_execution_failed_payload.py,sha256=9-m1KXs_KyjonDTnmadCDZcZZzUeh7DtW5AS-Bcu7ZA,2952
|
|
51
|
+
asteroid_odyssey/models/agents_execution_file_list_completed_details.py,sha256=7HT4SLGnjBeBQ9e4-Ly260PHt1ZqYWZbqwe1HxOc5oE,3026
|
|
52
|
+
asteroid_odyssey/models/agents_execution_file_read_completed_details.py,sha256=0tB0oJeKm3BSZqW54oDxGGHQFT0_R10W9G7bKrOJXeU,3352
|
|
53
|
+
asteroid_odyssey/models/agents_execution_file_stage_completed_details.py,sha256=aowoJrFg-jwZQ3ImE1WRdMR-8gS2qo4bxrBavbQSCbk,3032
|
|
54
|
+
asteroid_odyssey/models/agents_execution_human_label.py,sha256=ewRTI0UsUuzPts1xk80aD7H4sGeH7J7qi49mLvLQJqA,3218
|
|
55
|
+
asteroid_odyssey/models/agents_execution_list_item.py,sha256=kr-DGEpCScDq88DSVhFLpEgyWM7stbxzn75mfuv8w1Q,7253
|
|
56
|
+
asteroid_odyssey/models/agents_execution_llm_call_purpose.py,sha256=ZyMEExVLDmrRDU25GWEePHAnDhKFEgJmUaU4h7ij2lU,1065
|
|
57
|
+
asteroid_odyssey/models/agents_execution_llm_call_started_details.py,sha256=90w2yZ2DP7jKndVr0qNx2uFaJfRJTaXWDn1J08UwsN4,3090
|
|
58
|
+
asteroid_odyssey/models/agents_execution_nav_to_completed_details.py,sha256=x3FB2vujx1Kedlplfe6jaZ6KhchFuX0KCliZbGgUDzE,3036
|
|
59
|
+
asteroid_odyssey/models/agents_execution_nav_to_started_details.py,sha256=lphdKOrjjT08uNkk4LEHEOcZZuxgx7M_yDtGsK0Nybo,2942
|
|
60
|
+
asteroid_odyssey/models/agents_execution_node_details.py,sha256=ER2CJB4e_zIJyBlDxoi-oh3DyOEdzG7lQKo_GWLZ-KI,2779
|
|
61
|
+
asteroid_odyssey/models/agents_execution_obs_snapshot_with_selectors_completed_details.py,sha256=7IvwnF8lJz49WwoOIdClHRk5UWLTWNeO-D6YS0NAErE,3137
|
|
62
|
+
asteroid_odyssey/models/agents_execution_paused_payload.py,sha256=slW-OsLyXs3JyDE9Zx8YGIU2y0msgoKCbHDG8IkYG8k,2539
|
|
63
|
+
asteroid_odyssey/models/agents_execution_rules_details.py,sha256=6QJ_XkLzSlgxxJqEjnM2jKzgbMkskHqdNSWG4ri_eNk,2531
|
|
64
|
+
asteroid_odyssey/models/agents_execution_scratchpad_read_completed_details.py,sha256=O-uAgkiTNSMMO6mXOREsdigyXaYDMdm0X6OAr0LuqaM,3232
|
|
65
|
+
asteroid_odyssey/models/agents_execution_scratchpad_read_started_details.py,sha256=LHzefgHTPiQGvo97t5fz4e8EM6P7ZpdSllFe4kzB82g,3261
|
|
66
|
+
asteroid_odyssey/models/agents_execution_scratchpad_write_completed_details.py,sha256=mTNt46NsD8MJVHx3FoqrAuZ5BaWZ8iuBUZpzZypsoe0,3633
|
|
67
|
+
asteroid_odyssey/models/agents_execution_scratchpad_write_started_details.py,sha256=Wc7H4oUeZQrgPtyBtvJRTsAwT4T3Bw0RPvrA57jMXoE,3269
|
|
68
|
+
asteroid_odyssey/models/agents_execution_script_eval_completed_details.py,sha256=bkTo0mmEz-NlFOJno06-bySg6c6SPUpYoz1-kA5HCto,3213
|
|
69
|
+
asteroid_odyssey/models/agents_execution_script_eval_started_details.py,sha256=vsRiUewcMzzuBnG2g1IbMKTtxfXIL6ZRcRrtqa5P19g,3174
|
|
70
|
+
asteroid_odyssey/models/agents_execution_script_hybrid_playwright_completed_details.py,sha256=j6-RstRgFK7PLKoolCGTN9udP-ywKjMS0R7gd6itqX4,3448
|
|
71
|
+
asteroid_odyssey/models/agents_execution_script_hybrid_playwright_started_details.py,sha256=RAIS0GZu3HfLr2J0pgBJMRjYH7_m0q8krvrpVkHyKpk,3128
|
|
72
|
+
asteroid_odyssey/models/agents_execution_script_pad_run_function_completed_details.py,sha256=VCvuTYW8SkhzDKa9laEbq2MqTK8JhXAhpsOJfg_Moh4,3436
|
|
73
|
+
asteroid_odyssey/models/agents_execution_script_playwright_completed_details.py,sha256=kzZeNUt9GjpuzegQU0l3c3Ui5yJCsnbAY4UC2EAqgAs,3410
|
|
74
|
+
asteroid_odyssey/models/agents_execution_script_playwright_started_details.py,sha256=pPvKZwP6On90isiWWuGVfJsXG-Z2Q0bZK2f3EYUCsAg,3090
|
|
75
|
+
asteroid_odyssey/models/agents_execution_scriptpad_read_completed_details.py,sha256=pBxpEg8tJJFZUu_A0t42K0S_OnORBuHiLcgk4EBi4rg,3014
|
|
76
|
+
asteroid_odyssey/models/agents_execution_scriptpad_read_started_details.py,sha256=FbqknBcF0l8bV0g39KwsCJdOo2oculw1MBgSTfFDD4Y,3082
|
|
77
|
+
asteroid_odyssey/models/agents_execution_scriptpad_run_function_started_details.py,sha256=GEfH5hWrZLZQQjQmWQnAH6O-rxeOMs0Prftjsl9y6ss,3419
|
|
78
|
+
asteroid_odyssey/models/agents_execution_scriptpad_search_replace_completed_details.py,sha256=R2kx38nymkIiAC0ZM4EaXKU0Nm940MhRMHI97PMIKL0,3873
|
|
79
|
+
asteroid_odyssey/models/agents_execution_scriptpad_search_replace_started_details.py,sha256=13nfIHMVnEzS5-taDeCqlSe0s89yvjtblkpSHAYjqwg,3266
|
|
80
|
+
asteroid_odyssey/models/agents_execution_scriptpad_write_completed_details.py,sha256=CwhWAkk1ODTtZgKB0jF1el9QOzVa6uKPOajrU8KIwGg,3450
|
|
81
|
+
asteroid_odyssey/models/agents_execution_sort_field.py,sha256=KVc_CoONxPHD8MQ2x9T5Y9ejbQYzdv0j1e07cZeWe6I,818
|
|
82
|
+
asteroid_odyssey/models/agents_execution_status.py,sha256=xGM7e94JQGqf9tA4nl0hpmJWFLTIyLhPDLR-bnx_QuY,977
|
|
83
|
+
asteroid_odyssey/models/agents_execution_terminal_payload.py,sha256=AkN6f_0fkSKasKlssTzKIFu6RDPm4n8gzmggy6ulZtw,3351
|
|
84
|
+
asteroid_odyssey/models/agents_execution_transition_details.py,sha256=v9DuY5uODsDIO49hxUcn8gfUv7fED7G6Nz2Qf95iT2o,2755
|
|
85
|
+
asteroid_odyssey/models/agents_execution_update_type.py,sha256=2oVD53MapRhp93RB9fBDltn9ZWlR0rNApk-dLR5P-Rg,803
|
|
86
|
+
asteroid_odyssey/models/agents_execution_user_messages_add_text_body.py,sha256=RvfuJaVRDkEunpPBdLBVEfj7muuIokoQXHxZJ_o1FHE,2583
|
|
87
|
+
asteroid_odyssey/models/agents_execution_util_get_datetime_completed_details.py,sha256=1FzwiTi7lNmRbJ6WfyYrKGnNkuWNdIf8vJTyiRYNulE,3407
|
|
88
|
+
asteroid_odyssey/models/agents_execution_util_get_datetime_started_details.py,sha256=hReMWYIPNZxHIM5MfzQbMt4MFGQHgVhwuh5qxEjoaJg,3112
|
|
89
|
+
asteroid_odyssey/models/agents_execution_workflow_update.py,sha256=plzQGg3hkTIS4O1Bf8puyo2O0a-0UgWh1YGEPzjHBj4,4368
|
|
90
|
+
asteroid_odyssey/models/agents_files_file.py,sha256=tJkDmONOC5TCZS7O4Cizn5neR5RebUG3NokiGfjTb-E,3613
|
|
91
|
+
asteroid_odyssey/models/agents_files_temp_file.py,sha256=XjavH68R-o3d_EuVRaFNbnaJZXoiaSMMeIornmk2LJA,2552
|
|
92
|
+
asteroid_odyssey/models/agents_files_temp_files_response.py,sha256=QBUpg40FdZ_Sax4uyLElDjIyqK_5Y3V1fuq_JtcFXeQ,3113
|
|
93
|
+
asteroid_odyssey/models/agents_graph_models_nodes_properties_playwright_script_llm_var.py,sha256=hRX54qN8R-Ib_A3LVVJKZiVc0encVVXc-4mje80wFy8,3005
|
|
94
|
+
asteroid_odyssey/models/agents_graph_models_nodes_properties_playwright_script_llm_var_type.py,sha256=lu_J1UrE9WKhzNJV34kVDxKxsjV3fvFBJjnnB0LsgIE,914
|
|
95
|
+
asteroid_odyssey/models/agents_graph_models_transitions_transition_type.py,sha256=QnUO0ARjDeBRhPdRiR2emGrSkD8lIJnNgpzG7OHzeTg,882
|
|
96
|
+
asteroid_odyssey/models/agents_profile_agent_profile.py,sha256=FZNmhJpBnWt-_hPoSGYOtm95jT0N_B1ktuxv0xc_Qzo,6556
|
|
97
|
+
asteroid_odyssey/models/agents_profile_cookie.py,sha256=972PRRMXbzZC5ed2Ql2W-1s_ZvrZwRR15BEQXtRziog,4250
|
|
98
|
+
asteroid_odyssey/models/agents_profile_country_code.py,sha256=fJpWW77odDYMc5xssM8LP-v9KkdHHwTGNncvhsyGHr4,888
|
|
99
|
+
asteroid_odyssey/models/agents_profile_create_agent_profile_request.py,sha256=F7aEM-oK4khQgu9cVPy47w5050iho8demONBbRtkEhI,6590
|
|
100
|
+
asteroid_odyssey/models/agents_profile_credential.py,sha256=4RtP_-koDtuKADkR0JIXPUIGVjAuFrkrqiVlWs6UbmI,3246
|
|
101
|
+
asteroid_odyssey/models/agents_profile_operating_system.py,sha256=xQCfTpEEMtzXtTnNcWerahiL7J4_J1f-VUm-c74Rxig,814
|
|
102
|
+
asteroid_odyssey/models/agents_profile_proxy_type.py,sha256=NyLZ_oUcfOz47MFZhnXfx_9oe25gdZFGYykC83ZoP_Q,831
|
|
103
|
+
asteroid_odyssey/models/agents_profile_same_site.py,sha256=NBMQWIzxbGPZwghb4r7wl9lHqisvgXNzpMMNf8RYb9Q,800
|
|
104
|
+
asteroid_odyssey/models/agents_profile_sort_field.py,sha256=mLH_ycO9YNwwSMExi193Ty7MqyiEUvjNxd5FBOUUdHA,837
|
|
105
|
+
asteroid_odyssey/models/agents_profile_update_agent_profile_request.py,sha256=JbD9yluviQeM9hnc1iEccXcbjs-3v2ROjPo0zTL7nvE,6679
|
|
106
|
+
asteroid_odyssey/models/common_bad_request_error_body.py,sha256=cZQcZH6c2RmQleZe57-mfUsCKW74lGGtVMWbJFGc1ho,2889
|
|
107
|
+
asteroid_odyssey/models/common_error.py,sha256=to8zl1yPqcf8hRXEZeOrhuA_jWhmpaMmly5Y_Xl129k,2551
|
|
108
|
+
asteroid_odyssey/models/common_forbidden_error_body.py,sha256=9yADAujD_9eTW4BtZ7oYifmFCDTpAw-j1jEEJhwdAVs,2885
|
|
109
|
+
asteroid_odyssey/models/common_internal_server_error_body.py,sha256=DDtB3LOeVTtvdWhTEthmobNL-0BsuhAd7Zh0ZAb4Mgs,2905
|
|
110
|
+
asteroid_odyssey/models/common_not_found_error_body.py,sha256=BAVAweVD5ltGL2lWfdDNwaq82CI4iVkPVE_E9JfEpi8,2881
|
|
111
|
+
asteroid_odyssey/models/common_os_error.py,sha256=5hF0Q4D2sYdRe-F-mDT1FmD5yH4PcbKRlm8VkqDtBC4,2483
|
|
112
|
+
asteroid_odyssey/models/common_sort_direction.py,sha256=UBW99PM3QRGRRE7dB5OSBhmhogmsXQQsrw66j0fg_xc,763
|
|
113
|
+
asteroid_odyssey/models/common_unauthorized_error_body.py,sha256=Ng62vZVuPWEkTvdnYimbItSKhUGT9G52ZOapMQ2O7Xg,2897
|
|
114
|
+
asteroid_odyssey/models/executions_list200_response.py,sha256=hbMbbsh7F8Cjl3S2hhRkcH4cvHCL24TVz8fwhGE9LfI,3288
|
|
115
|
+
asteroid_odyssey/models/version.py,sha256=Vjiri_a5CcDJ1lSziRqif5HuFpaxneVDLIB1r8SFIkE,707
|
|
116
|
+
asteroid_odyssey-1.6.0.dist-info/METADATA,sha256=xmHNH4Ukv1_VZcJeZpVmjvOlrIHJ0chMsEEaVYGVBvk,1895
|
|
117
|
+
asteroid_odyssey-1.6.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
118
|
+
asteroid_odyssey-1.6.0.dist-info/top_level.txt,sha256=h4T6NKscnThJ4Nhzors2NKlJeZzepnM7XvDgsnfi5HA,17
|
|
119
|
+
asteroid_odyssey-1.6.0.dist-info/RECORD,,
|
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
# coding: utf-8
|
|
2
|
-
|
|
3
|
-
# flake8: noqa
|
|
4
|
-
|
|
5
|
-
"""
|
|
6
|
-
Asteroid Agents API
|
|
7
|
-
|
|
8
|
-
Version 1 of the Asteroid Agents API
|
|
9
|
-
|
|
10
|
-
The version of the OpenAPI document: v1.0.0
|
|
11
|
-
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
12
|
-
|
|
13
|
-
Do not edit the class manually.
|
|
14
|
-
""" # noqa: E501
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
__version__ = "1.0.0"
|
|
18
|
-
|
|
19
|
-
# import apis into sdk package
|
|
20
|
-
from asteroid_odyssey.agents_v1_gen.api.api_api import APIApi
|
|
21
|
-
from asteroid_odyssey.agents_v1_gen.api.agent_profile_api import AgentProfileApi
|
|
22
|
-
from asteroid_odyssey.agents_v1_gen.api.execution_api import ExecutionApi
|
|
23
|
-
|
|
24
|
-
# import ApiClient
|
|
25
|
-
from asteroid_odyssey.agents_v1_gen.api_response import ApiResponse
|
|
26
|
-
from asteroid_odyssey.agents_v1_gen.api_client import ApiClient
|
|
27
|
-
from asteroid_odyssey.agents_v1_gen.configuration import Configuration
|
|
28
|
-
from asteroid_odyssey.agents_v1_gen.exceptions import OpenApiException
|
|
29
|
-
from asteroid_odyssey.agents_v1_gen.exceptions import ApiTypeError
|
|
30
|
-
from asteroid_odyssey.agents_v1_gen.exceptions import ApiValueError
|
|
31
|
-
from asteroid_odyssey.agents_v1_gen.exceptions import ApiKeyError
|
|
32
|
-
from asteroid_odyssey.agents_v1_gen.exceptions import ApiAttributeError
|
|
33
|
-
from asteroid_odyssey.agents_v1_gen.exceptions import ApiException
|
|
34
|
-
|
|
35
|
-
# import models into sdk package
|
|
36
|
-
from asteroid_odyssey.agents_v1_gen.models.agent_profile import AgentProfile
|
|
37
|
-
from asteroid_odyssey.agents_v1_gen.models.browser_session_recording_response import BrowserSessionRecordingResponse
|
|
38
|
-
from asteroid_odyssey.agents_v1_gen.models.cookie import Cookie
|
|
39
|
-
from asteroid_odyssey.agents_v1_gen.models.country_code import CountryCode
|
|
40
|
-
from asteroid_odyssey.agents_v1_gen.models.create_agent_profile_request import CreateAgentProfileRequest
|
|
41
|
-
from asteroid_odyssey.agents_v1_gen.models.credential import Credential
|
|
42
|
-
from asteroid_odyssey.agents_v1_gen.models.delete_agent_profile200_response import DeleteAgentProfile200Response
|
|
43
|
-
from asteroid_odyssey.agents_v1_gen.models.error_response import ErrorResponse
|
|
44
|
-
from asteroid_odyssey.agents_v1_gen.models.execution_response import ExecutionResponse
|
|
45
|
-
from asteroid_odyssey.agents_v1_gen.models.execution_result import ExecutionResult
|
|
46
|
-
from asteroid_odyssey.agents_v1_gen.models.execution_result_response import ExecutionResultResponse
|
|
47
|
-
from asteroid_odyssey.agents_v1_gen.models.execution_status_response import ExecutionStatusResponse
|
|
48
|
-
from asteroid_odyssey.agents_v1_gen.models.health_check200_response import HealthCheck200Response
|
|
49
|
-
from asteroid_odyssey.agents_v1_gen.models.health_check500_response import HealthCheck500Response
|
|
50
|
-
from asteroid_odyssey.agents_v1_gen.models.proxy_type import ProxyType
|
|
51
|
-
from asteroid_odyssey.agents_v1_gen.models.status import Status
|
|
52
|
-
from asteroid_odyssey.agents_v1_gen.models.structured_agent_execution_request import StructuredAgentExecutionRequest
|
|
53
|
-
from asteroid_odyssey.agents_v1_gen.models.update_agent_profile_request import UpdateAgentProfileRequest
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
# flake8: noqa
|
|
2
|
-
|
|
3
|
-
# import apis into api package
|
|
4
|
-
from asteroid_odyssey.agents_v1_gen.api.api_api import APIApi
|
|
5
|
-
from asteroid_odyssey.agents_v1_gen.api.agent_profile_api import AgentProfileApi
|
|
6
|
-
from asteroid_odyssey.agents_v1_gen.api.execution_api import ExecutionApi
|
|
7
|
-
|