autobyteus 1.1.7__py3-none-any.whl → 1.1.9__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.
- autobyteus/agent/bootstrap_steps/system_prompt_processing_step.py +6 -2
- autobyteus/agent/handlers/inter_agent_message_event_handler.py +17 -19
- autobyteus/agent/handlers/llm_complete_response_received_event_handler.py +6 -3
- autobyteus/agent/handlers/tool_result_event_handler.py +86 -23
- autobyteus/agent/handlers/user_input_message_event_handler.py +19 -10
- autobyteus/agent/hooks/base_phase_hook.py +17 -0
- autobyteus/agent/hooks/hook_registry.py +15 -27
- autobyteus/agent/input_processor/base_user_input_processor.py +17 -1
- autobyteus/agent/input_processor/processor_registry.py +15 -27
- autobyteus/agent/llm_response_processor/base_processor.py +17 -1
- autobyteus/agent/llm_response_processor/processor_registry.py +15 -24
- autobyteus/agent/llm_response_processor/provider_aware_tool_usage_processor.py +14 -0
- autobyteus/agent/message/agent_input_user_message.py +15 -2
- autobyteus/agent/message/send_message_to.py +1 -1
- autobyteus/agent/processor_option.py +17 -0
- autobyteus/agent/sender_type.py +1 -0
- autobyteus/agent/system_prompt_processor/base_processor.py +17 -1
- autobyteus/agent/system_prompt_processor/processor_registry.py +15 -27
- autobyteus/agent/system_prompt_processor/tool_manifest_injector_processor.py +10 -0
- autobyteus/agent/tool_execution_result_processor/base_processor.py +17 -1
- autobyteus/agent/tool_execution_result_processor/processor_registry.py +15 -1
- autobyteus/agent/workspace/base_workspace.py +1 -1
- autobyteus/agent/workspace/workspace_definition.py +1 -1
- autobyteus/agent_team/bootstrap_steps/team_context_initialization_step.py +1 -1
- autobyteus/agent_team/streaming/agent_team_stream_event_payloads.py +2 -2
- autobyteus/agent_team/task_notification/__init__.py +4 -0
- autobyteus/agent_team/task_notification/activation_policy.py +70 -0
- autobyteus/agent_team/task_notification/system_event_driven_agent_task_notifier.py +56 -122
- autobyteus/agent_team/task_notification/task_activator.py +66 -0
- autobyteus/cli/agent_team_tui/state.py +17 -20
- autobyteus/cli/agent_team_tui/widgets/focus_pane.py +1 -1
- autobyteus/cli/agent_team_tui/widgets/task_board_panel.py +1 -1
- autobyteus/events/event_types.py +2 -2
- autobyteus/llm/api/gemini_llm.py +45 -54
- autobyteus/llm/api/qwen_llm.py +25 -0
- autobyteus/llm/autobyteus_provider.py +8 -2
- autobyteus/llm/llm_factory.py +16 -0
- autobyteus/multimedia/audio/api/autobyteus_audio_client.py +4 -1
- autobyteus/multimedia/audio/api/gemini_audio_client.py +84 -153
- autobyteus/multimedia/audio/audio_client_factory.py +47 -22
- autobyteus/multimedia/audio/audio_model.py +13 -6
- autobyteus/multimedia/audio/autobyteus_audio_provider.py +8 -2
- autobyteus/multimedia/audio/base_audio_client.py +3 -1
- autobyteus/multimedia/image/api/autobyteus_image_client.py +12 -5
- autobyteus/multimedia/image/api/gemini_image_client.py +72 -130
- autobyteus/multimedia/image/api/openai_image_client.py +4 -2
- autobyteus/multimedia/image/autobyteus_image_provider.py +8 -2
- autobyteus/multimedia/image/base_image_client.py +6 -2
- autobyteus/multimedia/image/image_client_factory.py +20 -19
- autobyteus/multimedia/image/image_model.py +13 -6
- autobyteus/multimedia/providers.py +1 -0
- autobyteus/task_management/__init__.py +9 -10
- autobyteus/task_management/base_task_board.py +14 -6
- autobyteus/task_management/converters/__init__.py +0 -2
- autobyteus/task_management/converters/task_board_converter.py +7 -16
- autobyteus/task_management/events.py +6 -6
- autobyteus/task_management/in_memory_task_board.py +48 -38
- autobyteus/task_management/schemas/__init__.py +2 -2
- autobyteus/task_management/schemas/{plan_definition.py → task_definition.py} +5 -6
- autobyteus/task_management/schemas/task_status_report.py +0 -1
- autobyteus/task_management/task.py +60 -0
- autobyteus/task_management/tools/__init__.py +4 -2
- autobyteus/task_management/tools/get_my_tasks.py +80 -0
- autobyteus/task_management/tools/get_task_board_status.py +3 -3
- autobyteus/task_management/tools/publish_task.py +77 -0
- autobyteus/task_management/tools/publish_tasks.py +74 -0
- autobyteus/task_management/tools/update_task_status.py +5 -5
- autobyteus/tools/__init__.py +3 -1
- autobyteus/tools/base_tool.py +4 -4
- autobyteus/tools/browser/session_aware/browser_session_aware_navigate_to.py +1 -1
- autobyteus/tools/browser/session_aware/browser_session_aware_web_element_trigger.py +1 -1
- autobyteus/tools/browser/session_aware/browser_session_aware_webpage_reader.py +1 -1
- autobyteus/tools/browser/session_aware/browser_session_aware_webpage_screenshot_taker.py +1 -1
- autobyteus/tools/browser/standalone/navigate_to.py +1 -1
- autobyteus/tools/browser/standalone/web_page_pdf_generator.py +1 -1
- autobyteus/tools/browser/standalone/webpage_image_downloader.py +1 -1
- autobyteus/tools/browser/standalone/webpage_reader.py +1 -1
- autobyteus/tools/browser/standalone/webpage_screenshot_taker.py +1 -1
- autobyteus/tools/functional_tool.py +1 -1
- autobyteus/tools/google_search.py +1 -1
- autobyteus/tools/image_downloader.py +1 -1
- autobyteus/tools/mcp/factory.py +1 -1
- autobyteus/tools/mcp/schema_mapper.py +1 -1
- autobyteus/tools/mcp/tool.py +1 -1
- autobyteus/tools/multimedia/__init__.py +2 -0
- autobyteus/tools/multimedia/audio_tools.py +10 -20
- autobyteus/tools/multimedia/image_tools.py +21 -22
- autobyteus/tools/multimedia/media_reader_tool.py +117 -0
- autobyteus/tools/pydantic_schema_converter.py +1 -1
- autobyteus/tools/registry/tool_definition.py +1 -1
- autobyteus/tools/timer.py +1 -1
- autobyteus/tools/tool_meta.py +1 -1
- autobyteus/tools/usage/formatters/default_json_example_formatter.py +1 -1
- autobyteus/tools/usage/formatters/default_xml_example_formatter.py +1 -1
- autobyteus/tools/usage/formatters/default_xml_schema_formatter.py +59 -3
- autobyteus/tools/usage/formatters/gemini_json_example_formatter.py +1 -1
- autobyteus/tools/usage/formatters/google_json_example_formatter.py +1 -1
- autobyteus/tools/usage/formatters/openai_json_example_formatter.py +1 -1
- autobyteus/{tools → utils}/parameter_schema.py +1 -1
- {autobyteus-1.1.7.dist-info → autobyteus-1.1.9.dist-info}/METADATA +2 -2
- {autobyteus-1.1.7.dist-info → autobyteus-1.1.9.dist-info}/RECORD +105 -99
- examples/run_poem_writer.py +1 -1
- autobyteus/task_management/converters/task_plan_converter.py +0 -48
- autobyteus/task_management/task_plan.py +0 -110
- autobyteus/task_management/tools/publish_task_plan.py +0 -101
- {autobyteus-1.1.7.dist-info → autobyteus-1.1.9.dist-info}/WHEEL +0 -0
- {autobyteus-1.1.7.dist-info → autobyteus-1.1.9.dist-info}/licenses/LICENSE +0 -0
- {autobyteus-1.1.7.dist-info → autobyteus-1.1.9.dist-info}/top_level.txt +0 -0
|
@@ -3,15 +3,16 @@ autobyteus/check_requirements.py,sha256=nLWmqMlGiAToQuub68IpL2EhRxFZ1CyCwRCMi2C5
|
|
|
3
3
|
autobyteus/agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
autobyteus/agent/agent.py,sha256=OLHU73lGlfbrwqke3cpnY8HE5zZEvYb0Cqqsxu_LKD0,4926
|
|
5
5
|
autobyteus/agent/exceptions.py,sha256=tfXvey5SkT70X6kcu29o8YO91KB0hI9_uLrba91_G2s,237
|
|
6
|
+
autobyteus/agent/processor_option.py,sha256=kQhrp2AfwTWMVYPwq0Dg_vvlPDGBdcmO12IecCw4rEI,472
|
|
6
7
|
autobyteus/agent/remote_agent.py,sha256=DPhAWobptj82HZaACbtLkXQBYIotgr3yZ6u4D9TJmeE,14458
|
|
7
|
-
autobyteus/agent/sender_type.py,sha256=
|
|
8
|
+
autobyteus/agent/sender_type.py,sha256=kCtm9BnJoXv3Ab6wBOToFliqGHQy9HEkIhP0GsXhyZI,641
|
|
8
9
|
autobyteus/agent/tool_invocation.py,sha256=oEtzk5g2T2mRLatebkSYcUbyz1JwF2ybBxd92yTKb28,3217
|
|
9
10
|
autobyteus/agent/bootstrap_steps/__init__.py,sha256=k3_J4MXu7PaTuUXK-D2Uax8kh4BnSNm22sDlQw6GFA4,906
|
|
10
11
|
autobyteus/agent/bootstrap_steps/agent_bootstrapper.py,sha256=tPxD4yQ_i3-rl9XOGaKrLMdpymBqrzHkkkzRW0xhPBw,4336
|
|
11
12
|
autobyteus/agent/bootstrap_steps/agent_runtime_queue_initialization_step.py,sha256=wulFdVAwR4jTZtJgHwLYf07r76KKCKpwa1Cho2AqjSw,3265
|
|
12
13
|
autobyteus/agent/bootstrap_steps/base_bootstrap_step.py,sha256=8XaGHJva2Fo4T3fACK36FbEcrblj105oVhffYFEQO1A,1349
|
|
13
14
|
autobyteus/agent/bootstrap_steps/mcp_server_prewarming_step.py,sha256=M_OnynyLRmyQsfEeGQ8aH-NIhbBgmXhEBRHopvkNXJc,3432
|
|
14
|
-
autobyteus/agent/bootstrap_steps/system_prompt_processing_step.py,sha256=
|
|
15
|
+
autobyteus/agent/bootstrap_steps/system_prompt_processing_step.py,sha256=C95rbKikJtBD0LdVqSYECJp6Xrtm2impAvOGKPQB-d8,5955
|
|
15
16
|
autobyteus/agent/bootstrap_steps/workspace_context_initialization_step.py,sha256=FMF9fhD6Wgas4TpQbSwKiL43OZBmwh_cAA3G_5jRJhM,2112
|
|
16
17
|
autobyteus/agent/context/__init__.py,sha256=1an2L4sKJ1tYbJKAhCLSw-oYzt5_lmUwh1SYClA5c3M,447
|
|
17
18
|
autobyteus/agent/context/agent_config.py,sha256=q04ohaBP8Wq2V0nK96YngFSLWCX7R02aAYfbIMRzAJc,6726
|
|
@@ -30,38 +31,38 @@ autobyteus/agent/handlers/approved_tool_invocation_event_handler.py,sha256=ND9Xz
|
|
|
30
31
|
autobyteus/agent/handlers/base_event_handler.py,sha256=G2vtFJT_vyObWTgrgwIgRwOssBQ-6A3gxHtc7S4SEuQ,1264
|
|
31
32
|
autobyteus/agent/handlers/event_handler_registry.py,sha256=95BCsKtxKFFSsliSJOCb6nw10TMbiRK2qM366DDuZKM,3474
|
|
32
33
|
autobyteus/agent/handlers/generic_event_handler.py,sha256=759BrDJI-sesY74YN3CX3OfTM44vLGyj6Sg1gd8eJ_w,1888
|
|
33
|
-
autobyteus/agent/handlers/inter_agent_message_event_handler.py,sha256=
|
|
34
|
+
autobyteus/agent/handlers/inter_agent_message_event_handler.py,sha256=K6i-Ivp14IWPRmSc6Cek9LNC2i5PBK6S1ApYpgFg6rQ,3507
|
|
34
35
|
autobyteus/agent/handlers/lifecycle_event_logger.py,sha256=-j5GhlCPauPwJMUOMUL53__wweZTsamhYXNbvQklnoY,2656
|
|
35
|
-
autobyteus/agent/handlers/llm_complete_response_received_event_handler.py,sha256=
|
|
36
|
+
autobyteus/agent/handlers/llm_complete_response_received_event_handler.py,sha256=75X_7Ge4TwWz32aZHi9PjWMWJZ87Fo2Mq2U-z06-6Hw,7959
|
|
36
37
|
autobyteus/agent/handlers/llm_user_message_ready_event_handler.py,sha256=4WgDXUY4rmjpP44X2THKMAt2NpAZ5GukPqVNmLt6XJM,9064
|
|
37
38
|
autobyteus/agent/handlers/tool_execution_approval_event_handler.py,sha256=Tda_LrlIPbEwVzf1I6u4Vb9sPmAbGQRqT_2-Q9ukLhw,4489
|
|
38
39
|
autobyteus/agent/handlers/tool_invocation_request_event_handler.py,sha256=AjNGQgRCQkjXvYThd_AaPj0Lzh1adEkhYJO83alxVAY,10957
|
|
39
|
-
autobyteus/agent/handlers/tool_result_event_handler.py,sha256=
|
|
40
|
-
autobyteus/agent/handlers/user_input_message_event_handler.py,sha256=
|
|
40
|
+
autobyteus/agent/handlers/tool_result_event_handler.py,sha256=JJJVcmg6g12molgNfMmbypjaT1s8Bu74Af2hEmqrT4U,10699
|
|
41
|
+
autobyteus/agent/handlers/user_input_message_event_handler.py,sha256=_9H69xZNv2HR0MnIbcZ7k64NJmKUxe-Old_rI16ZhQE,5585
|
|
41
42
|
autobyteus/agent/hooks/__init__.py,sha256=a1do0Ribb2Hpf9t0Xqxhf3Ls7R6EQuWJtfTGQK7VjUM,495
|
|
42
|
-
autobyteus/agent/hooks/base_phase_hook.py,sha256=
|
|
43
|
+
autobyteus/agent/hooks/base_phase_hook.py,sha256=H5wDej9QOw9gJmy63tWB6mapNSdy6NP0w5dduP-YohI,2540
|
|
43
44
|
autobyteus/agent/hooks/hook_definition.py,sha256=4aA4iZnxMnw9n6sGThD-kCt3JPQSjPQDCd5D7Q7uzQs,1273
|
|
44
45
|
autobyteus/agent/hooks/hook_meta.py,sha256=QHqEDug46EgDHrZYyacdXkFhnE39Zq2oPbgBgB27E6I,1590
|
|
45
|
-
autobyteus/agent/hooks/hook_registry.py,sha256=
|
|
46
|
+
autobyteus/agent/hooks/hook_registry.py,sha256=1lXHqIN6J7jfVXjFv8i7nuGQbGj5HEXRCTAtc5MrSIA,4103
|
|
46
47
|
autobyteus/agent/input_processor/__init__.py,sha256=uyxNlVWQXkHshNFp-9MkjRjMK0f7Ve0Mjx_d-q8C8Ic,330
|
|
47
|
-
autobyteus/agent/input_processor/base_user_input_processor.py,sha256=
|
|
48
|
+
autobyteus/agent/input_processor/base_user_input_processor.py,sha256=7y11eGo4gT25nt1F-c3cNqkyBQwq1sCOkDkQ5SPhg2A,2650
|
|
48
49
|
autobyteus/agent/input_processor/processor_definition.py,sha256=ISRHvjbBhlG2DYdgSK4hN3i8w1DJkgPOvCDY06TuslQ,2101
|
|
49
50
|
autobyteus/agent/input_processor/processor_meta.py,sha256=Ns_VcPbK4-xLlpbdFIC_xWfgoXDHVduVTNN7EUCUPgU,2241
|
|
50
|
-
autobyteus/agent/input_processor/processor_registry.py,sha256=
|
|
51
|
+
autobyteus/agent/input_processor/processor_registry.py,sha256=GMTw-XAeHvNaHcWEOpSQ9mCDeb4iT94slQa-pNH44M0,4651
|
|
51
52
|
autobyteus/agent/llm_response_processor/__init__.py,sha256=IeN_Bd0t46V3NYrviWzrLiM6IJBjhpf3lxX-ZQOfzUU,617
|
|
52
|
-
autobyteus/agent/llm_response_processor/base_processor.py,sha256=
|
|
53
|
+
autobyteus/agent/llm_response_processor/base_processor.py,sha256=7NcvEwc-HXZD7otv9hzSvFseuZ7xOviZjtTTHGFQeuI,2846
|
|
53
54
|
autobyteus/agent/llm_response_processor/processor_definition.py,sha256=AMLmiL8dMlTpmBKmQrqrfNTfwJLyL6kLHYGqJ-Ly8bE,1464
|
|
54
55
|
autobyteus/agent/llm_response_processor/processor_meta.py,sha256=RC32R5SVTSpBEOdexVh_SOTIydv0_ElWGP7PsXB-q_Q,1813
|
|
55
|
-
autobyteus/agent/llm_response_processor/processor_registry.py,sha256=
|
|
56
|
-
autobyteus/agent/llm_response_processor/provider_aware_tool_usage_processor.py,sha256=
|
|
56
|
+
autobyteus/agent/llm_response_processor/processor_registry.py,sha256=j9IK0ZLeXxOaX9L3YtmprwYNgWHqtMt_lEOZqgP675k,4536
|
|
57
|
+
autobyteus/agent/llm_response_processor/provider_aware_tool_usage_processor.py,sha256=nuFFYZa7qsqalXBPYhyQ1SuFtEXxLTjLvBi6-0jtRus,4458
|
|
57
58
|
autobyteus/agent/message/__init__.py,sha256=vIgKdHwCaRsaJNdi9jmGnenUZjrOhHq8hO0eZsi48hE,759
|
|
58
|
-
autobyteus/agent/message/agent_input_user_message.py,sha256=
|
|
59
|
+
autobyteus/agent/message/agent_input_user_message.py,sha256=ntjK0kP3kw2o4NjQ2o2XuCv_rwqs3tjJD1s_fBHg6aE,4794
|
|
59
60
|
autobyteus/agent/message/context_file.py,sha256=161HOu_m7923GU9kI_EDEWtVckb2nuTyqDunBq8H2kg,3311
|
|
60
61
|
autobyteus/agent/message/context_file_type.py,sha256=PXGBxFKRa2ocFS09-UagPzrYAHpMi_ozS0DbQmZokZw,3192
|
|
61
62
|
autobyteus/agent/message/inter_agent_message.py,sha256=302oAt5PdrAqS1Cz80o7G6Kk3Ur1D9JNxze7Q0NI3dM,2436
|
|
62
63
|
autobyteus/agent/message/inter_agent_message_type.py,sha256=l-j0WB4F6yRXSSnHRKzNfmwnL4wX3usPN0JIrQthyEA,1130
|
|
63
64
|
autobyteus/agent/message/multimodal_message_builder.py,sha256=rPyfdqphWKMOeV5GImveR3__8yuDXIMbHx9cAypZGLU,2017
|
|
64
|
-
autobyteus/agent/message/send_message_to.py,sha256=
|
|
65
|
+
autobyteus/agent/message/send_message_to.py,sha256=FprnEUQO2RSYIU8MydoPVbT3tapHgWbr97-J9Itw1dQ,5879
|
|
65
66
|
autobyteus/agent/phases/__init__.py,sha256=OC0T294mOGUk6pudSVLslHtfziBJEYd_VoA-LgWo9oE,558
|
|
66
67
|
autobyteus/agent/phases/discover.py,sha256=YuW0I8PyGysiyAf3jfR-cVesgSH5zi78uYZKqnM6dGU,1993
|
|
67
68
|
autobyteus/agent/phases/manager.py,sha256=-K3trAbDyXweGUxtgKPuUjQh7Cr2oFswR9KwhisT128,15604
|
|
@@ -83,22 +84,22 @@ autobyteus/agent/streaming/queue_streamer.py,sha256=lTMyFwuf_NBJL6hrUIoz5-pqWSlM
|
|
|
83
84
|
autobyteus/agent/streaming/stream_event_payloads.py,sha256=gu7Wbl7LBcTMFf2zdVnpjE7IoP6f2sNLshLSoXYUk8Y,8364
|
|
84
85
|
autobyteus/agent/streaming/stream_events.py,sha256=FjH5kBMWcgdA0Z07Omnn9qTb1FOoRlNrouoHGxq0vGQ,5562
|
|
85
86
|
autobyteus/agent/system_prompt_processor/__init__.py,sha256=5CuF47Y6DKwOWNBQQ-WRQpIxH6Iww-1V0KPok3GCGq0,446
|
|
86
|
-
autobyteus/agent/system_prompt_processor/base_processor.py,sha256=
|
|
87
|
+
autobyteus/agent/system_prompt_processor/base_processor.py,sha256=1j-__ZFVKEfWgy7MsaxCUJHR9rkqpbZehnacE-WJ2UU,2170
|
|
87
88
|
autobyteus/agent/system_prompt_processor/processor_definition.py,sha256=r2ry7igUxaVrpAVmzAtR-O1ssFIhQEry-2PBs6YIZog,1767
|
|
88
89
|
autobyteus/agent/system_prompt_processor/processor_meta.py,sha256=aQLo0WE58HVQf4lkDxej2Lz4XFLWddUd24ZPWscnsyo,2356
|
|
89
|
-
autobyteus/agent/system_prompt_processor/processor_registry.py,sha256=
|
|
90
|
-
autobyteus/agent/system_prompt_processor/tool_manifest_injector_processor.py,sha256=
|
|
90
|
+
autobyteus/agent/system_prompt_processor/processor_registry.py,sha256=ErRcf5LoxmvqNe3jATCFZyaQdtEuLEErIyfsuzwJ2sA,4639
|
|
91
|
+
autobyteus/agent/system_prompt_processor/tool_manifest_injector_processor.py,sha256=z3y17ELrjH1lo9-lc_Ptna4E1Y0SU5LXbsiemwkmyzA,4736
|
|
91
92
|
autobyteus/agent/tool_execution_result_processor/__init__.py,sha256=GKiNSMvVvwuBce0z1wEUaf48NOzOqugzvB5Utxt8w7w,286
|
|
92
|
-
autobyteus/agent/tool_execution_result_processor/base_processor.py,sha256=
|
|
93
|
+
autobyteus/agent/tool_execution_result_processor/base_processor.py,sha256=ivbHPOk-Da0M1FbGdtnN_OWZoRBTR9GYTdFNDLW9wN0,1999
|
|
93
94
|
autobyteus/agent/tool_execution_result_processor/processor_definition.py,sha256=Zr5a-DwKNdYuSO-UAD2R6Rg686YQAin5FhA6pWnxUVQ,1555
|
|
94
95
|
autobyteus/agent/tool_execution_result_processor/processor_meta.py,sha256=uUSvKeVVg6lq8aTCTvkKQjWlEOB2l0cn4FheC4s2hp8,1772
|
|
95
|
-
autobyteus/agent/tool_execution_result_processor/processor_registry.py,sha256=
|
|
96
|
+
autobyteus/agent/tool_execution_result_processor/processor_registry.py,sha256=klCuVvgPIERqhPlIjvCrPnPGTNAHKsp8wS6Zw5jOk_o,3545
|
|
96
97
|
autobyteus/agent/utils/__init__.py,sha256=vau-Zjww0qxPyo9SetL7aLUEw-99PX8Nv8TEDngUlKs,210
|
|
97
98
|
autobyteus/agent/utils/wait_for_idle.py,sha256=S0jQ9-GyfXymTkv_VTG9tVmMQXSsLAU4hsfuAxspTp4,2464
|
|
98
99
|
autobyteus/agent/workspace/__init__.py,sha256=7a16HpWxic9zxxsmZeICnBGHK_Z2K9yJUv4z9YELKfw,277
|
|
99
|
-
autobyteus/agent/workspace/base_workspace.py,sha256=
|
|
100
|
+
autobyteus/agent/workspace/base_workspace.py,sha256=_-e88pRYrqpSbOBRj2V-zCubzmwiluI9KFXG2hadNJA,3569
|
|
100
101
|
autobyteus/agent/workspace/workspace_config.py,sha256=UfDpOkCH5B7ddt227zoQdmq8bCvI0wTL9vPAB6tOH24,5571
|
|
101
|
-
autobyteus/agent/workspace/workspace_definition.py,sha256=
|
|
102
|
+
autobyteus/agent/workspace/workspace_definition.py,sha256=O8xKLkilE-C9D8DJ56ymfkTd4-5PtSD5pmm5rMocjlo,1476
|
|
102
103
|
autobyteus/agent/workspace/workspace_meta.py,sha256=xuw1-lYQiK5YyyDDc_5uT3uOGL0FfwLC8zCQiSyyQro,1680
|
|
103
104
|
autobyteus/agent/workspace/workspace_registry.py,sha256=A_wADwvZOm1XutBgkn_-FBkqb4tS1fRtALrKe2XRDhw,3182
|
|
104
105
|
autobyteus/agent_team/__init__.py,sha256=JzL7W4KLKQdFpV3WLAZJp0dM5DQWgD3xAqLr-iRoEas,53
|
|
@@ -114,7 +115,7 @@ autobyteus/agent_team/bootstrap_steps/base_agent_team_bootstrap_step.py,sha256=g
|
|
|
114
115
|
autobyteus/agent_team/bootstrap_steps/coordinator_initialization_step.py,sha256=lWiGMC7XOsDEZ0W_qo2GFtuKDl7ZVKGOfS3ENsGp1Zw,1913
|
|
115
116
|
autobyteus/agent_team/bootstrap_steps/coordinator_prompt_preparation_step.py,sha256=wjzlo_UpZDFK5WNV-HFtFu-uu_IvxdwcAGmFxlzetQI,4561
|
|
116
117
|
autobyteus/agent_team/bootstrap_steps/task_notifier_initialization_step.py,sha256=p0eH-FUq3Oe3DXxbu1J-lWU7UIrIE9sliXPkOyF8uog,2628
|
|
117
|
-
autobyteus/agent_team/bootstrap_steps/team_context_initialization_step.py,sha256=
|
|
118
|
+
autobyteus/agent_team/bootstrap_steps/team_context_initialization_step.py,sha256=E3wYdXTJUv0eh8B94Vxery5BApx8kVfga3xf35yS0dk,2435
|
|
118
119
|
autobyteus/agent_team/context/__init__.py,sha256=drrtG4m5HFNxJgtpucBmTA81TlbQaSgNXww38ChgwzE,667
|
|
119
120
|
autobyteus/agent_team/context/agent_team_config.py,sha256=kA7BTHiPeM9iyN1Gg6acZP9WBhb7VHOvBnaCDA8juaY,1589
|
|
120
121
|
autobyteus/agent_team/context/agent_team_context.py,sha256=_QC-JyvH6Ld2Ysm-EubxbjqzJ1LLvrUkNAfUWKnulmo,2682
|
|
@@ -151,11 +152,13 @@ autobyteus/agent_team/streaming/agent_event_bridge.py,sha256=hGJvLUK39-bBYxpq7pv
|
|
|
151
152
|
autobyteus/agent_team/streaming/agent_event_multiplexer.py,sha256=Z3CMxsNaPXWVtaK5D8qSZiDQC_VokJQoHlbbfPc0Xng,3647
|
|
152
153
|
autobyteus/agent_team/streaming/agent_team_event_notifier.py,sha256=2gvB5wu3Yt00VMlspoOzgfwtUHfks6Xm5fkxiP4AyFY,3524
|
|
153
154
|
autobyteus/agent_team/streaming/agent_team_event_stream.py,sha256=AZmly_WQWb6YpdS8IXmXjoOZjIck85LWFt4OkfW_Aa0,1493
|
|
154
|
-
autobyteus/agent_team/streaming/agent_team_stream_event_payloads.py,sha256=
|
|
155
|
+
autobyteus/agent_team/streaming/agent_team_stream_event_payloads.py,sha256=RAthTvoPtvMPADAd0K7XIMf65j4RYrXYwqBqrnTqH9U,1687
|
|
155
156
|
autobyteus/agent_team/streaming/agent_team_stream_events.py,sha256=NUFpmUQVFp4--96j3ruhwbjTcp_-DRcrSTEsxVCdIvU,2674
|
|
156
157
|
autobyteus/agent_team/streaming/team_event_bridge.py,sha256=C6VVJM4xJnOl37AY60qGT9k7VMVj63bkXOxYWICBgAs,2347
|
|
157
|
-
autobyteus/agent_team/task_notification/__init__.py,sha256=
|
|
158
|
-
autobyteus/agent_team/task_notification/
|
|
158
|
+
autobyteus/agent_team/task_notification/__init__.py,sha256=USOq10z0IMfwIz2cNiq6_0qbvRqsLa4mvezWURiTMMo,531
|
|
159
|
+
autobyteus/agent_team/task_notification/activation_policy.py,sha256=4RBIW5vKeENZHzhaMBAHHtkugKtpYxg-EhIbkkmosnM,2822
|
|
160
|
+
autobyteus/agent_team/task_notification/system_event_driven_agent_task_notifier.py,sha256=wbBLYxFbHonT3Ipm1ZTDD2r8m6ni0rK4wJBnfVJaXww,4791
|
|
161
|
+
autobyteus/agent_team/task_notification/task_activator.py,sha256=_7oijK61gupUCm_Z2oxQF2vojXmYlTuram8XvuJaT7Q,2728
|
|
159
162
|
autobyteus/agent_team/task_notification/task_notification_mode.py,sha256=BbtFyrMgeGMKC4WKG3QgIVNy0m2wLH4H5YszVXOvrMI,846
|
|
160
163
|
autobyteus/agent_team/utils/__init__.py,sha256=Sa5TBbhq9N41ONlMhoLlCrtyxSiDjoR2Zu5C21OAig0,218
|
|
161
164
|
autobyteus/agent_team/utils/wait_for_idle.py,sha256=wrfo_t1T6DSXeHU-SWwsuxPJToNsr0Ol1TwqpoRxZ8I,1931
|
|
@@ -164,15 +167,15 @@ autobyteus/cli/agent_cli.py,sha256=Ua6MnuVHmNgelnZQ8B8ZMFk2nyN-VNPijNzyucVVPis,4
|
|
|
164
167
|
autobyteus/cli/cli_display.py,sha256=F0mBDnaqmQJCfhqO-ccVxd_UGklCRuNoGZ4aa8ApMKs,9493
|
|
165
168
|
autobyteus/cli/agent_team_tui/__init__.py,sha256=FP2rpjO1T5jdVYkT7Yvk-iDcxckOHy3JxRg-EEeKCfE,123
|
|
166
169
|
autobyteus/cli/agent_team_tui/app.py,sha256=IuRLHQubot2DuXfA10rwPjXN4yAxXhuUZUBmYzntFfE,9152
|
|
167
|
-
autobyteus/cli/agent_team_tui/state.py,sha256=
|
|
170
|
+
autobyteus/cli/agent_team_tui/state.py,sha256=xvWSEL5_6lmg69_hWc1pM-lXBnT9jjthzNN2Dy3Qa2Y,9377
|
|
168
171
|
autobyteus/cli/agent_team_tui/widgets/__init__.py,sha256=gWVULR5J-2Ra3m2hvUhO1jF1IX9uqk0bQhWL0t25Z4E,173
|
|
169
172
|
autobyteus/cli/agent_team_tui/widgets/agent_list_sidebar.py,sha256=1ynBsWEqaYBitHrbvgR-eRLGAULA2ZUM-V_hRHWAgX8,6557
|
|
170
|
-
autobyteus/cli/agent_team_tui/widgets/focus_pane.py,sha256=
|
|
173
|
+
autobyteus/cli/agent_team_tui/widgets/focus_pane.py,sha256=US-PB0QvKDtUzwrU_p6Mt_tKIdqy9AByyTr2x9Z2RXA,16146
|
|
171
174
|
autobyteus/cli/agent_team_tui/widgets/logo.py,sha256=okzS4mG8Z1-dZDIGQ5F8XP9y6WwwRDVHmMmPz3oN9TM,780
|
|
172
175
|
autobyteus/cli/agent_team_tui/widgets/renderables.py,sha256=gaMrkLMcrohuOH2KjPvSmdbxHgljhCgl6m9OEfw2nDU,3393
|
|
173
176
|
autobyteus/cli/agent_team_tui/widgets/shared.py,sha256=9RVUNuNWTuzd8-PHjD3JMTZIK4bKVbPsUPHLtSGdtU0,1977
|
|
174
177
|
autobyteus/cli/agent_team_tui/widgets/status_bar.py,sha256=WE8Z6gjAkAdrK5Yufl7qqIitIL6TX0lOCQiTa9FZkt4,457
|
|
175
|
-
autobyteus/cli/agent_team_tui/widgets/task_board_panel.py,sha256=
|
|
178
|
+
autobyteus/cli/agent_team_tui/widgets/task_board_panel.py,sha256=CxMfFAmmQapi4GYDS61wS49G1jappd3odiYcbaYlxi4,3456
|
|
176
179
|
autobyteus/cli/workflow_tui/__init__.py,sha256=xbWMXwK_a-IX-dM3m1TJkm9SHT--bqiHVgkS5XCA6vM,127
|
|
177
180
|
autobyteus/cli/workflow_tui/app.py,sha256=DZPHPIrjz5-YBxwybDylokemtzqO9Ac49hdhkBdXCwQ,9681
|
|
178
181
|
autobyteus/cli/workflow_tui/state.py,sha256=JA3MOGpV25yin6dMO8AWRLSOgCEcd5oKtfNROU8RavM,9477
|
|
@@ -186,11 +189,11 @@ autobyteus/cli/workflow_tui/widgets/status_bar.py,sha256=PLkw2IxJ4T2cDt-3HKRhnIm
|
|
|
186
189
|
autobyteus/events/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
187
190
|
autobyteus/events/event_emitter.py,sha256=WKKwISFo2yDx0OpLjGFtXEl3DVV1siB0lXdndIAHhBg,2522
|
|
188
191
|
autobyteus/events/event_manager.py,sha256=c5RMlCtKzkHgQZkePBvqxPAxxOu-NapUrl8c2oRDkT8,5841
|
|
189
|
-
autobyteus/events/event_types.py,sha256=
|
|
192
|
+
autobyteus/events/event_types.py,sha256=5CEMe2VmZ1L5ksKzMPqLRgPjXhxF31BD3ehrGJWfRJQ,3016
|
|
190
193
|
autobyteus/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
191
|
-
autobyteus/llm/autobyteus_provider.py,sha256=
|
|
194
|
+
autobyteus/llm/autobyteus_provider.py,sha256=WVFw4TmLFPKrPwc941utAxWNghklSYug5rViqKJ3T8E,8390
|
|
192
195
|
autobyteus/llm/base_llm.py,sha256=OCiInGSNApZ-bcrdEMt3siOFwNkB9UwFGfqVNYImzEo,8036
|
|
193
|
-
autobyteus/llm/llm_factory.py,sha256=
|
|
196
|
+
autobyteus/llm/llm_factory.py,sha256=6vNHaKXILg-Z7ED7mxoLoOADqkP3_EjGpMvqBM_LBJc,19187
|
|
194
197
|
autobyteus/llm/lmstudio_provider.py,sha256=RkM_drORSZ2zcSxN2Th5Upiva2oesIPw-6viqe2w9dY,4315
|
|
195
198
|
autobyteus/llm/models.py,sha256=ownBklNZrtJ_HWeMexa2T3s9TjWG0xggOt7wYrRs2l4,6963
|
|
196
199
|
autobyteus/llm/ollama_provider.py,sha256=CfcgC-DEWULjTwJiWazB5IXjErEyy1zZ41glrWhpj0g,4427
|
|
@@ -203,7 +206,7 @@ autobyteus/llm/api/autobyteus_llm.py,sha256=n-QQA4vNRZTkCkjqSUXM8yhSGI-XvLEOyRbH
|
|
|
203
206
|
autobyteus/llm/api/bedrock_llm.py,sha256=8B7dNSkQPRfRi8GAPEB31A2pZLZfTIQUtxXjQ_E4rAE,3768
|
|
204
207
|
autobyteus/llm/api/claude_llm.py,sha256=quPfUmg3oASRKVer01_tIcBxrqNP-xIenCU-tWbfTlU,5286
|
|
205
208
|
autobyteus/llm/api/deepseek_llm.py,sha256=TEWtXAqM4OuKH1etj5kknzkbPsRGvEpWzTq_CoAU6po,894
|
|
206
|
-
autobyteus/llm/api/gemini_llm.py,sha256=
|
|
209
|
+
autobyteus/llm/api/gemini_llm.py,sha256=273psG-IlDR4dAbzTjUDmcjbrRC8Fhc6BCHn19sVKRQ,5540
|
|
207
210
|
autobyteus/llm/api/grok_llm.py,sha256=oZIkJrRhbvcKSrho5hLWqqRxO5SUfbwutKW1g-mPQC0,875
|
|
208
211
|
autobyteus/llm/api/groq_llm.py,sha256=btkyeVPjke-fWxuC42r7p8DXYuAVJy3gfYpnTLmZoHU,3485
|
|
209
212
|
autobyteus/llm/api/kimi_llm.py,sha256=oUgmP_D0ppr0zKhgRVyjxRMP8cEMGXB2DFUgXYqRlCg,873
|
|
@@ -213,6 +216,7 @@ autobyteus/llm/api/nvidia_llm.py,sha256=zHRuhJjS4KedRAb1hpb9jxO3Pnw0Eu8Dc9mKrotM
|
|
|
213
216
|
autobyteus/llm/api/ollama_llm.py,sha256=PmrgxOS-RU59DxUAw4aAvKeJHghpWcb3PKgsZk-wZTo,6971
|
|
214
217
|
autobyteus/llm/api/openai_compatible_llm.py,sha256=TFEem7RLpqtB9-ExHYBDk9dC0iJe2fAeLLJRE6sGciM,9108
|
|
215
218
|
autobyteus/llm/api/openai_llm.py,sha256=414fWDFvTm7IkG3STfYCWT4mz1FQwEGnD4N5MpTyf6M,905
|
|
219
|
+
autobyteus/llm/api/qwen_llm.py,sha256=wN4fHEfjpuece0xd19elwknBeRKJnhj--btNQl3_e_o,877
|
|
216
220
|
autobyteus/llm/extensions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
217
221
|
autobyteus/llm/extensions/base_extension.py,sha256=ZqwmwNKBURFseAeRec53tpC4v1mnRTubdifk575eqlo,1273
|
|
218
222
|
autobyteus/llm/extensions/extension_registry.py,sha256=b4b3U5cQB9kZpJpqmT_e1lviLzjGQBsp7gJuYppjpjU,1254
|
|
@@ -235,25 +239,25 @@ autobyteus/llm/utils/token_pricing_config.py,sha256=6oRkG6R-BrP54sTI5Btjpy4s2c7b
|
|
|
235
239
|
autobyteus/llm/utils/token_usage.py,sha256=C8YJH_-sYKJHVcE47hwwk-p0VTAFF0ezFGjSbc0mbzI,601
|
|
236
240
|
autobyteus/llm/utils/token_usage_tracker.py,sha256=RC4zL5k343-wLm0jXc-rwAOMhpxs_1klnrh-xi2J7W8,4220
|
|
237
241
|
autobyteus/multimedia/__init__.py,sha256=8sssScdnrek2-1-s7wStlOc37ZilLTf0cJzMqVzW4Zw,589
|
|
238
|
-
autobyteus/multimedia/providers.py,sha256=
|
|
242
|
+
autobyteus/multimedia/providers.py,sha256=odBXtoEXYtFULX_lnBR9rGEcWOAzMbUD0qF2Fr_Y1Nc,133
|
|
239
243
|
autobyteus/multimedia/runtimes.py,sha256=mgmA06Ng7Gh6UW6YNi0O5CmwV6oDw3kX2qxLssUqG0o,180
|
|
240
244
|
autobyteus/multimedia/audio/__init__.py,sha256=RsUo63rEz8_HLJ7RonaSrYkoDKwhBmHomeseTnBX-Hg,287
|
|
241
|
-
autobyteus/multimedia/audio/audio_client_factory.py,sha256=
|
|
242
|
-
autobyteus/multimedia/audio/audio_model.py,sha256=
|
|
243
|
-
autobyteus/multimedia/audio/autobyteus_audio_provider.py,sha256=
|
|
244
|
-
autobyteus/multimedia/audio/base_audio_client.py,sha256=
|
|
245
|
+
autobyteus/multimedia/audio/audio_client_factory.py,sha256=ivR8iM3wYFGuz7PFnM-7dDgrJM8K9xUOwbOIj7tihpk,6382
|
|
246
|
+
autobyteus/multimedia/audio/audio_model.py,sha256=tiFRspsfrlOifjPH7wJDNxT7Rl695RkjD5VLNiJvI0Q,4069
|
|
247
|
+
autobyteus/multimedia/audio/autobyteus_audio_provider.py,sha256=yhYgREXz8YWOzgv-9QrkyvKOMDYCEJkmRr48rt1omFY,4937
|
|
248
|
+
autobyteus/multimedia/audio/base_audio_client.py,sha256=zl12JZrvDUmKEnNhEtdY7jXK0TYmil9rUgIkU_VWbL0,1498
|
|
245
249
|
autobyteus/multimedia/audio/api/__init__.py,sha256=_LHCfFqfwvbr0qSTLlioTcnb_EnfZtY1usY6nHegr1k,168
|
|
246
|
-
autobyteus/multimedia/audio/api/autobyteus_audio_client.py,sha256=
|
|
247
|
-
autobyteus/multimedia/audio/api/gemini_audio_client.py,sha256=
|
|
250
|
+
autobyteus/multimedia/audio/api/autobyteus_audio_client.py,sha256=oW-2rRO88ekQPLeFUcXjdLjordeT2jDgI1uLnMS8RDM,2644
|
|
251
|
+
autobyteus/multimedia/audio/api/gemini_audio_client.py,sha256=Mg9c7_7am8iuBNQQv1To37H8mY1Vc1xx5ZKtEfp5Sig,6410
|
|
248
252
|
autobyteus/multimedia/image/__init__.py,sha256=YWwPtRgbTtPoZBgAmjt87P-pTREOZEpJzDbKhD9jSRg,287
|
|
249
|
-
autobyteus/multimedia/image/autobyteus_image_provider.py,sha256=
|
|
250
|
-
autobyteus/multimedia/image/base_image_client.py,sha256=
|
|
251
|
-
autobyteus/multimedia/image/image_client_factory.py,sha256=
|
|
252
|
-
autobyteus/multimedia/image/image_model.py,sha256=
|
|
253
|
+
autobyteus/multimedia/image/autobyteus_image_provider.py,sha256=HKPGRiX1k8eZ_2DOGcktsqSvhr8bgmGPfssTCg4prv0,5047
|
|
254
|
+
autobyteus/multimedia/image/base_image_client.py,sha256=sDm2n8yol590tWkujYc_FDf2cuyBNP0t4voRz9vuGr4,2819
|
|
255
|
+
autobyteus/multimedia/image/image_client_factory.py,sha256=oKNmQpIY_vMjsVDDQ_ZhrAzuJXBAmCmQv3b2IKryFzY,5636
|
|
256
|
+
autobyteus/multimedia/image/image_model.py,sha256=BxkWiQr30Fp5o6mLYMYD_6XAnElZQCU5yYe-MBN52jk,4077
|
|
253
257
|
autobyteus/multimedia/image/api/__init__.py,sha256=Vh_FC_6rxcPhJqFpAvgv3yBqHYVmxrzjyVSSrCM7rww,255
|
|
254
|
-
autobyteus/multimedia/image/api/autobyteus_image_client.py,sha256=
|
|
255
|
-
autobyteus/multimedia/image/api/gemini_image_client.py,sha256=
|
|
256
|
-
autobyteus/multimedia/image/api/openai_image_client.py,sha256=
|
|
258
|
+
autobyteus/multimedia/image/api/autobyteus_image_client.py,sha256=5B4njfeplmOSLtNwngOO-VcyZaSklra2TldOoHZD2F4,4187
|
|
259
|
+
autobyteus/multimedia/image/api/gemini_image_client.py,sha256=OXYd9av43VjezuiaqSNehiA28EMlGlvGR2C4FC0tDes,6108
|
|
260
|
+
autobyteus/multimedia/image/api/openai_image_client.py,sha256=eiC2hh3y7flLQPWQQiuaesaTR-PBa9UD96go41mFEt8,6240
|
|
257
261
|
autobyteus/multimedia/utils/__init__.py,sha256=pH2c5CB2V-QXVl6SgL6N70KKH0VShByhZHS8m7L9TCg,298
|
|
258
262
|
autobyteus/multimedia/utils/api_utils.py,sha256=dbrIQzRnoz66CwaZOIG4353h5ccbTEIvUPUSRfgIWOQ,613
|
|
259
263
|
autobyteus/multimedia/utils/multimedia_config.py,sha256=1CU1G0LqURt6DOrcvj2UnPUQ0Q2Mh4vzeKJEGbHoIno,953
|
|
@@ -286,37 +290,37 @@ autobyteus/rpc/server/base_method_handler.py,sha256=6sKWucR1vUYeritjJPHIX_sCQOD2
|
|
|
286
290
|
autobyteus/rpc/server/method_handlers.py,sha256=Zqrr1R3yu_hVD0qCOPpxXm4ujkvdds9wCCneIeT3gU8,14702
|
|
287
291
|
autobyteus/rpc/server/sse_server_handler.py,sha256=3F1LNLw6fXcB08hmWOUhGZROYhpPdk8xwz2TakiR-2M,16273
|
|
288
292
|
autobyteus/rpc/server/stdio_server_handler.py,sha256=pSAvVtxyo0Hytzld7WINeKHvGBqEjp0Bad-xkY2Rul4,7398
|
|
289
|
-
autobyteus/task_management/__init__.py,sha256=
|
|
290
|
-
autobyteus/task_management/base_task_board.py,sha256=
|
|
293
|
+
autobyteus/task_management/__init__.py,sha256=saIIRYfXX7g6GXzQ5pGmxZMUeSjVRW3mcxSGBVPPln0,1570
|
|
294
|
+
autobyteus/task_management/base_task_board.py,sha256=w-mvFFgzeQuY0_P9VNWTID7SX623-iivfM1w9R4JYfk,2363
|
|
291
295
|
autobyteus/task_management/deliverable.py,sha256=cXuWD7UhP_oElhUzLGGdCwE8Fn4IokURuanz4zg35Ps,490
|
|
292
|
-
autobyteus/task_management/events.py,sha256=
|
|
293
|
-
autobyteus/task_management/in_memory_task_board.py,sha256=
|
|
294
|
-
autobyteus/task_management/
|
|
295
|
-
autobyteus/task_management/converters/__init__.py,sha256=
|
|
296
|
-
autobyteus/task_management/converters/task_board_converter.py,sha256=
|
|
297
|
-
autobyteus/task_management/converters/task_plan_converter.py,sha256=WEOSuTUBE7lvtHUEyRPu7wcRnMk_eHpzcMBTnUmVPxw,2093
|
|
296
|
+
autobyteus/task_management/events.py,sha256=bDxlCW5iKtILcEF4T34AM3anQqaso8G-yDuiaAUd8zg,824
|
|
297
|
+
autobyteus/task_management/in_memory_task_board.py,sha256=YkeLAn7WF7VGREDSrknwRAYBGj2vOM0zN6QaHxthXTg,5522
|
|
298
|
+
autobyteus/task_management/task.py,sha256=nsxvcYavYG7I-AQo4JBHV7n6iYtZJuBJ3cOJXF4vtEs,2598
|
|
299
|
+
autobyteus/task_management/converters/__init__.py,sha256=pB1E9lO-HjY0VUFZahTbS23VUC_0uP2L1VdF3__FnGA,233
|
|
300
|
+
autobyteus/task_management/converters/task_board_converter.py,sha256=lm6Rkn95akWeIGJ1hv3MKR9aNRy9BGsgpPais_9WM3Y,2105
|
|
298
301
|
autobyteus/task_management/deliverables/__init__.py,sha256=RYBzSxKgzPnh8uE0TA2hA_SiI3dv3_dgvME0K-5AvvI,150
|
|
299
302
|
autobyteus/task_management/deliverables/file_deliverable.py,sha256=tTdpgdAtXwkZ-US0n8ilEl6CYI8dRVXhGEdBBCTay8c,425
|
|
300
|
-
autobyteus/task_management/schemas/__init__.py,sha256=
|
|
303
|
+
autobyteus/task_management/schemas/__init__.py,sha256=MfNFFHjosjuMKFRwLNwlQFFOqZOzmggWvWdxbJA2pw8,514
|
|
301
304
|
autobyteus/task_management/schemas/deliverable_schema.py,sha256=8_3F93gAeTfp6NeHqhIQLWFMpVwfiDuSOk0lnHnxxFU,603
|
|
302
|
-
autobyteus/task_management/schemas/
|
|
303
|
-
autobyteus/task_management/schemas/task_status_report.py,sha256=
|
|
304
|
-
autobyteus/task_management/tools/__init__.py,sha256=
|
|
305
|
-
autobyteus/task_management/tools/
|
|
306
|
-
autobyteus/task_management/tools/
|
|
307
|
-
autobyteus/task_management/tools/
|
|
308
|
-
autobyteus/tools/
|
|
309
|
-
autobyteus/tools/
|
|
310
|
-
autobyteus/tools/
|
|
311
|
-
autobyteus/tools/
|
|
312
|
-
autobyteus/tools/
|
|
313
|
-
autobyteus/tools/
|
|
305
|
+
autobyteus/task_management/schemas/task_definition.py,sha256=KfgbDdS0sPSha-mwLNAsn6aApt50aFNVrqHoFs0jOfw,1851
|
|
306
|
+
autobyteus/task_management/schemas/task_status_report.py,sha256=GgX2zYWXITXGdRpmImV0sVlv9PmHXsmxVc37eSWXQv4,1581
|
|
307
|
+
autobyteus/task_management/tools/__init__.py,sha256=VTaBu918KmC7W2ISGJ_my_hyQUVPtocHUkDcqGie8yA,462
|
|
308
|
+
autobyteus/task_management/tools/get_my_tasks.py,sha256=2SQ7UmckvlpTZWTh5JJkvfqt7n_718NmYIHk1g_rZeA,3312
|
|
309
|
+
autobyteus/task_management/tools/get_task_board_status.py,sha256=eglF_IWVCQwJBJ4gmHhGXjnDGFHRWYz45G0UbRzsf7o,2748
|
|
310
|
+
autobyteus/task_management/tools/publish_task.py,sha256=0A3gEhoiAYEECeWogMDXMSb9zsWc6W8NdV8Mz9T7Em4,3366
|
|
311
|
+
autobyteus/task_management/tools/publish_tasks.py,sha256=WkNBt6H8IQNqhCOFvp4n1H4FonbwtgqHymcVNh0xF40,3157
|
|
312
|
+
autobyteus/task_management/tools/update_task_status.py,sha256=OtlVhe3apLTcw_0yfAIdGEz9LdL4gIEmCy4knNmgcXA,5921
|
|
313
|
+
autobyteus/tools/__init__.py,sha256=KJ27NwTfEH1Hz-3FYP8TxdEwJv5WtFI9wgAN2bXYlmo,3126
|
|
314
|
+
autobyteus/tools/base_tool.py,sha256=s7wf06jqxWBX3pu18cgooxN9RQ8u6W3GCV8I5Zwi8UA,8738
|
|
315
|
+
autobyteus/tools/functional_tool.py,sha256=FyifQc5D0CZIpF_5GsOV72kFMrTL_nlvVuFXHvexuKY,10393
|
|
316
|
+
autobyteus/tools/google_search.py,sha256=2x86gNHk6PGe8fQRDLw099g1KG2MXLbOW_dBex4PJB4,5890
|
|
317
|
+
autobyteus/tools/image_downloader.py,sha256=wKSzBoq7d4FgHdPoenMUmzchaeaerU4XUzzvup5mAV4,4868
|
|
314
318
|
autobyteus/tools/pdf_downloader.py,sha256=0WeznZhkYvXvgU2CH21q6LSVEQm8S1mAm7gtw_CjsJM,3927
|
|
315
|
-
autobyteus/tools/pydantic_schema_converter.py,sha256=
|
|
316
|
-
autobyteus/tools/timer.py,sha256=
|
|
319
|
+
autobyteus/tools/pydantic_schema_converter.py,sha256=qDVCXDBUWuXxYzO0d_taFum1gd1Av1VvHCvTzTtilF0,3402
|
|
320
|
+
autobyteus/tools/timer.py,sha256=1PI3fhmwQDgRjmXBDX6NbsE3zqNaXeuitXX75IdVog0,7384
|
|
317
321
|
autobyteus/tools/tool_category.py,sha256=pSf3C4kDc5ZGRYLmlGaU0th9YgdI-3TSS_yOdqbEzLU,740
|
|
318
322
|
autobyteus/tools/tool_config.py,sha256=gnzGweccECNmCeufkzbskHeFOt3f0431DyAmMhqNVn4,3564
|
|
319
|
-
autobyteus/tools/tool_meta.py,sha256=
|
|
323
|
+
autobyteus/tools/tool_meta.py,sha256=K_jKes6NSzgHte-iQVzPOHTscPOFM6Uh7M0tMMECbgI,4417
|
|
320
324
|
autobyteus/tools/tool_origin.py,sha256=X1RqyDMWg2n7v0TciJHh5eiXgDDoU86BEQL3hx975jk,269
|
|
321
325
|
autobyteus/tools/tool_state.py,sha256=CwmEu7GTdaE72QIsdsXQu0AmTxQTp5hMncFcY58PkGo,746
|
|
322
326
|
autobyteus/tools/utils.py,sha256=PuHGlARmNx5HA2YFVF5XA36MoeAyFL6voK10S12AYS0,546
|
|
@@ -324,11 +328,11 @@ autobyteus/tools/bash/__init__.py,sha256=X38g3OVhlr-6aLIYfcSyh8DzqHAEh8dSzfEH1NE
|
|
|
324
328
|
autobyteus/tools/bash/bash_executor.py,sha256=3VqilVSuzomMpqv7WWy6ukqhLJyiBy1tALRcDql8h8w,4502
|
|
325
329
|
autobyteus/tools/browser/__init__.py,sha256=fNt3qo9ykOIhfG7CmbelCabMydhPTWL-5timHXBa8ZI,91
|
|
326
330
|
autobyteus/tools/browser/session_aware/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
327
|
-
autobyteus/tools/browser/session_aware/browser_session_aware_navigate_to.py,sha256=
|
|
331
|
+
autobyteus/tools/browser/session_aware/browser_session_aware_navigate_to.py,sha256=zc-xFSc5VqreUfTWiDX2jvK9TuI5d2nB4zUY8MxydhM,3099
|
|
328
332
|
autobyteus/tools/browser/session_aware/browser_session_aware_tool.py,sha256=Jw3z_KY0h-hcheav9cWmTPoKGth69DePfBs-SshxUAQ,1525
|
|
329
|
-
autobyteus/tools/browser/session_aware/browser_session_aware_web_element_trigger.py,sha256=
|
|
330
|
-
autobyteus/tools/browser/session_aware/browser_session_aware_webpage_reader.py,sha256=
|
|
331
|
-
autobyteus/tools/browser/session_aware/browser_session_aware_webpage_screenshot_taker.py,sha256=
|
|
333
|
+
autobyteus/tools/browser/session_aware/browser_session_aware_web_element_trigger.py,sha256=eowahKEabb63L_lgo1ZkO33fs2oikdKsaoeJ0hnvp14,7014
|
|
334
|
+
autobyteus/tools/browser/session_aware/browser_session_aware_webpage_reader.py,sha256=zyey2FslycuZaIoK2KTnFzIY3ZM0hKVOWOyNsn0doX4,3996
|
|
335
|
+
autobyteus/tools/browser/session_aware/browser_session_aware_webpage_screenshot_taker.py,sha256=fzN1IdlpQREBkCWxdIDRT-2xbg5Nx6VViM-Rirg5RII,4711
|
|
332
336
|
autobyteus/tools/browser/session_aware/shared_browser_session.py,sha256=WjdkY6vrE96hluwHQS8U0K5z3XE8QMw2-fDRv5VFhXA,326
|
|
333
337
|
autobyteus/tools/browser/session_aware/shared_browser_session_manager.py,sha256=OAFzqLHWWxtVnU-zYGYFPLwiVTzhW7C6UA3y70-lBQU,1103
|
|
334
338
|
autobyteus/tools/browser/session_aware/web_element_action.py,sha256=jPWGmqoTB7Hpk6APQOWglLUaJmf5c_nR8Hh0AbT4fkM,477
|
|
@@ -337,11 +341,11 @@ autobyteus/tools/browser/session_aware/factory/browser_session_aware_web_element
|
|
|
337
341
|
autobyteus/tools/browser/session_aware/factory/browser_session_aware_webpage_reader_factory.py,sha256=WmW9yU_KVjvDNSlxWPkdXljM9h4-zZRoZH7GP6sQndA,1335
|
|
338
342
|
autobyteus/tools/browser/session_aware/factory/browser_session_aware_webpage_screenshot_taker_factory.py,sha256=uxv7cLtlXg9Vdl82_r1K-wEHKfXzrmngGwT8rd5u4JQ,717
|
|
339
343
|
autobyteus/tools/browser/standalone/__init__.py,sha256=0J-_GM5vmp3iaHBDZXXRaj5gB3EGE0cRHJyJ3N-RDQg,324
|
|
340
|
-
autobyteus/tools/browser/standalone/navigate_to.py,sha256=
|
|
341
|
-
autobyteus/tools/browser/standalone/web_page_pdf_generator.py,sha256
|
|
342
|
-
autobyteus/tools/browser/standalone/webpage_image_downloader.py,sha256=
|
|
343
|
-
autobyteus/tools/browser/standalone/webpage_reader.py,sha256=
|
|
344
|
-
autobyteus/tools/browser/standalone/webpage_screenshot_taker.py,sha256=
|
|
344
|
+
autobyteus/tools/browser/standalone/navigate_to.py,sha256=hiIpy4hhpfU5RQcyeqty2bnbCYietcPGC_Tx74PODws,3458
|
|
345
|
+
autobyteus/tools/browser/standalone/web_page_pdf_generator.py,sha256=-Z9RFX1-2MH-XXhftIeUJJucxZdD5hwsvQ8zjc2FdQ8,4041
|
|
346
|
+
autobyteus/tools/browser/standalone/webpage_image_downloader.py,sha256=1s6UbfG9Gu04L8piOUukjKHA6N2BdiZTT2xAA8i6jhs,7159
|
|
347
|
+
autobyteus/tools/browser/standalone/webpage_reader.py,sha256=3zl4CfxieGXvwgxqDAZn-3Ka0GhWvdZMwEUdSRjVZnw,4254
|
|
348
|
+
autobyteus/tools/browser/standalone/webpage_screenshot_taker.py,sha256=dlPaJLqnNSnRGGxBxzWnmNRJAmoCBoWwXETuZPi4-oA,4424
|
|
345
349
|
autobyteus/tools/browser/standalone/factory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
346
350
|
autobyteus/tools/browser/standalone/factory/webpage_reader_factory.py,sha256=R9PJPf7MF3cP8q8ffMKU5-ihPJWHJkVDYXZswZNdGS0,1131
|
|
347
351
|
autobyteus/tools/browser/standalone/factory/webpage_screenshot_taker_factory.py,sha256=NMS2laBlZAJiXPPub4YRhz1pXtZkfAeMhfRcSAfqu4M,597
|
|
@@ -354,10 +358,10 @@ autobyteus/tools/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJW
|
|
|
354
358
|
autobyteus/tools/handlers/shell_handler.py,sha256=ClTXqFR45iyD0gcoOPpKRX5p6g_6BI4a5JOLuKuQOIA,1065
|
|
355
359
|
autobyteus/tools/mcp/__init__.py,sha256=gwT34UgJe2rU5y4bYNOLI-PyAmRQTMWKz_WC4f2LcyE,1553
|
|
356
360
|
autobyteus/tools/mcp/config_service.py,sha256=7OoqZGVxBob4IeeBjChFCpwyI9IJIxlOQDh-OjCffrY,11466
|
|
357
|
-
autobyteus/tools/mcp/factory.py,sha256=
|
|
358
|
-
autobyteus/tools/mcp/schema_mapper.py,sha256=
|
|
361
|
+
autobyteus/tools/mcp/factory.py,sha256=vNQ719v1hMo0s98OWKKylHhO_cynyghWRejzot4RWSE,2204
|
|
362
|
+
autobyteus/tools/mcp/schema_mapper.py,sha256=DDCPN_BJ1twe-9VIGVZaksmrQZVVNnL0uuD9-AeToTw,4413
|
|
359
363
|
autobyteus/tools/mcp/server_instance_manager.py,sha256=pGZZCH9Qp7n6jefwyDsvoo0Pxe7AWCcqIqnXgWt8hyg,6289
|
|
360
|
-
autobyteus/tools/mcp/tool.py,sha256=
|
|
364
|
+
autobyteus/tools/mcp/tool.py,sha256=OdP2A2Xj3F2Ob6v_r4ZmtF6UtiBIn8FeD9g1KTuMiz0,3380
|
|
361
365
|
autobyteus/tools/mcp/tool_registrar.py,sha256=RugX4TdiD6IfXF8S6cy2Ae-ZobT6RdRKdx7NLbcBMyI,11028
|
|
362
366
|
autobyteus/tools/mcp/types.py,sha256=KiQUPhqzro5VW7piA-eOXkBcE0FThOUgr9Pw_7iV6Us,4171
|
|
363
367
|
autobyteus/tools/mcp/server/__init__.py,sha256=yfCMAtVlfy1x8aKEnRz9_CHnco2zVSdepwIPSjywSNw,523
|
|
@@ -365,31 +369,32 @@ autobyteus/tools/mcp/server/base_managed_mcp_server.py,sha256=ep-EKh4uqorrNYvv7D
|
|
|
365
369
|
autobyteus/tools/mcp/server/http_managed_mcp_server.py,sha256=Kit7zcJxaRXfAXMxYqCKVcl4MfNsgRfXK9kjDaQFkMA,1969
|
|
366
370
|
autobyteus/tools/mcp/server/proxy.py,sha256=08F3m1I_IH2wrRXK29R_NPDB6ITHpo982Mq9G53hbUo,1660
|
|
367
371
|
autobyteus/tools/mcp/server/stdio_managed_mcp_server.py,sha256=a84GOnhWLg4vx6yo5dI8BlqUA_fdi0M5eNo2a-tGWwM,2085
|
|
368
|
-
autobyteus/tools/multimedia/__init__.py,sha256=
|
|
369
|
-
autobyteus/tools/multimedia/audio_tools.py,sha256=
|
|
370
|
-
autobyteus/tools/multimedia/image_tools.py,sha256=
|
|
372
|
+
autobyteus/tools/multimedia/__init__.py,sha256=D1DYekb40ziohmX0Jn7H3dI16AuMYFrTBQp5sT5llU8,255
|
|
373
|
+
autobyteus/tools/multimedia/audio_tools.py,sha256=CDh6Zwd04Rl1v6zgfcCGt9VCyObAUlG0u_1_uv0veZY,4318
|
|
374
|
+
autobyteus/tools/multimedia/image_tools.py,sha256=llWpp0lMBNaWNtfQ3LVA36-iQ2f4pIQ1oE71PK5W6nk,7686
|
|
375
|
+
autobyteus/tools/multimedia/media_reader_tool.py,sha256=iu2mo1nitPriOgK49fe9lNhPg4oLrFro3yUsSZ0z4qE,5829
|
|
371
376
|
autobyteus/tools/operation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
372
377
|
autobyteus/tools/operation/file_operation.py,sha256=bAehQ9PfHoCDpk9Wa7vx9h3ohzVuaGzzBUogxleTwq8,2375
|
|
373
378
|
autobyteus/tools/operation/file_rename_operation.py,sha256=pExiC69HUzYbKihlVumlGHMGxmmrsKQB0JfAM5x4JH0,1710
|
|
374
379
|
autobyteus/tools/operation/operation.py,sha256=9sIZnlrPct5CwkCKuwbspVKvjF4KumP6twmXRo1blwo,1702
|
|
375
380
|
autobyteus/tools/operation/shell_operation.py,sha256=_BiGIRGWCzzwPVtbqFwXpHOvnqH68YqJujQI-gWeKx0,1860
|
|
376
381
|
autobyteus/tools/registry/__init__.py,sha256=39TSHm7mD6NXhsrczsX5Mdr32US0I6z3Bzad4hgcrrA,250
|
|
377
|
-
autobyteus/tools/registry/tool_definition.py,sha256=
|
|
382
|
+
autobyteus/tools/registry/tool_definition.py,sha256=MIhFPhgbvrL4Q5MVq8d2UybCsTE-O6kLagZQ7NujW6w,6953
|
|
378
383
|
autobyteus/tools/registry/tool_registry.py,sha256=eekF5q3GZr3FwnwITGni-gyc46Vob5u3WoApmvEHPQ8,7564
|
|
379
384
|
autobyteus/tools/usage/__init__.py,sha256=0kJoUH-m0d1AHTYJQyXlCjlXhMJ3e95Ykf-8J9lO2g4,224
|
|
380
385
|
autobyteus/tools/usage/formatters/__init__.py,sha256=BThdI_R8Dkda1eHJFr1cQ7nLCgf5KfSuvWokjPrnT9U,1424
|
|
381
386
|
autobyteus/tools/usage/formatters/anthropic_json_example_formatter.py,sha256=EVVPZ7e1tG3QRcEPjdOC0yTvnGisubfUm9geWbd9r2g,792
|
|
382
387
|
autobyteus/tools/usage/formatters/anthropic_json_schema_formatter.py,sha256=Cwd4teoZcs64q1xemVYIW9lviH7A0t2jmg3W7TYv_Rs,869
|
|
383
388
|
autobyteus/tools/usage/formatters/base_formatter.py,sha256=15YQHEV-uHREoi5INA6KWVrniatMbBPIGz82bVkZos8,1283
|
|
384
|
-
autobyteus/tools/usage/formatters/default_json_example_formatter.py,sha256=
|
|
389
|
+
autobyteus/tools/usage/formatters/default_json_example_formatter.py,sha256=vngcw6jI_tqvgzrOJ7vvhStb2I35YYpdK31EyyW_nrc,9069
|
|
385
390
|
autobyteus/tools/usage/formatters/default_json_schema_formatter.py,sha256=mZuHp_irHco3_S-VotSBvv5BRFDlTsmdmSIH3Ut71jY,958
|
|
386
|
-
autobyteus/tools/usage/formatters/default_xml_example_formatter.py,sha256=
|
|
387
|
-
autobyteus/tools/usage/formatters/default_xml_schema_formatter.py,sha256=
|
|
388
|
-
autobyteus/tools/usage/formatters/gemini_json_example_formatter.py,sha256=
|
|
391
|
+
autobyteus/tools/usage/formatters/default_xml_example_formatter.py,sha256=JRr7ksL3N_YMeFm2CY6RQxVwK4sbVKeSWQdZIy0ieiI,7185
|
|
392
|
+
autobyteus/tools/usage/formatters/default_xml_schema_formatter.py,sha256=XsTLXKQfvJ1kshRi2jN0aIoOWn1t1oolrzl-H4wCRAE,6585
|
|
393
|
+
autobyteus/tools/usage/formatters/gemini_json_example_formatter.py,sha256=S56Ld3xN4X0U4VL645j-ZY2IAweMf4nKny6Sy8F6__4,3866
|
|
389
394
|
autobyteus/tools/usage/formatters/gemini_json_schema_formatter.py,sha256=za6FhkrbDUcezc9-u4w4_ytQAQyR8OpKypC_CCTYlBY,875
|
|
390
|
-
autobyteus/tools/usage/formatters/google_json_example_formatter.py,sha256=
|
|
395
|
+
autobyteus/tools/usage/formatters/google_json_example_formatter.py,sha256=qw3WxLDg4iBRm6r4k2qYX8IkCQVtJV3ljMjk1iTCVsM,3908
|
|
391
396
|
autobyteus/tools/usage/formatters/google_json_schema_formatter.py,sha256=gKeuR_QhiebFGja303rg9q9CxgynJxIoCd4SrXuXRUU,868
|
|
392
|
-
autobyteus/tools/usage/formatters/openai_json_example_formatter.py,sha256
|
|
397
|
+
autobyteus/tools/usage/formatters/openai_json_example_formatter.py,sha256=-Ggx3VoS64Pwq035P-Gd7b8gfPTHSSU2rAdN3xTSZI8,4131
|
|
393
398
|
autobyteus/tools/usage/formatters/openai_json_schema_formatter.py,sha256=3pN4CnmWiBJaZMhV7qnWcSKPpyZ2cEdiU-FVMRfPT1w,948
|
|
394
399
|
autobyteus/tools/usage/parsers/__init__.py,sha256=4y235cYvUm60v30m4KCwQ4g9x9yP81QYBhSkUmjFWAU,915
|
|
395
400
|
autobyteus/tools/usage/parsers/_json_extractor.py,sha256=Q7BJsEcFkEZJ8q-ifIl-7t4FXZgFoFEwFXAGvKFYhCk,3601
|
|
@@ -411,6 +416,7 @@ autobyteus/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
|
411
416
|
autobyteus/utils/dynamic_enum.py,sha256=c_mgKtKrjb958LlCWeAApl1LMvVB7U_0SWl-8XFhRag,1339
|
|
412
417
|
autobyteus/utils/file_utils.py,sha256=QK0LvrwA5c9FDjpSrfPPEQbu_AirteJNiLad9yRahDY,512
|
|
413
418
|
autobyteus/utils/html_cleaner.py,sha256=mI2V83yFRfQe8NnN6fr6Ujpa0bPlq25NW5tTKaz2WGk,8672
|
|
419
|
+
autobyteus/utils/parameter_schema.py,sha256=WoBXXdUIA6zBwMIr5CIO1lVkNN8m1c0gV6sIcCsSNSI,13010
|
|
414
420
|
autobyteus/utils/singleton.py,sha256=YVURj5nRcMtzwFPxgy6ic4MSe3IUXNf6XWYuiXyhDOg,814
|
|
415
421
|
autobyteus/workflow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
416
422
|
autobyteus/workflow/agentic_workflow.py,sha256=u1A_HkgNlPmKn2nXz_0u_l9_DSyt4hxRJSyojGonvAA,3765
|
|
@@ -465,7 +471,7 @@ autobyteus/workflow/streaming/workflow_stream_event_payloads.py,sha256=jv1bVYg-7
|
|
|
465
471
|
autobyteus/workflow/streaming/workflow_stream_events.py,sha256=75P29jNgcL7Go7D9wVz236KTwPfmqc5K7hUvVnc94K0,2221
|
|
466
472
|
autobyteus/workflow/utils/__init__.py,sha256=SzaMZHnJBIJKcT_r-HOeyIcuxzRu2bGeFkOcMLJaalk,222
|
|
467
473
|
autobyteus/workflow/utils/wait_for_idle.py,sha256=FgHtz59DN0eg8Na1PkkVR55Ihdd2e5Gn_mr7RVHl4qI,2001
|
|
468
|
-
autobyteus-1.1.
|
|
474
|
+
autobyteus-1.1.9.dist-info/licenses/LICENSE,sha256=Ompok_c8HRsXRwmax-pGR9OZRRxZC9RPp4JB6eTJd0M,1360
|
|
469
475
|
examples/__init__.py,sha256=BtTQJ6yeHyksK5GC3kfN6RFR6Gcrwq1TBmp6FIIj3Z8,40
|
|
470
476
|
examples/discover_phase_transitions.py,sha256=NiFK_XzDCpWwmNsQqf0Ou2w6L5bofKIKODq7sH5uPzk,3679
|
|
471
477
|
examples/run_browser_agent.py,sha256=tpBJGIYYvVsNZAUo_WsZbhV_8fdeORUoHlQ8uQvnXPM,11737
|
|
@@ -473,10 +479,10 @@ examples/run_google_slides_agent.py,sha256=R3skoCO7gxNKCdqm_Px3YVlzSh5WzJc7KAxqO
|
|
|
473
479
|
examples/run_mcp_browser_client.py,sha256=6vEBxGtAuGffkFk-gr3NvqetO84IdhNzip5Jp7V1tSc,6772
|
|
474
480
|
examples/run_mcp_google_slides_client.py,sha256=l5B4sgDyyVEfL52WUiZw9mJjL5vOuD5ZJlnzIJbA-iw,11824
|
|
475
481
|
examples/run_mcp_list_tools.py,sha256=-dOM-7xyyDM2gp5e_8KZVGbX5ZxWqFQB9l-fHfR8XxY,7367
|
|
476
|
-
examples/run_poem_writer.py,sha256=
|
|
482
|
+
examples/run_poem_writer.py,sha256=cHOy-EoLG01cHTeX0Xf8a-Mti4CCoeDEqzw0mYG1QOU,13145
|
|
477
483
|
examples/run_sqlite_agent.py,sha256=wy1Mp_F7RR0WmvfmxsPLG9JFPi6SpTVd0x_Ep76bUQ8,13159
|
|
478
484
|
examples/agent_team/__init__.py,sha256=WIg0HENp1TUClJ3p2gIRn0C-VW9Qr7Ttqtedr4xQ3Jo,51
|
|
479
|
-
autobyteus-1.1.
|
|
480
|
-
autobyteus-1.1.
|
|
481
|
-
autobyteus-1.1.
|
|
482
|
-
autobyteus-1.1.
|
|
485
|
+
autobyteus-1.1.9.dist-info/METADATA,sha256=8s8KhexBEeXtnzdgwpaaAJHa0g4dSRLrnPEmVx0tHjA,10174
|
|
486
|
+
autobyteus-1.1.9.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
487
|
+
autobyteus-1.1.9.dist-info/top_level.txt,sha256=vNmK1Y8Irbc0iDPdRtr9gIx5eLM-c2v1ntItkzICzHU,20
|
|
488
|
+
autobyteus-1.1.9.dist-info/RECORD,,
|
examples/run_poem_writer.py
CHANGED
|
@@ -42,7 +42,7 @@ try:
|
|
|
42
42
|
from autobyteus.tools.file.file_writer import file_writer
|
|
43
43
|
# Import core workspace and schema components from the library
|
|
44
44
|
from autobyteus.agent.workspace import BaseAgentWorkspace, WorkspaceConfig
|
|
45
|
-
from autobyteus.
|
|
45
|
+
from autobyteus.utils.parameter_schema import ParameterSchema, ParameterDefinition, ParameterType
|
|
46
46
|
except ImportError as e: # pragma: no cover
|
|
47
47
|
print(f"Error importing autobyteus components: {e}")
|
|
48
48
|
print("Please ensure that the autobyteus and autobyteus-server libraries are installed and accessible in your PYTHONPATH.")
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
"""
|
|
2
|
-
Contains converters for translating LLM-friendly definition schemas into
|
|
3
|
-
internal task management objects.
|
|
4
|
-
"""
|
|
5
|
-
import logging
|
|
6
|
-
|
|
7
|
-
from autobyteus.task_management.task_plan import TaskPlan, Task
|
|
8
|
-
from autobyteus.task_management.schemas import TaskPlanDefinitionSchema
|
|
9
|
-
|
|
10
|
-
logger = logging.getLogger(__name__)
|
|
11
|
-
|
|
12
|
-
class TaskPlanConverter:
|
|
13
|
-
"""A converter to transform a TaskPlanDefinitionSchema into a system-ready TaskPlan."""
|
|
14
|
-
|
|
15
|
-
@staticmethod
|
|
16
|
-
def from_schema(plan_definition_schema: TaskPlanDefinitionSchema) -> TaskPlan:
|
|
17
|
-
"""
|
|
18
|
-
Converts a TaskPlanDefinitionSchema object from an LLM into a fully-hydrated,
|
|
19
|
-
internal TaskPlan object.
|
|
20
|
-
|
|
21
|
-
This process involves:
|
|
22
|
-
1. Converting each TaskDefinitionSchema into a system Task object (which generates a unique task_id).
|
|
23
|
-
2. Assembling these Tasks into a TaskPlan (which generates a unique plan_id).
|
|
24
|
-
3. Hydrating the dependencies by replacing task_name references with the newly generated task_ids.
|
|
25
|
-
|
|
26
|
-
Args:
|
|
27
|
-
plan_definition_schema: The Pydantic model representing the LLM's output.
|
|
28
|
-
|
|
29
|
-
Returns:
|
|
30
|
-
A system-ready, internally consistent TaskPlan object.
|
|
31
|
-
"""
|
|
32
|
-
logger.debug(f"Converting TaskPlanDefinitionSchema for goal: '{plan_definition_schema.overall_goal}'")
|
|
33
|
-
|
|
34
|
-
# Step 1: Convert "TaskDefinitionSchema" objects into final, internal Task objects.
|
|
35
|
-
# This automatically generates the system-level 'task_id' for each.
|
|
36
|
-
final_tasks = [Task(**task_def.model_dump()) for task_def in plan_definition_schema.tasks]
|
|
37
|
-
|
|
38
|
-
# Step 2: Create the final TaskPlan object. This generates the 'plan_id'.
|
|
39
|
-
final_plan = TaskPlan(
|
|
40
|
-
overall_goal=plan_definition_schema.overall_goal,
|
|
41
|
-
tasks=final_tasks
|
|
42
|
-
)
|
|
43
|
-
|
|
44
|
-
# Step 3: Hydrate dependencies: convert task_name references to system task_ids.
|
|
45
|
-
final_plan.hydrate_dependencies()
|
|
46
|
-
|
|
47
|
-
logger.info(f"Successfully converted TaskPlanDefinitionSchema to internal TaskPlan with ID '{final_plan.plan_id}'.")
|
|
48
|
-
return final_plan
|
|
@@ -1,110 +0,0 @@
|
|
|
1
|
-
# file: autobyteus/autobyteus/task_management/task_plan.py
|
|
2
|
-
"""
|
|
3
|
-
Defines the data structures for a task plan and its constituent tasks.
|
|
4
|
-
These models represent the static, intended structure of a plan of action.
|
|
5
|
-
"""
|
|
6
|
-
import logging
|
|
7
|
-
import uuid
|
|
8
|
-
from typing import List, Dict, Any
|
|
9
|
-
from pydantic import BaseModel, Field, field_validator, model_validator
|
|
10
|
-
|
|
11
|
-
# To avoid circular import, we use a string forward reference.
|
|
12
|
-
from typing import TYPE_CHECKING
|
|
13
|
-
if TYPE_CHECKING:
|
|
14
|
-
from autobyteus.task_management.deliverable import FileDeliverable
|
|
15
|
-
|
|
16
|
-
logger = logging.getLogger(__name__)
|
|
17
|
-
|
|
18
|
-
def generate_task_id():
|
|
19
|
-
"""Generates a unique task identifier."""
|
|
20
|
-
return f"task_{uuid.uuid4().hex}"
|
|
21
|
-
|
|
22
|
-
def generate_plan_id():
|
|
23
|
-
"""Generates a unique plan identifier."""
|
|
24
|
-
return f"plan_{uuid.uuid4().hex}"
|
|
25
|
-
|
|
26
|
-
class Task(BaseModel):
|
|
27
|
-
"""
|
|
28
|
-
Represents a single, discrete unit of work within a larger TaskPlan.
|
|
29
|
-
"""
|
|
30
|
-
task_name: str = Field(..., description="A short, unique, descriptive name for this task within the plan (e.g., 'setup_project', 'implement_scraper'). Used for defining dependencies.")
|
|
31
|
-
|
|
32
|
-
task_id: str = Field(default_factory=generate_task_id, description="A unique system-generated identifier for this task within the plan.")
|
|
33
|
-
|
|
34
|
-
assignee_name: str = Field(..., description="The unique name of the agent or sub-team responsible for executing this task (e.g., 'SoftwareEngineer', 'ResearchTeam').")
|
|
35
|
-
description: str = Field(..., description="A clear and concise description of what this task entails.")
|
|
36
|
-
|
|
37
|
-
dependencies: List[str] = Field(
|
|
38
|
-
default_factory=list,
|
|
39
|
-
description="A list of 'task_name' values for tasks that must be completed before this one can be started."
|
|
40
|
-
)
|
|
41
|
-
|
|
42
|
-
# This is the updated field as per user request.
|
|
43
|
-
file_deliverables: List["FileDeliverable"] = Field(
|
|
44
|
-
default_factory=list,
|
|
45
|
-
description="A list of file deliverables that were produced as a result of completing this task."
|
|
46
|
-
)
|
|
47
|
-
|
|
48
|
-
@model_validator(mode='before')
|
|
49
|
-
@classmethod
|
|
50
|
-
def handle_local_id_compatibility(cls, data: Any) -> Any:
|
|
51
|
-
"""Handles backward compatibility for the 'local_id' field."""
|
|
52
|
-
if isinstance(data, dict) and 'local_id' in data:
|
|
53
|
-
data['task_name'] = data.pop('local_id')
|
|
54
|
-
# Compatibility for old artifact field
|
|
55
|
-
if isinstance(data, dict) and 'produced_artifact_ids' in data:
|
|
56
|
-
del data['produced_artifact_ids']
|
|
57
|
-
return data
|
|
58
|
-
|
|
59
|
-
def model_post_init(self, __context: Any) -> None:
|
|
60
|
-
"""Called after the model is initialized and validated."""
|
|
61
|
-
logger.debug(f"Task created: Name='{self.task_name}', SystemID='{self.task_id}', Assignee='{self.assignee_name}'")
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
class TaskPlan(BaseModel):
|
|
65
|
-
"""
|
|
66
|
-
Represents a complete, static plan for achieving a high-level goal.
|
|
67
|
-
It is composed of a list of interconnected tasks.
|
|
68
|
-
"""
|
|
69
|
-
plan_id: str = Field(default_factory=generate_plan_id, description="A unique system-generated identifier for this entire plan.")
|
|
70
|
-
|
|
71
|
-
overall_goal: str = Field(..., description="The high-level objective that this plan is designed to achieve.")
|
|
72
|
-
tasks: List[Task] = Field(..., description="The list of tasks that make up this plan.")
|
|
73
|
-
|
|
74
|
-
@field_validator('tasks')
|
|
75
|
-
def task_names_must_be_unique(cls, tasks: List[Task]) -> List[Task]:
|
|
76
|
-
"""Ensures that the LLM-provided task_names are unique within the plan."""
|
|
77
|
-
seen_names = set()
|
|
78
|
-
for task in tasks:
|
|
79
|
-
if task.task_name in seen_names:
|
|
80
|
-
raise ValueError(f"Duplicate task_name '{task.task_name}' found in task list. Each task_name must be unique within the plan.")
|
|
81
|
-
seen_names.add(task.task_name)
|
|
82
|
-
return tasks
|
|
83
|
-
|
|
84
|
-
def hydrate_dependencies(self) -> 'TaskPlan':
|
|
85
|
-
"""
|
|
86
|
-
Converts the dependency list of task_names to system-generated task_ids.
|
|
87
|
-
This makes the plan internally consistent and ready for execution.
|
|
88
|
-
"""
|
|
89
|
-
name_to_system_id_map = {task.task_name: task.task_id for task in self.tasks}
|
|
90
|
-
|
|
91
|
-
for task in self.tasks:
|
|
92
|
-
# Create a new list for the resolved dependency IDs
|
|
93
|
-
resolved_deps = []
|
|
94
|
-
for dep_name in task.dependencies:
|
|
95
|
-
if dep_name not in name_to_system_id_map:
|
|
96
|
-
raise ValueError(f"Task '{task.task_name}' has an invalid dependency: '{dep_name}' does not correspond to any task's name.")
|
|
97
|
-
resolved_deps.append(name_to_system_id_map[dep_name])
|
|
98
|
-
# Replace the old list of names with the new list of system_ids
|
|
99
|
-
task.dependencies = resolved_deps
|
|
100
|
-
|
|
101
|
-
logger.debug(f"TaskPlan '{self.plan_id}' successfully hydrated dependencies.")
|
|
102
|
-
return self
|
|
103
|
-
|
|
104
|
-
def model_post_init(self, __context: Any) -> None:
|
|
105
|
-
"""Called after the model is initialized and validated."""
|
|
106
|
-
logger.debug(f"TaskPlan created: ID='{self.plan_id}', Tasks={len(self.tasks)}")
|
|
107
|
-
|
|
108
|
-
# This is necessary for Pydantic v2 to correctly handle the recursive model
|
|
109
|
-
from autobyteus.task_management.deliverable import FileDeliverable
|
|
110
|
-
Task.model_rebuild()
|