autobyteus 1.1.8__py3-none-any.whl → 1.2.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.
Files changed (127) hide show
  1. autobyteus/agent/bootstrap_steps/system_prompt_processing_step.py +6 -2
  2. autobyteus/agent/handlers/inter_agent_message_event_handler.py +17 -19
  3. autobyteus/agent/handlers/llm_complete_response_received_event_handler.py +6 -3
  4. autobyteus/agent/handlers/tool_result_event_handler.py +61 -18
  5. autobyteus/agent/handlers/user_input_message_event_handler.py +19 -10
  6. autobyteus/agent/hooks/base_phase_hook.py +17 -0
  7. autobyteus/agent/hooks/hook_registry.py +15 -27
  8. autobyteus/agent/input_processor/base_user_input_processor.py +17 -1
  9. autobyteus/agent/input_processor/processor_registry.py +15 -27
  10. autobyteus/agent/llm_response_processor/base_processor.py +17 -1
  11. autobyteus/agent/llm_response_processor/processor_registry.py +15 -24
  12. autobyteus/agent/llm_response_processor/provider_aware_tool_usage_processor.py +14 -0
  13. autobyteus/agent/message/agent_input_user_message.py +15 -2
  14. autobyteus/agent/message/send_message_to.py +1 -1
  15. autobyteus/agent/processor_option.py +17 -0
  16. autobyteus/agent/sender_type.py +1 -0
  17. autobyteus/agent/system_prompt_processor/base_processor.py +17 -1
  18. autobyteus/agent/system_prompt_processor/processor_registry.py +15 -27
  19. autobyteus/agent/system_prompt_processor/tool_manifest_injector_processor.py +10 -0
  20. autobyteus/agent/tool_execution_result_processor/base_processor.py +17 -1
  21. autobyteus/agent/tool_execution_result_processor/processor_registry.py +15 -1
  22. autobyteus/agent/workspace/base_workspace.py +1 -1
  23. autobyteus/agent/workspace/workspace_definition.py +1 -1
  24. autobyteus/agent_team/bootstrap_steps/team_context_initialization_step.py +1 -1
  25. autobyteus/agent_team/streaming/agent_team_stream_event_payloads.py +2 -2
  26. autobyteus/agent_team/task_notification/__init__.py +4 -0
  27. autobyteus/agent_team/task_notification/activation_policy.py +70 -0
  28. autobyteus/agent_team/task_notification/system_event_driven_agent_task_notifier.py +56 -122
  29. autobyteus/agent_team/task_notification/task_activator.py +66 -0
  30. autobyteus/cli/agent_team_tui/state.py +17 -20
  31. autobyteus/cli/agent_team_tui/widgets/focus_pane.py +1 -1
  32. autobyteus/cli/agent_team_tui/widgets/task_board_panel.py +1 -1
  33. autobyteus/clients/__init__.py +10 -0
  34. autobyteus/clients/autobyteus_client.py +318 -0
  35. autobyteus/clients/cert_utils.py +105 -0
  36. autobyteus/clients/certificates/cert.pem +34 -0
  37. autobyteus/events/event_types.py +2 -2
  38. autobyteus/llm/api/autobyteus_llm.py +1 -1
  39. autobyteus/llm/api/gemini_llm.py +45 -54
  40. autobyteus/llm/api/qwen_llm.py +25 -0
  41. autobyteus/llm/api/zhipu_llm.py +26 -0
  42. autobyteus/llm/autobyteus_provider.py +9 -3
  43. autobyteus/llm/llm_factory.py +39 -0
  44. autobyteus/llm/ollama_provider_resolver.py +1 -0
  45. autobyteus/llm/providers.py +1 -0
  46. autobyteus/llm/token_counter/token_counter_factory.py +3 -0
  47. autobyteus/llm/token_counter/zhipu_token_counter.py +24 -0
  48. autobyteus/multimedia/audio/api/autobyteus_audio_client.py +5 -2
  49. autobyteus/multimedia/audio/api/gemini_audio_client.py +84 -153
  50. autobyteus/multimedia/audio/audio_client_factory.py +47 -22
  51. autobyteus/multimedia/audio/audio_model.py +13 -6
  52. autobyteus/multimedia/audio/autobyteus_audio_provider.py +9 -3
  53. autobyteus/multimedia/audio/base_audio_client.py +3 -1
  54. autobyteus/multimedia/image/api/autobyteus_image_client.py +13 -6
  55. autobyteus/multimedia/image/api/gemini_image_client.py +72 -130
  56. autobyteus/multimedia/image/api/openai_image_client.py +4 -2
  57. autobyteus/multimedia/image/autobyteus_image_provider.py +9 -3
  58. autobyteus/multimedia/image/base_image_client.py +6 -2
  59. autobyteus/multimedia/image/image_client_factory.py +20 -19
  60. autobyteus/multimedia/image/image_model.py +13 -6
  61. autobyteus/multimedia/providers.py +1 -0
  62. autobyteus/task_management/__init__.py +10 -10
  63. autobyteus/task_management/base_task_board.py +14 -6
  64. autobyteus/task_management/converters/__init__.py +0 -2
  65. autobyteus/task_management/converters/task_board_converter.py +7 -16
  66. autobyteus/task_management/events.py +6 -6
  67. autobyteus/task_management/in_memory_task_board.py +48 -38
  68. autobyteus/task_management/schemas/__init__.py +2 -2
  69. autobyteus/task_management/schemas/{plan_definition.py → task_definition.py} +6 -7
  70. autobyteus/task_management/schemas/task_status_report.py +1 -2
  71. autobyteus/task_management/task.py +60 -0
  72. autobyteus/task_management/tools/__init__.py +6 -2
  73. autobyteus/task_management/tools/assign_task_to.py +125 -0
  74. autobyteus/task_management/tools/get_my_tasks.py +80 -0
  75. autobyteus/task_management/tools/get_task_board_status.py +3 -3
  76. autobyteus/task_management/tools/publish_task.py +77 -0
  77. autobyteus/task_management/tools/publish_tasks.py +74 -0
  78. autobyteus/task_management/tools/update_task_status.py +5 -5
  79. autobyteus/tools/__init__.py +54 -16
  80. autobyteus/tools/base_tool.py +4 -4
  81. autobyteus/tools/browser/session_aware/browser_session_aware_navigate_to.py +1 -1
  82. autobyteus/tools/browser/session_aware/browser_session_aware_web_element_trigger.py +1 -1
  83. autobyteus/tools/browser/session_aware/browser_session_aware_webpage_reader.py +1 -1
  84. autobyteus/tools/browser/session_aware/browser_session_aware_webpage_screenshot_taker.py +1 -1
  85. autobyteus/tools/browser/standalone/navigate_to.py +1 -1
  86. autobyteus/tools/browser/standalone/web_page_pdf_generator.py +1 -1
  87. autobyteus/tools/browser/standalone/webpage_image_downloader.py +1 -1
  88. autobyteus/tools/browser/standalone/webpage_reader.py +1 -1
  89. autobyteus/tools/browser/standalone/webpage_screenshot_taker.py +1 -1
  90. autobyteus/tools/download_media_tool.py +136 -0
  91. autobyteus/tools/file/file_editor.py +200 -0
  92. autobyteus/tools/functional_tool.py +1 -1
  93. autobyteus/tools/google_search.py +1 -1
  94. autobyteus/tools/mcp/factory.py +1 -1
  95. autobyteus/tools/mcp/schema_mapper.py +1 -1
  96. autobyteus/tools/mcp/tool.py +1 -1
  97. autobyteus/tools/multimedia/__init__.py +2 -0
  98. autobyteus/tools/multimedia/audio_tools.py +10 -20
  99. autobyteus/tools/multimedia/image_tools.py +21 -22
  100. autobyteus/tools/multimedia/media_reader_tool.py +117 -0
  101. autobyteus/tools/pydantic_schema_converter.py +1 -1
  102. autobyteus/tools/registry/tool_definition.py +1 -1
  103. autobyteus/tools/timer.py +1 -1
  104. autobyteus/tools/tool_meta.py +1 -1
  105. autobyteus/tools/usage/formatters/default_json_example_formatter.py +1 -1
  106. autobyteus/tools/usage/formatters/default_xml_example_formatter.py +1 -1
  107. autobyteus/tools/usage/formatters/default_xml_schema_formatter.py +59 -3
  108. autobyteus/tools/usage/formatters/gemini_json_example_formatter.py +1 -1
  109. autobyteus/tools/usage/formatters/google_json_example_formatter.py +1 -1
  110. autobyteus/tools/usage/formatters/openai_json_example_formatter.py +1 -1
  111. autobyteus/tools/usage/parsers/_string_decoders.py +18 -0
  112. autobyteus/tools/usage/parsers/default_json_tool_usage_parser.py +9 -1
  113. autobyteus/tools/usage/parsers/default_xml_tool_usage_parser.py +15 -1
  114. autobyteus/tools/usage/parsers/gemini_json_tool_usage_parser.py +4 -1
  115. autobyteus/tools/usage/parsers/openai_json_tool_usage_parser.py +4 -1
  116. autobyteus/{tools → utils}/parameter_schema.py +1 -1
  117. {autobyteus-1.1.8.dist-info → autobyteus-1.2.0.dist-info}/METADATA +4 -3
  118. {autobyteus-1.1.8.dist-info → autobyteus-1.2.0.dist-info}/RECORD +122 -108
  119. examples/run_poem_writer.py +1 -1
  120. autobyteus/task_management/converters/task_plan_converter.py +0 -48
  121. autobyteus/task_management/task_plan.py +0 -110
  122. autobyteus/task_management/tools/publish_task_plan.py +0 -101
  123. autobyteus/tools/image_downloader.py +0 -99
  124. autobyteus/tools/pdf_downloader.py +0 -89
  125. {autobyteus-1.1.8.dist-info → autobyteus-1.2.0.dist-info}/WHEEL +0 -0
  126. {autobyteus-1.1.8.dist-info → autobyteus-1.2.0.dist-info}/licenses/LICENSE +0 -0
  127. {autobyteus-1.1.8.dist-info → autobyteus-1.2.0.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=Qlj2GBGVHXCRAKj7CMkd416bO_qcudoY730iM-LfJfM,559
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=uqJvnj8Mm_m43RsKwc_lQfHH1D2jEBbHFWbZcQZnQtc,5703
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=YjDtISJ39v7-xfK8WZ1roJdj308uCsECo6OMKVM8hjI,3596
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=SjHiCPjzXQXAbx0GuywKPhZTxlHNYLkTUBH_0Cc08Mg,7813
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=wecvtww_MuS1ekv_WexWGlR11bP96N46dK6uoWkXpHo,8370
40
- autobyteus/agent/handlers/user_input_message_event_handler.py,sha256=WBV_yFILqEEGbwhzPxKRKdTZcbJosvRIXAs8m1jOHi4,4937
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=7JU3FgPzX06Yg6eJgB4GXzXcaWTpOcEMmyw5Ku0mwJk,2040
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=j0EXgv-cVYacFePNur_yrPhx8aH5OFdINxg2U_Y3Xr4,4410
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=elmg4qLV0MARYsgE0zbDTU8gLFpRe4FmBda0lzanDmE,2197
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=uIDttiadUSO-1QO0Qmjmc-YkKKnrYXsjxRLNj7ihzco,5049
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=U9oKMwbz_oYYw__djS_93IxG5pphQuJnWP_vOYKzUo0,2393
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=K31pYAujCqnuVXLd_c7gekJfczkagfLC2nI6TciWKBU,4768
56
- autobyteus/agent/llm_response_processor/provider_aware_tool_usage_processor.py,sha256=2IedGKFQ3Km5bsTWS9QVLya8x8aLV3RCH3Uv8jzAwUE,4049
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=atIxZxWtqyePyqFfK8EszWIt9ny6G1AEs3hdfIaFQv0,4032
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=0BoN_sXbUZ50BAS8sb3IGuIqIloZnC6kg7EzzRZrw8w,5879
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=LyWb9wyPl7nZZgiKYK2jtwQj1oe2I40kDyjJgRP5oBI,1717
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=VjjFiQ2z3Sxb_ZBVJ1omCcqompA2ttN815YEnx0R2lE,5007
90
- autobyteus/agent/system_prompt_processor/tool_manifest_injector_processor.py,sha256=fAJXW_lWFqfQIT0HkEa_3A9r1Xl9TyGdPclzkyNxCo8,4417
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=0X_0W5dEYBZmWzVp6iiBwTCb0Gdm1Om_PxcoOyIHuW4,1546
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=On8KGadeN17RCst3HuVPCPV5dbdG0raufpqwvUOv06I,2955
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=Kw9EZ_5iyatlf69VQaUf8nKgRjGxBef4VctLocLzHG0,3569
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=l959gPAVSF17ym9P4y7vf4LuiibcVzom2y0AEmQT7Ak,1476
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=e6kFgIKDUuRrgjp84rX5Db5XUfr8DalD3h1qYQN7EcM,2438
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=8Di_xuYI8l_i-_YnZY6ogO4o8iUwsEo5GOpYJOTk4Ik,1701
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=F5C9dKjpfvN7qFcIh50_cl-mIlYLhsak2U1VAqHIkk0,396
158
- autobyteus/agent_team/task_notification/system_event_driven_agent_task_notifier.py,sha256=lEzMuLInSBX9wCgWpRNhHI-3Egkf9dUSWYRGTEyZb8Y,8303
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=HmtmSO836Xmm7QHCJ0SFccZDDUM1SpHqc6e6Ujz3bPI,9602
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=nEmtz3O53Fzf-BGxSHYjkjw7aV8Eb1eT-t_NkJOzuGA,16151
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=MMurHzqXcqls4V4UDM07Tk8efG6fI7TMNYMWs0S_fng,3461
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
@@ -183,27 +186,31 @@ autobyteus/cli/workflow_tui/widgets/logo.py,sha256=TvfxdBvDXknf7-2vD3xkHuZkiymhM
183
186
  autobyteus/cli/workflow_tui/widgets/renderables.py,sha256=hkRTjwz5DPSqaO8_8Zuvt1XxxAePZ9vGp582b3UMF18,3030
184
187
  autobyteus/cli/workflow_tui/widgets/shared.py,sha256=vXUrJ0vU7gMLzi7j8mAdhSMgPMno1LanhHxkeyMOQtA,1732
185
188
  autobyteus/cli/workflow_tui/widgets/status_bar.py,sha256=PLkw2IxJ4T2cDt-3HKRhnIme4luYIvXr1HpBVmfJH1c,455
189
+ autobyteus/clients/__init__.py,sha256=19KBdiG_V9DU0R1GsAPc4iSKk4HQhegI9PpJF_O_j44,331
190
+ autobyteus/clients/autobyteus_client.py,sha256=NyM6-yCKigs_LIoIVNUEec7FS12TpdEyncdg0lDWHHE,12563
191
+ autobyteus/clients/cert_utils.py,sha256=SL3CF9aoRzVScElXn258kh1YnxqE2Av7DRmu0QHUYMw,3808
192
+ autobyteus/clients/certificates/cert.pem,sha256=qb4Te3q7-b-_09GvHtX5dV--5_Vo_Dn_M6nbtCjrtoQ,2098
186
193
  autobyteus/events/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
187
194
  autobyteus/events/event_emitter.py,sha256=WKKwISFo2yDx0OpLjGFtXEl3DVV1siB0lXdndIAHhBg,2522
188
195
  autobyteus/events/event_manager.py,sha256=c5RMlCtKzkHgQZkePBvqxPAxxOu-NapUrl8c2oRDkT8,5841
189
- autobyteus/events/event_types.py,sha256=yFfCwSAWth-LCULklW2wjNp2pfZjjEow-_PMIcBajBo,3022
196
+ autobyteus/events/event_types.py,sha256=5CEMe2VmZ1L5ksKzMPqLRgPjXhxF31BD3ehrGJWfRJQ,3016
190
197
  autobyteus/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
191
- autobyteus/llm/autobyteus_provider.py,sha256=SQ_RsGVc1ElHQNLebxMG_8Ohm7ff5Y2cLlGbROTcOmI,8242
198
+ autobyteus/llm/autobyteus_provider.py,sha256=TuEXpiTkCN6V-hBc4ss8vR-4lA83VEmdlFDDmcooCzw,8387
192
199
  autobyteus/llm/base_llm.py,sha256=OCiInGSNApZ-bcrdEMt3siOFwNkB9UwFGfqVNYImzEo,8036
193
- autobyteus/llm/llm_factory.py,sha256=jeRIZoA5QArtNzQKC6VVWEVcHy2-z4evRiIL2_Qicxs,18601
200
+ autobyteus/llm/llm_factory.py,sha256=9UyZ9KqWNH-fVRaicIabicbxMHlQdWM59nrXyy8Y4hc,20081
194
201
  autobyteus/llm/lmstudio_provider.py,sha256=RkM_drORSZ2zcSxN2Th5Upiva2oesIPw-6viqe2w9dY,4315
195
202
  autobyteus/llm/models.py,sha256=ownBklNZrtJ_HWeMexa2T3s9TjWG0xggOt7wYrRs2l4,6963
196
203
  autobyteus/llm/ollama_provider.py,sha256=CfcgC-DEWULjTwJiWazB5IXjErEyy1zZ41glrWhpj0g,4427
197
- autobyteus/llm/ollama_provider_resolver.py,sha256=EI0lTqhejSeuFkJCLF0cPQ2PSmCjXjcXNSryvwvNBYg,1851
198
- autobyteus/llm/providers.py,sha256=7Dm9JQpwMZHV__sYNGuLzQfK3ZaW0AAbryKDl26V8ys,372
204
+ autobyteus/llm/ollama_provider_resolver.py,sha256=tH7kg2LbVjVVi3Y7veKXY0k2yEIqqOpfPUBAQvDwCYE,1889
205
+ autobyteus/llm/providers.py,sha256=q9olzK1SRlsgJVbkwQH9jqVDCu3wK1-Ta6aNm4Zg8pM,392
199
206
  autobyteus/llm/runtimes.py,sha256=MzFNo3R1U3uWYAkuk-uuaba01Y0dDKQgVY_ElH_0dxU,315
200
207
  autobyteus/llm/user_message.py,sha256=2hmICY_W7lwjYco3qT4zY1ELsBkpyxR2CjOgh33NMq0,3546
201
208
  autobyteus/llm/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
202
- autobyteus/llm/api/autobyteus_llm.py,sha256=n-QQA4vNRZTkCkjqSUXM8yhSGI-XvLEOyRbHBxZFKLU,4929
209
+ autobyteus/llm/api/autobyteus_llm.py,sha256=xwby9QELHFgrg1GoDSd66huY7kJ280dbxSdT2OZAGyQ,4919
203
210
  autobyteus/llm/api/bedrock_llm.py,sha256=8B7dNSkQPRfRi8GAPEB31A2pZLZfTIQUtxXjQ_E4rAE,3768
204
211
  autobyteus/llm/api/claude_llm.py,sha256=quPfUmg3oASRKVer01_tIcBxrqNP-xIenCU-tWbfTlU,5286
205
212
  autobyteus/llm/api/deepseek_llm.py,sha256=TEWtXAqM4OuKH1etj5kknzkbPsRGvEpWzTq_CoAU6po,894
206
- autobyteus/llm/api/gemini_llm.py,sha256=wgOtACJtGR88kfNaJ6bkGEpksS_Ef5Gmsz7CPtPfNNc,6133
213
+ autobyteus/llm/api/gemini_llm.py,sha256=273psG-IlDR4dAbzTjUDmcjbrRC8Fhc6BCHn19sVKRQ,5540
207
214
  autobyteus/llm/api/grok_llm.py,sha256=oZIkJrRhbvcKSrho5hLWqqRxO5SUfbwutKW1g-mPQC0,875
208
215
  autobyteus/llm/api/groq_llm.py,sha256=btkyeVPjke-fWxuC42r7p8DXYuAVJy3gfYpnTLmZoHU,3485
209
216
  autobyteus/llm/api/kimi_llm.py,sha256=oUgmP_D0ppr0zKhgRVyjxRMP8cEMGXB2DFUgXYqRlCg,873
@@ -213,6 +220,8 @@ autobyteus/llm/api/nvidia_llm.py,sha256=zHRuhJjS4KedRAb1hpb9jxO3Pnw0Eu8Dc9mKrotM
213
220
  autobyteus/llm/api/ollama_llm.py,sha256=PmrgxOS-RU59DxUAw4aAvKeJHghpWcb3PKgsZk-wZTo,6971
214
221
  autobyteus/llm/api/openai_compatible_llm.py,sha256=TFEem7RLpqtB9-ExHYBDk9dC0iJe2fAeLLJRE6sGciM,9108
215
222
  autobyteus/llm/api/openai_llm.py,sha256=414fWDFvTm7IkG3STfYCWT4mz1FQwEGnD4N5MpTyf6M,905
223
+ autobyteus/llm/api/qwen_llm.py,sha256=wN4fHEfjpuece0xd19elwknBeRKJnhj--btNQl3_e_o,877
224
+ autobyteus/llm/api/zhipu_llm.py,sha256=RrwWaSTvmQ1dF-fMK0QAxrlbB4PmLlcd9_1zXL67D4I,892
216
225
  autobyteus/llm/extensions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
217
226
  autobyteus/llm/extensions/base_extension.py,sha256=ZqwmwNKBURFseAeRec53tpC4v1mnRTubdifk575eqlo,1273
218
227
  autobyteus/llm/extensions/extension_registry.py,sha256=b4b3U5cQB9kZpJpqmT_e1lviLzjGQBsp7gJuYppjpjU,1254
@@ -224,7 +233,8 @@ autobyteus/llm/token_counter/deepseek_token_counter.py,sha256=YWCng71H6h5ZQX0Drj
224
233
  autobyteus/llm/token_counter/kimi_token_counter.py,sha256=KuzgcbSWiqybCKHaukd-n917zEgUFebGXMAxlkZxue8,854
225
234
  autobyteus/llm/token_counter/mistral_token_counter.py,sha256=YAUPqksnonTQRd1C7NjjFUPsjEDq_AKWxTc5GNTVGqU,4760
226
235
  autobyteus/llm/token_counter/openai_token_counter.py,sha256=hGpKSo52NjtLKU8ZMHr76243wglFkfM9-ycSXJW-cwE,2811
227
- autobyteus/llm/token_counter/token_counter_factory.py,sha256=1xYYJoX7DyOgQz54a8_P24I8NHgKNsa8WZ7bLQEHRFQ,2193
236
+ autobyteus/llm/token_counter/token_counter_factory.py,sha256=PeH_uPHWCWPrfrQYSShzDQsygw0D5XdurzPzcKBoRU4,2363
237
+ autobyteus/llm/token_counter/zhipu_token_counter.py,sha256=5vU__vhclgqgPBg1jq8Cy4e22ltzG4CCm-xWrUiW6qk,846
228
238
  autobyteus/llm/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
229
239
  autobyteus/llm/utils/llm_config.py,sha256=yzRlUmeyGkKvb-jfywGaR3tWGeQ2l6f8GZ8KdFzHNDk,9911
230
240
  autobyteus/llm/utils/media_payload_formatter.py,sha256=S-pZxIlGHuKzzrHbqv7SUx99BfYlZ7dVUGcUrGDShF0,3676
@@ -235,25 +245,25 @@ autobyteus/llm/utils/token_pricing_config.py,sha256=6oRkG6R-BrP54sTI5Btjpy4s2c7b
235
245
  autobyteus/llm/utils/token_usage.py,sha256=C8YJH_-sYKJHVcE47hwwk-p0VTAFF0ezFGjSbc0mbzI,601
236
246
  autobyteus/llm/utils/token_usage_tracker.py,sha256=RC4zL5k343-wLm0jXc-rwAOMhpxs_1klnrh-xi2J7W8,4220
237
247
  autobyteus/multimedia/__init__.py,sha256=8sssScdnrek2-1-s7wStlOc37ZilLTf0cJzMqVzW4Zw,589
238
- autobyteus/multimedia/providers.py,sha256=onG9G_NuzhWe0Fg9N73aXls0D081lvP0-RVEBCrU6Dg,99
248
+ autobyteus/multimedia/providers.py,sha256=odBXtoEXYtFULX_lnBR9rGEcWOAzMbUD0qF2Fr_Y1Nc,133
239
249
  autobyteus/multimedia/runtimes.py,sha256=mgmA06Ng7Gh6UW6YNi0O5CmwV6oDw3kX2qxLssUqG0o,180
240
250
  autobyteus/multimedia/audio/__init__.py,sha256=RsUo63rEz8_HLJ7RonaSrYkoDKwhBmHomeseTnBX-Hg,287
241
- autobyteus/multimedia/audio/audio_client_factory.py,sha256=v8iPQmXB0NR18Rvh2rnHTlKRgWeVWQHJE7F1zrwjCT4,5356
242
- autobyteus/multimedia/audio/audio_model.py,sha256=bhBovsaw9yAYZNlpB3-gObtRoClzoQUaxwGInHt0iVM,3745
243
- autobyteus/multimedia/audio/autobyteus_audio_provider.py,sha256=wjtkVuma0QzTlAnpHJ-k1_8hewcbhuPw2zxDcx2o_dw,4761
244
- autobyteus/multimedia/audio/base_audio_client.py,sha256=Y0iquuQgfhpipgAg8svm27psLs3pdEJOH4yqme-y7Dk,1410
251
+ autobyteus/multimedia/audio/audio_client_factory.py,sha256=ivR8iM3wYFGuz7PFnM-7dDgrJM8K9xUOwbOIj7tihpk,6382
252
+ autobyteus/multimedia/audio/audio_model.py,sha256=tiFRspsfrlOifjPH7wJDNxT7Rl695RkjD5VLNiJvI0Q,4069
253
+ autobyteus/multimedia/audio/autobyteus_audio_provider.py,sha256=p4vfp8orsKiYGtrtNYfXyJlP95b-FKWRxiACug0GfuI,4934
254
+ autobyteus/multimedia/audio/base_audio_client.py,sha256=zl12JZrvDUmKEnNhEtdY7jXK0TYmil9rUgIkU_VWbL0,1498
245
255
  autobyteus/multimedia/audio/api/__init__.py,sha256=_LHCfFqfwvbr0qSTLlioTcnb_EnfZtY1usY6nHegr1k,168
246
- autobyteus/multimedia/audio/api/autobyteus_audio_client.py,sha256=aBnvJWN2lNClfMmEjmTXtJXRHlDe9tehAPM1MZXnsM0,2437
247
- autobyteus/multimedia/audio/api/gemini_audio_client.py,sha256=YKyvHJUULYt4ofyX8oMb7Wru01gqpGjqgTwTT5wPx3g,8572
256
+ autobyteus/multimedia/audio/api/autobyteus_audio_client.py,sha256=KhhWCWSdbmYp3rVM3pASjWr4qZHD69Xi23hUZ1mLCgU,2641
257
+ autobyteus/multimedia/audio/api/gemini_audio_client.py,sha256=Mg9c7_7am8iuBNQQv1To37H8mY1Vc1xx5ZKtEfp5Sig,6410
248
258
  autobyteus/multimedia/image/__init__.py,sha256=YWwPtRgbTtPoZBgAmjt87P-pTREOZEpJzDbKhD9jSRg,287
249
- autobyteus/multimedia/image/autobyteus_image_provider.py,sha256=JBQS36ZZFZ62EIEWeapSe93q6jUYotcxm1bCsPLT2UI,4871
250
- autobyteus/multimedia/image/base_image_client.py,sha256=CAqr1YdpLpd7LiJocQtUFYlykkygPa4ls6i-CAmUkBY,2643
251
- autobyteus/multimedia/image/image_client_factory.py,sha256=hOldDy5phvTKM8-dVSVP35eI8GwRld7bSLEp1GRZfuU,5453
252
- autobyteus/multimedia/image/image_model.py,sha256=_Cb7up7zumdHa9F09D1VqEHmySn6vhUFTyo6rcwfy54,3745
259
+ autobyteus/multimedia/image/autobyteus_image_provider.py,sha256=mioCkUnp-ogNAt53lpdjijd5sxmvr6piCutiA3jWih0,5044
260
+ autobyteus/multimedia/image/base_image_client.py,sha256=sDm2n8yol590tWkujYc_FDf2cuyBNP0t4voRz9vuGr4,2819
261
+ autobyteus/multimedia/image/image_client_factory.py,sha256=oKNmQpIY_vMjsVDDQ_ZhrAzuJXBAmCmQv3b2IKryFzY,5636
262
+ autobyteus/multimedia/image/image_model.py,sha256=BxkWiQr30Fp5o6mLYMYD_6XAnElZQCU5yYe-MBN52jk,4077
253
263
  autobyteus/multimedia/image/api/__init__.py,sha256=Vh_FC_6rxcPhJqFpAvgv3yBqHYVmxrzjyVSSrCM7rww,255
254
- autobyteus/multimedia/image/api/autobyteus_image_client.py,sha256=XsYINBbW8oUktP6YTWHRIl0bbC8vUc8MJVzTQQh1ZRI,3901
255
- autobyteus/multimedia/image/api/gemini_image_client.py,sha256=O-WrUoUuBTMLB17shqoX202aNzA0RdzCsDY4Kdu76lA,7663
256
- autobyteus/multimedia/image/api/openai_image_client.py,sha256=XgX_OK0K-fN63j2-FRlj2D0-aYEn3c6ZFiTjJRlAf0I,6204
264
+ autobyteus/multimedia/image/api/autobyteus_image_client.py,sha256=MYkd-w9AMjNEEGiCaDepbMty1b0cBhyOFF3P2ybv4jc,4184
265
+ autobyteus/multimedia/image/api/gemini_image_client.py,sha256=OXYd9av43VjezuiaqSNehiA28EMlGlvGR2C4FC0tDes,6108
266
+ autobyteus/multimedia/image/api/openai_image_client.py,sha256=eiC2hh3y7flLQPWQQiuaesaTR-PBa9UD96go41mFEt8,6240
257
267
  autobyteus/multimedia/utils/__init__.py,sha256=pH2c5CB2V-QXVl6SgL6N70KKH0VShByhZHS8m7L9TCg,298
258
268
  autobyteus/multimedia/utils/api_utils.py,sha256=dbrIQzRnoz66CwaZOIG4353h5ccbTEIvUPUSRfgIWOQ,613
259
269
  autobyteus/multimedia/utils/multimedia_config.py,sha256=1CU1G0LqURt6DOrcvj2UnPUQ0Q2Mh4vzeKJEGbHoIno,953
@@ -286,37 +296,37 @@ autobyteus/rpc/server/base_method_handler.py,sha256=6sKWucR1vUYeritjJPHIX_sCQOD2
286
296
  autobyteus/rpc/server/method_handlers.py,sha256=Zqrr1R3yu_hVD0qCOPpxXm4ujkvdds9wCCneIeT3gU8,14702
287
297
  autobyteus/rpc/server/sse_server_handler.py,sha256=3F1LNLw6fXcB08hmWOUhGZROYhpPdk8xwz2TakiR-2M,16273
288
298
  autobyteus/rpc/server/stdio_server_handler.py,sha256=pSAvVtxyo0Hytzld7WINeKHvGBqEjp0Bad-xkY2Rul4,7398
289
- autobyteus/task_management/__init__.py,sha256=cj9TXF4I4ROwqiX2MIwPuFN_9kFeIZhWlkbvP2m9S_Q,1639
290
- autobyteus/task_management/base_task_board.py,sha256=s6ijobMhkMwNZlgfsFkoPp4jh0E-lVDZKbdOeRTWiuk,2187
299
+ autobyteus/task_management/__init__.py,sha256=d8OewIpNyrBOzmYFWF-g-dV2KsjCEawP7UdmOrAUykg,1604
300
+ autobyteus/task_management/base_task_board.py,sha256=w-mvFFgzeQuY0_P9VNWTID7SX623-iivfM1w9R4JYfk,2363
291
301
  autobyteus/task_management/deliverable.py,sha256=cXuWD7UhP_oElhUzLGGdCwE8Fn4IokURuanz4zg35Ps,490
292
- autobyteus/task_management/events.py,sha256=sV32iH5KGoO2lgkUlU1lGgqaOJvL8BrsJpNyLHSx01s,945
293
- autobyteus/task_management/in_memory_task_board.py,sha256=5B8ib7H9Ff6XYc1BzY7OaP4undyhhxPbqcZMsc2WRDI,5003
294
- autobyteus/task_management/task_plan.py,sha256=VdUr9kJ5rAEadvw8nOE2mcDOCs4lP-jJOcKJks_pmzo,5096
295
- autobyteus/task_management/converters/__init__.py,sha256=W-L-IcBeyhCRc0E2MW-pwJk0d4-SGwSdESszsIfc9b0,309
296
- autobyteus/task_management/converters/task_board_converter.py,sha256=VJdcY6x0qBr0oitZSW6cZZJp7Kgnmr9WfWATmb160iY,2480
297
- autobyteus/task_management/converters/task_plan_converter.py,sha256=WEOSuTUBE7lvtHUEyRPu7wcRnMk_eHpzcMBTnUmVPxw,2093
302
+ autobyteus/task_management/events.py,sha256=bDxlCW5iKtILcEF4T34AM3anQqaso8G-yDuiaAUd8zg,824
303
+ autobyteus/task_management/in_memory_task_board.py,sha256=YkeLAn7WF7VGREDSrknwRAYBGj2vOM0zN6QaHxthXTg,5522
304
+ autobyteus/task_management/task.py,sha256=nsxvcYavYG7I-AQo4JBHV7n6iYtZJuBJ3cOJXF4vtEs,2598
305
+ autobyteus/task_management/converters/__init__.py,sha256=pB1E9lO-HjY0VUFZahTbS23VUC_0uP2L1VdF3__FnGA,233
306
+ autobyteus/task_management/converters/task_board_converter.py,sha256=lm6Rkn95akWeIGJ1hv3MKR9aNRy9BGsgpPais_9WM3Y,2105
298
307
  autobyteus/task_management/deliverables/__init__.py,sha256=RYBzSxKgzPnh8uE0TA2hA_SiI3dv3_dgvME0K-5AvvI,150
299
308
  autobyteus/task_management/deliverables/file_deliverable.py,sha256=tTdpgdAtXwkZ-US0n8ilEl6CYI8dRVXhGEdBBCTay8c,425
300
- autobyteus/task_management/schemas/__init__.py,sha256=CLn8--yMiBfqK1lyjkVXYjrOSnMuO_3QXbKVqQo3T-U,520
309
+ autobyteus/task_management/schemas/__init__.py,sha256=MfNFFHjosjuMKFRwLNwlQFFOqZOzmggWvWdxbJA2pw8,514
301
310
  autobyteus/task_management/schemas/deliverable_schema.py,sha256=8_3F93gAeTfp6NeHqhIQLWFMpVwfiDuSOk0lnHnxxFU,603
302
- autobyteus/task_management/schemas/plan_definition.py,sha256=oaudmKfkNK8foWVa0zd4hBGNK1SJ8rC8bdWF6aCY5Xw,1961
303
- autobyteus/task_management/schemas/task_status_report.py,sha256=TSWGmbue3-ag0bZziB5PWao5burcvZYa2wJpNaMseF8,1676
304
- autobyteus/task_management/tools/__init__.py,sha256=oKb6MLdUrD6h-oCnaZiQqlEvPwp91wRoQG8cg4lYsig,415
305
- autobyteus/task_management/tools/get_task_board_status.py,sha256=UX2d376GXF6v0KQNowuItbIR7mcSG6qmIGpf0VRyDbQ,2767
306
- autobyteus/task_management/tools/publish_task_plan.py,sha256=7Bcfh0pF3KI-CasXT2DDd8rG0xPVL0Vut-tARAGXtf8,4785
307
- autobyteus/task_management/tools/update_task_status.py,sha256=HCaO1qQhnSd3H5dG7RHkW1D42vMV4-hBS7a5hx_C-IQ,5943
308
- autobyteus/tools/__init__.py,sha256=HfSOKfTtOyXMIY8VnVC_dgTKKWq4ueoxN1IJAAniNOk,3033
309
- autobyteus/tools/base_tool.py,sha256=sRrfbvaw7bFUC_GKYrJyKnBr9nnmzrfInUto09lkmLY,8706
310
- autobyteus/tools/functional_tool.py,sha256=_WBv_mZCTIaekBwlOLiV8A7nLZhJiR-HYG6WJDij-eg,10393
311
- autobyteus/tools/google_search.py,sha256=OLY_pBc3_SEs69ELyq4DDvB8txOUxF7QV6rJCKu6tAA,5890
312
- autobyteus/tools/image_downloader.py,sha256=IQ-P1IBwLvbp8jyhtxLu54acWldJ6miFYkVIz7tHCMQ,4868
313
- autobyteus/tools/parameter_schema.py,sha256=-eXYYmP01_XBycF35FFKk87YIzzdFpqZ3dSV_xTF-Kc,13010
314
- autobyteus/tools/pdf_downloader.py,sha256=0WeznZhkYvXvgU2CH21q6LSVEQm8S1mAm7gtw_CjsJM,3927
315
- autobyteus/tools/pydantic_schema_converter.py,sha256=E4WIQnPG37l3_niu2XZRx43eGOSynfFuRNpxeXKRVOA,3402
316
- autobyteus/tools/timer.py,sha256=hPei4QONtpdQrSS72_SNw6-j-gVd5NT2RScAhqMhRSY,7384
311
+ autobyteus/task_management/schemas/task_definition.py,sha256=ytFK2kikLnQjPgSj6X6OTethqljvTEnZ9U-tcxubZF8,2154
312
+ autobyteus/task_management/schemas/task_status_report.py,sha256=FgF7NNtK-GMfQNK610wlrWuEsbh43x4eAVk-d2ccO5I,1884
313
+ autobyteus/task_management/tools/__init__.py,sha256=OHzl_sSU-VTttwga9XKD97zMPlUdpzEQeCT1v-dqUqk,523
314
+ autobyteus/task_management/tools/assign_task_to.py,sha256=F1FhhEAteBdofAsUMm-g8mXhmAWJflw0L306Y1_OdYs,6245
315
+ autobyteus/task_management/tools/get_my_tasks.py,sha256=2SQ7UmckvlpTZWTh5JJkvfqt7n_718NmYIHk1g_rZeA,3312
316
+ autobyteus/task_management/tools/get_task_board_status.py,sha256=eglF_IWVCQwJBJ4gmHhGXjnDGFHRWYz45G0UbRzsf7o,2748
317
+ autobyteus/task_management/tools/publish_task.py,sha256=0A3gEhoiAYEECeWogMDXMSb9zsWc6W8NdV8Mz9T7Em4,3366
318
+ autobyteus/task_management/tools/publish_tasks.py,sha256=WkNBt6H8IQNqhCOFvp4n1H4FonbwtgqHymcVNh0xF40,3157
319
+ autobyteus/task_management/tools/update_task_status.py,sha256=OtlVhe3apLTcw_0yfAIdGEz9LdL4gIEmCy4knNmgcXA,5921
320
+ autobyteus/tools/__init__.py,sha256=YHODhicVhk5YOv4h83BSiKgd_LmqinLN1CLRlD7rwwE,4439
321
+ autobyteus/tools/base_tool.py,sha256=s7wf06jqxWBX3pu18cgooxN9RQ8u6W3GCV8I5Zwi8UA,8738
322
+ autobyteus/tools/download_media_tool.py,sha256=K42E3l1e3tb7-ujGUKTSr-LwbAEcVCeZGPj5aGTq7n8,6549
323
+ autobyteus/tools/functional_tool.py,sha256=FyifQc5D0CZIpF_5GsOV72kFMrTL_nlvVuFXHvexuKY,10393
324
+ autobyteus/tools/google_search.py,sha256=2x86gNHk6PGe8fQRDLw099g1KG2MXLbOW_dBex4PJB4,5890
325
+ autobyteus/tools/pydantic_schema_converter.py,sha256=qDVCXDBUWuXxYzO0d_taFum1gd1Av1VvHCvTzTtilF0,3402
326
+ autobyteus/tools/timer.py,sha256=1PI3fhmwQDgRjmXBDX6NbsE3zqNaXeuitXX75IdVog0,7384
317
327
  autobyteus/tools/tool_category.py,sha256=pSf3C4kDc5ZGRYLmlGaU0th9YgdI-3TSS_yOdqbEzLU,740
318
328
  autobyteus/tools/tool_config.py,sha256=gnzGweccECNmCeufkzbskHeFOt3f0431DyAmMhqNVn4,3564
319
- autobyteus/tools/tool_meta.py,sha256=X2JOY5fcPSvUMdgUQr0zTV5bRDuAmF7vuUMax5X5DhE,4417
329
+ autobyteus/tools/tool_meta.py,sha256=K_jKes6NSzgHte-iQVzPOHTscPOFM6Uh7M0tMMECbgI,4417
320
330
  autobyteus/tools/tool_origin.py,sha256=X1RqyDMWg2n7v0TciJHh5eiXgDDoU86BEQL3hx975jk,269
321
331
  autobyteus/tools/tool_state.py,sha256=CwmEu7GTdaE72QIsdsXQu0AmTxQTp5hMncFcY58PkGo,746
322
332
  autobyteus/tools/utils.py,sha256=PuHGlARmNx5HA2YFVF5XA36MoeAyFL6voK10S12AYS0,546
@@ -324,11 +334,11 @@ autobyteus/tools/bash/__init__.py,sha256=X38g3OVhlr-6aLIYfcSyh8DzqHAEh8dSzfEH1NE
324
334
  autobyteus/tools/bash/bash_executor.py,sha256=3VqilVSuzomMpqv7WWy6ukqhLJyiBy1tALRcDql8h8w,4502
325
335
  autobyteus/tools/browser/__init__.py,sha256=fNt3qo9ykOIhfG7CmbelCabMydhPTWL-5timHXBa8ZI,91
326
336
  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=RuBtv9OfqSXIlSlIdaNv5Pcv82_FPnaK510kdHwr9sM,3099
337
+ autobyteus/tools/browser/session_aware/browser_session_aware_navigate_to.py,sha256=zc-xFSc5VqreUfTWiDX2jvK9TuI5d2nB4zUY8MxydhM,3099
328
338
  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=lgZF4bIReUQjlsIWNlNk8za_-oo9nGiZafRvO1wa0FE,7014
330
- autobyteus/tools/browser/session_aware/browser_session_aware_webpage_reader.py,sha256=Gltfx7xx7Ku0Jpyf8uKoRe7SBjAfajr1jBqXGUcZvOc,3996
331
- autobyteus/tools/browser/session_aware/browser_session_aware_webpage_screenshot_taker.py,sha256=xm3M2-9xCZ4GjjUQYcCmIwb-xtw1cPqW94ar5x3l9SE,4711
339
+ autobyteus/tools/browser/session_aware/browser_session_aware_web_element_trigger.py,sha256=eowahKEabb63L_lgo1ZkO33fs2oikdKsaoeJ0hnvp14,7014
340
+ autobyteus/tools/browser/session_aware/browser_session_aware_webpage_reader.py,sha256=zyey2FslycuZaIoK2KTnFzIY3ZM0hKVOWOyNsn0doX4,3996
341
+ autobyteus/tools/browser/session_aware/browser_session_aware_webpage_screenshot_taker.py,sha256=fzN1IdlpQREBkCWxdIDRT-2xbg5Nx6VViM-Rirg5RII,4711
332
342
  autobyteus/tools/browser/session_aware/shared_browser_session.py,sha256=WjdkY6vrE96hluwHQS8U0K5z3XE8QMw2-fDRv5VFhXA,326
333
343
  autobyteus/tools/browser/session_aware/shared_browser_session_manager.py,sha256=OAFzqLHWWxtVnU-zYGYFPLwiVTzhW7C6UA3y70-lBQU,1103
334
344
  autobyteus/tools/browser/session_aware/web_element_action.py,sha256=jPWGmqoTB7Hpk6APQOWglLUaJmf5c_nR8Hh0AbT4fkM,477
@@ -337,27 +347,28 @@ autobyteus/tools/browser/session_aware/factory/browser_session_aware_web_element
337
347
  autobyteus/tools/browser/session_aware/factory/browser_session_aware_webpage_reader_factory.py,sha256=WmW9yU_KVjvDNSlxWPkdXljM9h4-zZRoZH7GP6sQndA,1335
338
348
  autobyteus/tools/browser/session_aware/factory/browser_session_aware_webpage_screenshot_taker_factory.py,sha256=uxv7cLtlXg9Vdl82_r1K-wEHKfXzrmngGwT8rd5u4JQ,717
339
349
  autobyteus/tools/browser/standalone/__init__.py,sha256=0J-_GM5vmp3iaHBDZXXRaj5gB3EGE0cRHJyJ3N-RDQg,324
340
- autobyteus/tools/browser/standalone/navigate_to.py,sha256=Z_V0DRzu-1zwYXTVMaCbCl9ltuEAPqoz7wGvq2IVaoQ,3458
341
- autobyteus/tools/browser/standalone/web_page_pdf_generator.py,sha256=UvRrUjJMVyBrG1JqTg67DCrOGboI44Hvard2UO_k9WM,4041
342
- autobyteus/tools/browser/standalone/webpage_image_downloader.py,sha256=oH4dnEQBx8DVhitP4tozoHRVO9ue-rGA_ZSJJyJotUI,7159
343
- autobyteus/tools/browser/standalone/webpage_reader.py,sha256=9N_NlbB7YnrT_MpkP_nLzWKYopMLM6eWJJ2wQmuGgVI,4254
344
- autobyteus/tools/browser/standalone/webpage_screenshot_taker.py,sha256=iy9qwl2zLaHxlc4kuZuLo3Q3tJfWGmiSekXZJzHDOJU,4424
350
+ autobyteus/tools/browser/standalone/navigate_to.py,sha256=hiIpy4hhpfU5RQcyeqty2bnbCYietcPGC_Tx74PODws,3458
351
+ autobyteus/tools/browser/standalone/web_page_pdf_generator.py,sha256=-Z9RFX1-2MH-XXhftIeUJJucxZdD5hwsvQ8zjc2FdQ8,4041
352
+ autobyteus/tools/browser/standalone/webpage_image_downloader.py,sha256=1s6UbfG9Gu04L8piOUukjKHA6N2BdiZTT2xAA8i6jhs,7159
353
+ autobyteus/tools/browser/standalone/webpage_reader.py,sha256=3zl4CfxieGXvwgxqDAZn-3Ka0GhWvdZMwEUdSRjVZnw,4254
354
+ autobyteus/tools/browser/standalone/webpage_screenshot_taker.py,sha256=dlPaJLqnNSnRGGxBxzWnmNRJAmoCBoWwXETuZPi4-oA,4424
345
355
  autobyteus/tools/browser/standalone/factory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
346
356
  autobyteus/tools/browser/standalone/factory/webpage_reader_factory.py,sha256=R9PJPf7MF3cP8q8ffMKU5-ihPJWHJkVDYXZswZNdGS0,1131
347
357
  autobyteus/tools/browser/standalone/factory/webpage_screenshot_taker_factory.py,sha256=NMS2laBlZAJiXPPub4YRhz1pXtZkfAeMhfRcSAfqu4M,597
348
358
  autobyteus/tools/factory/__init__.py,sha256=EQXbTH6BcqK2SM3JEq2PkLwzZSczExv3KDvlhWHlsGQ,275
349
359
  autobyteus/tools/factory/tool_factory.py,sha256=-gUhcBwiQu1FQiR0nAKJp1aUZ2sXbcz-pIn4f4heFbE,1066
350
360
  autobyteus/tools/file/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
361
+ autobyteus/tools/file/file_editor.py,sha256=VTJv4RscYjrh9u0uO_b0qGQArTHVoqeUkgJMOFZQ-70,8994
351
362
  autobyteus/tools/file/file_reader.py,sha256=U8xtPXDkm-UHqizzHpTgq56-QuDLxhz8WhjlGgsseBU,2557
352
363
  autobyteus/tools/file/file_writer.py,sha256=LQgd9arr3jLFEzpjv6WnTP9XhsD44wxBVphgznqf7O4,2681
353
364
  autobyteus/tools/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
354
365
  autobyteus/tools/handlers/shell_handler.py,sha256=ClTXqFR45iyD0gcoOPpKRX5p6g_6BI4a5JOLuKuQOIA,1065
355
366
  autobyteus/tools/mcp/__init__.py,sha256=gwT34UgJe2rU5y4bYNOLI-PyAmRQTMWKz_WC4f2LcyE,1553
356
367
  autobyteus/tools/mcp/config_service.py,sha256=7OoqZGVxBob4IeeBjChFCpwyI9IJIxlOQDh-OjCffrY,11466
357
- autobyteus/tools/mcp/factory.py,sha256=SmPR6mgmwLEfzfole-zKuptKnSyeZEBi1t9gBbwCtZY,2204
358
- autobyteus/tools/mcp/schema_mapper.py,sha256=9lqT3_dgPf70arknDEccP0y-0Z8sb3bvl6nnW9t2N20,4413
368
+ autobyteus/tools/mcp/factory.py,sha256=vNQ719v1hMo0s98OWKKylHhO_cynyghWRejzot4RWSE,2204
369
+ autobyteus/tools/mcp/schema_mapper.py,sha256=DDCPN_BJ1twe-9VIGVZaksmrQZVVNnL0uuD9-AeToTw,4413
359
370
  autobyteus/tools/mcp/server_instance_manager.py,sha256=pGZZCH9Qp7n6jefwyDsvoo0Pxe7AWCcqIqnXgWt8hyg,6289
360
- autobyteus/tools/mcp/tool.py,sha256=HpXSjvQjwwDzGGww1Cz3j4yCCLDiCYEv0RG-q-2BU4o,3380
371
+ autobyteus/tools/mcp/tool.py,sha256=OdP2A2Xj3F2Ob6v_r4ZmtF6UtiBIn8FeD9g1KTuMiz0,3380
361
372
  autobyteus/tools/mcp/tool_registrar.py,sha256=RugX4TdiD6IfXF8S6cy2Ae-ZobT6RdRKdx7NLbcBMyI,11028
362
373
  autobyteus/tools/mcp/types.py,sha256=KiQUPhqzro5VW7piA-eOXkBcE0FThOUgr9Pw_7iV6Us,4171
363
374
  autobyteus/tools/mcp/server/__init__.py,sha256=yfCMAtVlfy1x8aKEnRz9_CHnco2zVSdepwIPSjywSNw,523
@@ -365,41 +376,43 @@ autobyteus/tools/mcp/server/base_managed_mcp_server.py,sha256=ep-EKh4uqorrNYvv7D
365
376
  autobyteus/tools/mcp/server/http_managed_mcp_server.py,sha256=Kit7zcJxaRXfAXMxYqCKVcl4MfNsgRfXK9kjDaQFkMA,1969
366
377
  autobyteus/tools/mcp/server/proxy.py,sha256=08F3m1I_IH2wrRXK29R_NPDB6ITHpo982Mq9G53hbUo,1660
367
378
  autobyteus/tools/mcp/server/stdio_managed_mcp_server.py,sha256=a84GOnhWLg4vx6yo5dI8BlqUA_fdi0M5eNo2a-tGWwM,2085
368
- autobyteus/tools/multimedia/__init__.py,sha256=RFmeHDRBJWk8Kn0uzR5m9MbIU1ggc1P0ZoDMKzK54c4,189
369
- autobyteus/tools/multimedia/audio_tools.py,sha256=Nx2ALQH7Yga02ZGjanQ5bNPQhseoHBugVr5I86KvN0c,4621
370
- autobyteus/tools/multimedia/image_tools.py,sha256=CapwBvNgKBdu4RN6DhCuCeNlZhUweEeIrLqAyVSWYBk,7625
379
+ autobyteus/tools/multimedia/__init__.py,sha256=D1DYekb40ziohmX0Jn7H3dI16AuMYFrTBQp5sT5llU8,255
380
+ autobyteus/tools/multimedia/audio_tools.py,sha256=CDh6Zwd04Rl1v6zgfcCGt9VCyObAUlG0u_1_uv0veZY,4318
381
+ autobyteus/tools/multimedia/image_tools.py,sha256=llWpp0lMBNaWNtfQ3LVA36-iQ2f4pIQ1oE71PK5W6nk,7686
382
+ autobyteus/tools/multimedia/media_reader_tool.py,sha256=iu2mo1nitPriOgK49fe9lNhPg4oLrFro3yUsSZ0z4qE,5829
371
383
  autobyteus/tools/operation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
372
384
  autobyteus/tools/operation/file_operation.py,sha256=bAehQ9PfHoCDpk9Wa7vx9h3ohzVuaGzzBUogxleTwq8,2375
373
385
  autobyteus/tools/operation/file_rename_operation.py,sha256=pExiC69HUzYbKihlVumlGHMGxmmrsKQB0JfAM5x4JH0,1710
374
386
  autobyteus/tools/operation/operation.py,sha256=9sIZnlrPct5CwkCKuwbspVKvjF4KumP6twmXRo1blwo,1702
375
387
  autobyteus/tools/operation/shell_operation.py,sha256=_BiGIRGWCzzwPVtbqFwXpHOvnqH68YqJujQI-gWeKx0,1860
376
388
  autobyteus/tools/registry/__init__.py,sha256=39TSHm7mD6NXhsrczsX5Mdr32US0I6z3Bzad4hgcrrA,250
377
- autobyteus/tools/registry/tool_definition.py,sha256=7MlbULQXCq9VPWl9CLlPXO5fp3vJztSlQFr2pKPfTHc,6953
389
+ autobyteus/tools/registry/tool_definition.py,sha256=MIhFPhgbvrL4Q5MVq8d2UybCsTE-O6kLagZQ7NujW6w,6953
378
390
  autobyteus/tools/registry/tool_registry.py,sha256=eekF5q3GZr3FwnwITGni-gyc46Vob5u3WoApmvEHPQ8,7564
379
391
  autobyteus/tools/usage/__init__.py,sha256=0kJoUH-m0d1AHTYJQyXlCjlXhMJ3e95Ykf-8J9lO2g4,224
380
392
  autobyteus/tools/usage/formatters/__init__.py,sha256=BThdI_R8Dkda1eHJFr1cQ7nLCgf5KfSuvWokjPrnT9U,1424
381
393
  autobyteus/tools/usage/formatters/anthropic_json_example_formatter.py,sha256=EVVPZ7e1tG3QRcEPjdOC0yTvnGisubfUm9geWbd9r2g,792
382
394
  autobyteus/tools/usage/formatters/anthropic_json_schema_formatter.py,sha256=Cwd4teoZcs64q1xemVYIW9lviH7A0t2jmg3W7TYv_Rs,869
383
395
  autobyteus/tools/usage/formatters/base_formatter.py,sha256=15YQHEV-uHREoi5INA6KWVrniatMbBPIGz82bVkZos8,1283
384
- autobyteus/tools/usage/formatters/default_json_example_formatter.py,sha256=6U0Yf9j-5ZNdGNN2hwOv4PbnaJTvgdRKQcW2N8d-HM4,9069
396
+ autobyteus/tools/usage/formatters/default_json_example_formatter.py,sha256=vngcw6jI_tqvgzrOJ7vvhStb2I35YYpdK31EyyW_nrc,9069
385
397
  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=vGw6_vZTtcpamDOYykntz_-sYWTMLoXfPNN3WxuUDXc,7185
387
- autobyteus/tools/usage/formatters/default_xml_schema_formatter.py,sha256=b27dLKG1MQo8SMxagJULEZQZ6zj0CwYm0ExjG2GwwjA,3698
388
- autobyteus/tools/usage/formatters/gemini_json_example_formatter.py,sha256=sTlhoIwoW8jmvjIki3BVTzAIArk10jQabzndiv_mrs0,3866
398
+ autobyteus/tools/usage/formatters/default_xml_example_formatter.py,sha256=JRr7ksL3N_YMeFm2CY6RQxVwK4sbVKeSWQdZIy0ieiI,7185
399
+ autobyteus/tools/usage/formatters/default_xml_schema_formatter.py,sha256=XsTLXKQfvJ1kshRi2jN0aIoOWn1t1oolrzl-H4wCRAE,6585
400
+ autobyteus/tools/usage/formatters/gemini_json_example_formatter.py,sha256=S56Ld3xN4X0U4VL645j-ZY2IAweMf4nKny6Sy8F6__4,3866
389
401
  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=WCs_JS7JuJcVAdgIeuNM2nBl6_mxatTAWTduE1r5Lww,3908
402
+ autobyteus/tools/usage/formatters/google_json_example_formatter.py,sha256=qw3WxLDg4iBRm6r4k2qYX8IkCQVtJV3ljMjk1iTCVsM,3908
391
403
  autobyteus/tools/usage/formatters/google_json_schema_formatter.py,sha256=gKeuR_QhiebFGja303rg9q9CxgynJxIoCd4SrXuXRUU,868
392
- autobyteus/tools/usage/formatters/openai_json_example_formatter.py,sha256=s_dSjtG7eF08PDJv2o8zfkilSJ2IzkyqI4yKFF9NwEo,4131
404
+ autobyteus/tools/usage/formatters/openai_json_example_formatter.py,sha256=-Ggx3VoS64Pwq035P-Gd7b8gfPTHSSU2rAdN3xTSZI8,4131
393
405
  autobyteus/tools/usage/formatters/openai_json_schema_formatter.py,sha256=3pN4CnmWiBJaZMhV7qnWcSKPpyZ2cEdiU-FVMRfPT1w,948
394
406
  autobyteus/tools/usage/parsers/__init__.py,sha256=4y235cYvUm60v30m4KCwQ4g9x9yP81QYBhSkUmjFWAU,915
395
407
  autobyteus/tools/usage/parsers/_json_extractor.py,sha256=Q7BJsEcFkEZJ8q-ifIl-7t4FXZgFoFEwFXAGvKFYhCk,3601
408
+ autobyteus/tools/usage/parsers/_string_decoders.py,sha256=8dp5FfDIehHh5A7sKmomeEdTXqsMSJyHiuolFvipu68,638
396
409
  autobyteus/tools/usage/parsers/anthropic_xml_tool_usage_parser.py,sha256=xAVq7bPlyfZK5YBVsNlXyyc-1J4kyVr4-wDNI0ekl_o,433
397
410
  autobyteus/tools/usage/parsers/base_parser.py,sha256=iNHVUXMzAydnhYeEBgcXU0g8L_H9KTMavOEd-iwDLbk,1366
398
- autobyteus/tools/usage/parsers/default_json_tool_usage_parser.py,sha256=jl-VKMubpgI15TuX7tyKmu_4WHb2YUVw5Yz2fy7GXkY,3480
399
- autobyteus/tools/usage/parsers/default_xml_tool_usage_parser.py,sha256=CQjOS1wkvl_BdRCqJlPYYMjqOh9x3C0WiPR_kUVgyI8,11778
411
+ autobyteus/tools/usage/parsers/default_json_tool_usage_parser.py,sha256=s5B8TT5jwBpFQyDYzxPVRUptsHT3WHsJGK9XWSAnDbg,3803
412
+ autobyteus/tools/usage/parsers/default_xml_tool_usage_parser.py,sha256=esamQXffzI5-lsvRmOHwqF3WYOdMVW5zBdzPYVpBjgk,12344
400
413
  autobyteus/tools/usage/parsers/exceptions.py,sha256=CncCSH4IJUYPaCTilj1oPgfZWdCycIxQBrWiSKuWXtc,468
401
- autobyteus/tools/usage/parsers/gemini_json_tool_usage_parser.py,sha256=t0vQWhmf4t6-tGq6OeH4o-1w_3eeUxQjHDYNpQ5g6R4,3502
402
- autobyteus/tools/usage/parsers/openai_json_tool_usage_parser.py,sha256=wQXe4HAYsvfuLG6Ffv_Rk38ZAN5c1NlaEb7lFq7xbVs,6916
414
+ autobyteus/tools/usage/parsers/gemini_json_tool_usage_parser.py,sha256=bL9i4jqWKDXK7thOblfozggLfGPKMNIpIsTcYFEYtcA,3721
415
+ autobyteus/tools/usage/parsers/openai_json_tool_usage_parser.py,sha256=_p8Uyzv29yhhAG7MPgp7a5JEPZYNCx6ffUbRBb3eYwU,7111
403
416
  autobyteus/tools/usage/parsers/provider_aware_tool_usage_parser.py,sha256=OVPQpNlDCvAIKE5kKXFUIMdaTTK3pyJW2oCQ_bkOPBk,2829
404
417
  autobyteus/tools/usage/providers/__init__.py,sha256=C8GmfzYwzSS2OGv7MbvxtRe0OsIALvkC7rN7OWvA5p4,445
405
418
  autobyteus/tools/usage/providers/tool_manifest_provider.py,sha256=r-q9YkNYXEbNApAjufvxGuU4JPiu78x6u60wjTZcnfM,4668
@@ -411,6 +424,7 @@ autobyteus/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
411
424
  autobyteus/utils/dynamic_enum.py,sha256=c_mgKtKrjb958LlCWeAApl1LMvVB7U_0SWl-8XFhRag,1339
412
425
  autobyteus/utils/file_utils.py,sha256=QK0LvrwA5c9FDjpSrfPPEQbu_AirteJNiLad9yRahDY,512
413
426
  autobyteus/utils/html_cleaner.py,sha256=mI2V83yFRfQe8NnN6fr6Ujpa0bPlq25NW5tTKaz2WGk,8672
427
+ autobyteus/utils/parameter_schema.py,sha256=WoBXXdUIA6zBwMIr5CIO1lVkNN8m1c0gV6sIcCsSNSI,13010
414
428
  autobyteus/utils/singleton.py,sha256=YVURj5nRcMtzwFPxgy6ic4MSe3IUXNf6XWYuiXyhDOg,814
415
429
  autobyteus/workflow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
416
430
  autobyteus/workflow/agentic_workflow.py,sha256=u1A_HkgNlPmKn2nXz_0u_l9_DSyt4hxRJSyojGonvAA,3765
@@ -465,7 +479,7 @@ autobyteus/workflow/streaming/workflow_stream_event_payloads.py,sha256=jv1bVYg-7
465
479
  autobyteus/workflow/streaming/workflow_stream_events.py,sha256=75P29jNgcL7Go7D9wVz236KTwPfmqc5K7hUvVnc94K0,2221
466
480
  autobyteus/workflow/utils/__init__.py,sha256=SzaMZHnJBIJKcT_r-HOeyIcuxzRu2bGeFkOcMLJaalk,222
467
481
  autobyteus/workflow/utils/wait_for_idle.py,sha256=FgHtz59DN0eg8Na1PkkVR55Ihdd2e5Gn_mr7RVHl4qI,2001
468
- autobyteus-1.1.8.dist-info/licenses/LICENSE,sha256=Ompok_c8HRsXRwmax-pGR9OZRRxZC9RPp4JB6eTJd0M,1360
482
+ autobyteus-1.2.0.dist-info/licenses/LICENSE,sha256=Ompok_c8HRsXRwmax-pGR9OZRRxZC9RPp4JB6eTJd0M,1360
469
483
  examples/__init__.py,sha256=BtTQJ6yeHyksK5GC3kfN6RFR6Gcrwq1TBmp6FIIj3Z8,40
470
484
  examples/discover_phase_transitions.py,sha256=NiFK_XzDCpWwmNsQqf0Ou2w6L5bofKIKODq7sH5uPzk,3679
471
485
  examples/run_browser_agent.py,sha256=tpBJGIYYvVsNZAUo_WsZbhV_8fdeORUoHlQ8uQvnXPM,11737
@@ -473,10 +487,10 @@ examples/run_google_slides_agent.py,sha256=R3skoCO7gxNKCdqm_Px3YVlzSh5WzJc7KAxqO
473
487
  examples/run_mcp_browser_client.py,sha256=6vEBxGtAuGffkFk-gr3NvqetO84IdhNzip5Jp7V1tSc,6772
474
488
  examples/run_mcp_google_slides_client.py,sha256=l5B4sgDyyVEfL52WUiZw9mJjL5vOuD5ZJlnzIJbA-iw,11824
475
489
  examples/run_mcp_list_tools.py,sha256=-dOM-7xyyDM2gp5e_8KZVGbX5ZxWqFQB9l-fHfR8XxY,7367
476
- examples/run_poem_writer.py,sha256=wJsT4ZHwXw3MbPAESwyCkAMWWYt7KH5BLhEDQxA06XM,13145
490
+ examples/run_poem_writer.py,sha256=cHOy-EoLG01cHTeX0Xf8a-Mti4CCoeDEqzw0mYG1QOU,13145
477
491
  examples/run_sqlite_agent.py,sha256=wy1Mp_F7RR0WmvfmxsPLG9JFPi6SpTVd0x_Ep76bUQ8,13159
478
492
  examples/agent_team/__init__.py,sha256=WIg0HENp1TUClJ3p2gIRn0C-VW9Qr7Ttqtedr4xQ3Jo,51
479
- autobyteus-1.1.8.dist-info/METADATA,sha256=cvBLfLpv5ukmQrFsn7HL9P13ZIOoUNzhpeOXfRZMC0g,10173
480
- autobyteus-1.1.8.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
481
- autobyteus-1.1.8.dist-info/top_level.txt,sha256=vNmK1Y8Irbc0iDPdRtr9gIx5eLM-c2v1ntItkzICzHU,20
482
- autobyteus-1.1.8.dist-info/RECORD,,
493
+ autobyteus-1.2.0.dist-info/METADATA,sha256=tRkJzpfqgU4lqbrzIEZUMbBc0fKerbI-HcrmyNJIzaM,10179
494
+ autobyteus-1.2.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
495
+ autobyteus-1.2.0.dist-info/top_level.txt,sha256=vNmK1Y8Irbc0iDPdRtr9gIx5eLM-c2v1ntItkzICzHU,20
496
+ autobyteus-1.2.0.dist-info/RECORD,,
@@ -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.tools.parameter_schema import ParameterSchema, ParameterDefinition, ParameterType
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