autobyteus 1.1.9__py3-none-any.whl → 1.2.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (126) hide show
  1. autobyteus/agent/context/agent_runtime_state.py +4 -0
  2. autobyteus/agent/events/notifiers.py +5 -1
  3. autobyteus/agent/message/send_message_to.py +5 -4
  4. autobyteus/agent/streaming/agent_event_stream.py +5 -0
  5. autobyteus/agent/streaming/stream_event_payloads.py +25 -0
  6. autobyteus/agent/streaming/stream_events.py +13 -1
  7. autobyteus/agent_team/bootstrap_steps/task_notifier_initialization_step.py +4 -4
  8. autobyteus/agent_team/bootstrap_steps/team_context_initialization_step.py +12 -12
  9. autobyteus/agent_team/context/agent_team_runtime_state.py +2 -2
  10. autobyteus/agent_team/streaming/agent_team_event_notifier.py +4 -4
  11. autobyteus/agent_team/streaming/agent_team_stream_event_payloads.py +3 -3
  12. autobyteus/agent_team/streaming/agent_team_stream_events.py +8 -8
  13. autobyteus/agent_team/task_notification/activation_policy.py +1 -1
  14. autobyteus/agent_team/task_notification/system_event_driven_agent_task_notifier.py +22 -22
  15. autobyteus/agent_team/task_notification/task_notification_mode.py +1 -1
  16. autobyteus/cli/agent_team_tui/app.py +4 -4
  17. autobyteus/cli/agent_team_tui/state.py +8 -8
  18. autobyteus/cli/agent_team_tui/widgets/focus_pane.py +3 -3
  19. autobyteus/cli/agent_team_tui/widgets/shared.py +1 -1
  20. autobyteus/cli/agent_team_tui/widgets/{task_board_panel.py → task_plan_panel.py} +5 -5
  21. autobyteus/clients/__init__.py +10 -0
  22. autobyteus/clients/autobyteus_client.py +318 -0
  23. autobyteus/clients/cert_utils.py +105 -0
  24. autobyteus/clients/certificates/cert.pem +34 -0
  25. autobyteus/events/event_types.py +4 -3
  26. autobyteus/llm/api/autobyteus_llm.py +1 -1
  27. autobyteus/llm/api/zhipu_llm.py +26 -0
  28. autobyteus/llm/autobyteus_provider.py +1 -1
  29. autobyteus/llm/llm_factory.py +23 -0
  30. autobyteus/llm/ollama_provider_resolver.py +1 -0
  31. autobyteus/llm/providers.py +1 -0
  32. autobyteus/llm/token_counter/token_counter_factory.py +3 -0
  33. autobyteus/llm/token_counter/zhipu_token_counter.py +24 -0
  34. autobyteus/multimedia/audio/api/__init__.py +3 -2
  35. autobyteus/multimedia/audio/api/autobyteus_audio_client.py +1 -1
  36. autobyteus/multimedia/audio/api/openai_audio_client.py +112 -0
  37. autobyteus/multimedia/audio/audio_client_factory.py +37 -0
  38. autobyteus/multimedia/audio/autobyteus_audio_provider.py +1 -1
  39. autobyteus/multimedia/image/api/autobyteus_image_client.py +1 -1
  40. autobyteus/multimedia/image/autobyteus_image_provider.py +1 -1
  41. autobyteus/multimedia/image/image_client_factory.py +1 -1
  42. autobyteus/task_management/__init__.py +44 -20
  43. autobyteus/task_management/{base_task_board.py → base_task_plan.py} +16 -13
  44. autobyteus/task_management/converters/__init__.py +2 -2
  45. autobyteus/task_management/converters/{task_board_converter.py → task_plan_converter.py} +13 -13
  46. autobyteus/task_management/events.py +7 -7
  47. autobyteus/task_management/{in_memory_task_board.py → in_memory_task_plan.py} +34 -22
  48. autobyteus/task_management/schemas/__init__.py +3 -0
  49. autobyteus/task_management/schemas/task_definition.py +1 -1
  50. autobyteus/task_management/schemas/task_status_report.py +3 -3
  51. autobyteus/task_management/schemas/todo_definition.py +15 -0
  52. autobyteus/task_management/todo.py +29 -0
  53. autobyteus/task_management/todo_list.py +75 -0
  54. autobyteus/task_management/tools/__init__.py +25 -7
  55. autobyteus/task_management/tools/task_tools/__init__.py +19 -0
  56. autobyteus/task_management/tools/task_tools/assign_task_to.py +125 -0
  57. autobyteus/task_management/tools/{publish_task.py → task_tools/create_task.py} +16 -18
  58. autobyteus/task_management/tools/{publish_tasks.py → task_tools/create_tasks.py} +19 -19
  59. autobyteus/task_management/tools/{get_my_tasks.py → task_tools/get_my_tasks.py} +15 -15
  60. autobyteus/task_management/tools/{get_task_board_status.py → task_tools/get_task_plan_status.py} +16 -16
  61. autobyteus/task_management/tools/{update_task_status.py → task_tools/update_task_status.py} +16 -16
  62. autobyteus/task_management/tools/todo_tools/__init__.py +18 -0
  63. autobyteus/task_management/tools/todo_tools/add_todo.py +78 -0
  64. autobyteus/task_management/tools/todo_tools/create_todo_list.py +79 -0
  65. autobyteus/task_management/tools/todo_tools/get_todo_list.py +55 -0
  66. autobyteus/task_management/tools/todo_tools/update_todo_status.py +85 -0
  67. autobyteus/tools/__init__.py +61 -21
  68. autobyteus/tools/bash/bash_executor.py +3 -3
  69. autobyteus/tools/browser/session_aware/browser_session_aware_navigate_to.py +5 -5
  70. autobyteus/tools/browser/session_aware/browser_session_aware_web_element_trigger.py +4 -4
  71. autobyteus/tools/browser/session_aware/browser_session_aware_webpage_reader.py +3 -3
  72. autobyteus/tools/browser/session_aware/browser_session_aware_webpage_screenshot_taker.py +3 -3
  73. autobyteus/tools/browser/standalone/navigate_to.py +13 -9
  74. autobyteus/tools/browser/standalone/web_page_pdf_generator.py +9 -5
  75. autobyteus/tools/browser/standalone/webpage_image_downloader.py +10 -6
  76. autobyteus/tools/browser/standalone/webpage_reader.py +13 -9
  77. autobyteus/tools/browser/standalone/webpage_screenshot_taker.py +9 -5
  78. autobyteus/tools/file/__init__.py +13 -0
  79. autobyteus/tools/file/edit_file.py +200 -0
  80. autobyteus/tools/file/list_directory.py +168 -0
  81. autobyteus/tools/file/{file_reader.py → read_file.py} +3 -3
  82. autobyteus/tools/file/search_files.py +188 -0
  83. autobyteus/tools/file/{file_writer.py → write_file.py} +3 -3
  84. autobyteus/tools/functional_tool.py +10 -8
  85. autobyteus/tools/mcp/tool.py +3 -3
  86. autobyteus/tools/mcp/tool_registrar.py +5 -2
  87. autobyteus/tools/multimedia/__init__.py +2 -1
  88. autobyteus/tools/multimedia/audio_tools.py +2 -2
  89. autobyteus/tools/multimedia/download_media_tool.py +136 -0
  90. autobyteus/tools/multimedia/image_tools.py +4 -4
  91. autobyteus/tools/multimedia/media_reader_tool.py +1 -1
  92. autobyteus/tools/registry/tool_definition.py +66 -13
  93. autobyteus/tools/registry/tool_registry.py +29 -0
  94. autobyteus/tools/search/__init__.py +17 -0
  95. autobyteus/tools/search/base_strategy.py +35 -0
  96. autobyteus/tools/search/client.py +24 -0
  97. autobyteus/tools/search/factory.py +81 -0
  98. autobyteus/tools/search/google_cse_strategy.py +68 -0
  99. autobyteus/tools/search/providers.py +10 -0
  100. autobyteus/tools/search/serpapi_strategy.py +65 -0
  101. autobyteus/tools/search/serper_strategy.py +87 -0
  102. autobyteus/tools/search_tool.py +83 -0
  103. autobyteus/tools/timer.py +4 -0
  104. autobyteus/tools/tool_meta.py +4 -24
  105. autobyteus/tools/usage/parsers/_string_decoders.py +18 -0
  106. autobyteus/tools/usage/parsers/default_json_tool_usage_parser.py +9 -1
  107. autobyteus/tools/usage/parsers/default_xml_tool_usage_parser.py +15 -1
  108. autobyteus/tools/usage/parsers/gemini_json_tool_usage_parser.py +4 -1
  109. autobyteus/tools/usage/parsers/openai_json_tool_usage_parser.py +4 -1
  110. autobyteus/workflow/bootstrap_steps/coordinator_prompt_preparation_step.py +1 -2
  111. {autobyteus-1.1.9.dist-info → autobyteus-1.2.1.dist-info}/METADATA +7 -6
  112. {autobyteus-1.1.9.dist-info → autobyteus-1.2.1.dist-info}/RECORD +117 -94
  113. examples/run_agentic_software_engineer.py +239 -0
  114. examples/run_poem_writer.py +3 -3
  115. autobyteus/person/__init__.py +0 -0
  116. autobyteus/person/examples/__init__.py +0 -0
  117. autobyteus/person/examples/sample_persons.py +0 -14
  118. autobyteus/person/examples/sample_roles.py +0 -14
  119. autobyteus/person/person.py +0 -29
  120. autobyteus/person/role.py +0 -14
  121. autobyteus/tools/google_search.py +0 -149
  122. autobyteus/tools/image_downloader.py +0 -99
  123. autobyteus/tools/pdf_downloader.py +0 -89
  124. {autobyteus-1.1.9.dist-info → autobyteus-1.2.1.dist-info}/WHEEL +0 -0
  125. {autobyteus-1.1.9.dist-info → autobyteus-1.2.1.dist-info}/licenses/LICENSE +0 -0
  126. {autobyteus-1.1.9.dist-info → autobyteus-1.2.1.dist-info}/top_level.txt +0 -0
@@ -18,11 +18,11 @@ autobyteus/agent/context/__init__.py,sha256=1an2L4sKJ1tYbJKAhCLSw-oYzt5_lmUwh1SY
18
18
  autobyteus/agent/context/agent_config.py,sha256=q04ohaBP8Wq2V0nK96YngFSLWCX7R02aAYfbIMRzAJc,6726
19
19
  autobyteus/agent/context/agent_context.py,sha256=3Vd1c4EF6JY7rOKar7TQSXNNSNnpB-hYuhGqVQdi52g,5726
20
20
  autobyteus/agent/context/agent_context_registry.py,sha256=GqwKn0EKKTRv6Vwwrb5kMRrwD9uH5NCh_Nvtmw82QTo,2748
21
- autobyteus/agent/context/agent_runtime_state.py,sha256=H4b3gGJkPW7DUgtFrnRcnp8yIg1HkzzHx5U5HQ6ddJ4,5523
21
+ autobyteus/agent/context/agent_runtime_state.py,sha256=BEd-3vuNcq5OUD0uYizdxNc9miZSiW79MINlajZbfEY,5695
22
22
  autobyteus/agent/events/__init__.py,sha256=8AL83PBRLkEptTzPznn_XpGXq2-S56Yxx3WarNcsc3U,1507
23
23
  autobyteus/agent/events/agent_events.py,sha256=plrBY3Cr_nUhrwvkpED_2qyPq2Slc0ciiupsWdPvmwo,3821
24
24
  autobyteus/agent/events/agent_input_event_queue_manager.py,sha256=VfynrdVSPkKEH94yg9p1WBOoV52JQX8MRJhJ-GU7fcY,10461
25
- autobyteus/agent/events/notifiers.py,sha256=--U1DMKwSdOyV0wWuWqzxykG6wgq0la6VHiVx62Twcs,7771
25
+ autobyteus/agent/events/notifiers.py,sha256=tESyKbkPyGjT5Wk5V5ayasaVMN3ciL-X9smpsH6Svww,8033
26
26
  autobyteus/agent/events/worker_event_dispatcher.py,sha256=wE63Qq4gw0JhkxvpuvbxUJHhbjzKSfhinjuF6epfR04,6165
27
27
  autobyteus/agent/factory/__init__.py,sha256=4_PxMM-S_BRuYoQBHIffY6bXpBdEv-zFyuB6YaK93Yw,204
28
28
  autobyteus/agent/factory/agent_factory.py,sha256=8vrsGTvZi0XIVZxpB3CHiiSLIv9Rdar9SaQ8Y5v5gLo,6673
@@ -62,7 +62,7 @@ autobyteus/agent/message/context_file_type.py,sha256=PXGBxFKRa2ocFS09-UagPzrYAHp
62
62
  autobyteus/agent/message/inter_agent_message.py,sha256=302oAt5PdrAqS1Cz80o7G6Kk3Ur1D9JNxze7Q0NI3dM,2436
63
63
  autobyteus/agent/message/inter_agent_message_type.py,sha256=l-j0WB4F6yRXSSnHRKzNfmwnL4wX3usPN0JIrQthyEA,1130
64
64
  autobyteus/agent/message/multimodal_message_builder.py,sha256=rPyfdqphWKMOeV5GImveR3__8yuDXIMbHx9cAypZGLU,2017
65
- autobyteus/agent/message/send_message_to.py,sha256=FprnEUQO2RSYIU8MydoPVbT3tapHgWbr97-J9Itw1dQ,5879
65
+ autobyteus/agent/message/send_message_to.py,sha256=SMIG5tqtWHbIatPsXJY8wzfb4tB-jQYFxLoAY8ExeVY,5923
66
66
  autobyteus/agent/phases/__init__.py,sha256=OC0T294mOGUk6pudSVLslHtfziBJEYd_VoA-LgWo9oE,558
67
67
  autobyteus/agent/phases/discover.py,sha256=YuW0I8PyGysiyAf3jfR-cVesgSH5zi78uYZKqnM6dGU,1993
68
68
  autobyteus/agent/phases/manager.py,sha256=-K3trAbDyXweGUxtgKPuUjQh7Cr2oFswR9KwhisT128,15604
@@ -79,10 +79,10 @@ autobyteus/agent/shutdown_steps/base_shutdown_step.py,sha256=YqHMD4opVvjCHHZdD38
79
79
  autobyteus/agent/shutdown_steps/llm_instance_cleanup_step.py,sha256=f0zfOLNA_Ksp4Q0kBvikNlvoTXCnN-erQzSPMtmK44c,1863
80
80
  autobyteus/agent/shutdown_steps/mcp_server_cleanup_step.py,sha256=_Ra9Fsf2KnPJAoGK0YdMH1wd0GdMonc9-MYY1GQookQ,1274
81
81
  autobyteus/agent/streaming/__init__.py,sha256=ul7QUIjv5q1nYwzrU1nsVBsKZwpthdmUGsP3UPWmJ34,447
82
- autobyteus/agent/streaming/agent_event_stream.py,sha256=lwpWy28flvtvERjycFpsdDIiInhZzDP73sG-LTBN8uI,10113
82
+ autobyteus/agent/streaming/agent_event_stream.py,sha256=xT1TyjWhn2At7yWbPJRA_kuu1HawHR3RoF6Lzs7rJ9M,10423
83
83
  autobyteus/agent/streaming/queue_streamer.py,sha256=lTMyFwuf_NBJL6hrUIoz5-pqWSlM7fgz1xcVB73y1bk,2354
84
- autobyteus/agent/streaming/stream_event_payloads.py,sha256=gu7Wbl7LBcTMFf2zdVnpjE7IoP6f2sNLshLSoXYUk8Y,8364
85
- autobyteus/agent/streaming/stream_events.py,sha256=FjH5kBMWcgdA0Z07Omnn9qTb1FOoRlNrouoHGxq0vGQ,5562
84
+ autobyteus/agent/streaming/stream_event_payloads.py,sha256=HQpsYtczNRUHVcyrZPd8LhqrHVuYoL76mOiy_Lr9mGo,9492
85
+ autobyteus/agent/streaming/stream_events.py,sha256=CZiSzn2YUPJZm0Bw0RH3mDEi8OM72n7P70cShz93cd8,6092
86
86
  autobyteus/agent/system_prompt_processor/__init__.py,sha256=5CuF47Y6DKwOWNBQQ-WRQpIxH6Iww-1V0KPok3GCGq0,446
87
87
  autobyteus/agent/system_prompt_processor/base_processor.py,sha256=1j-__ZFVKEfWgy7MsaxCUJHR9rkqpbZehnacE-WJ2UU,2170
88
88
  autobyteus/agent/system_prompt_processor/processor_definition.py,sha256=r2ry7igUxaVrpAVmzAtR-O1ssFIhQEry-2PBs6YIZog,1767
@@ -114,12 +114,12 @@ autobyteus/agent_team/bootstrap_steps/agent_team_runtime_queue_initialization_st
114
114
  autobyteus/agent_team/bootstrap_steps/base_agent_team_bootstrap_step.py,sha256=gRkmv8XwghAbWAS-jMKgCpaky0VPGyWi-QFR9uYDnBA,899
115
115
  autobyteus/agent_team/bootstrap_steps/coordinator_initialization_step.py,sha256=lWiGMC7XOsDEZ0W_qo2GFtuKDl7ZVKGOfS3ENsGp1Zw,1913
116
116
  autobyteus/agent_team/bootstrap_steps/coordinator_prompt_preparation_step.py,sha256=wjzlo_UpZDFK5WNV-HFtFu-uu_IvxdwcAGmFxlzetQI,4561
117
- autobyteus/agent_team/bootstrap_steps/task_notifier_initialization_step.py,sha256=p0eH-FUq3Oe3DXxbu1J-lWU7UIrIE9sliXPkOyF8uog,2628
118
- autobyteus/agent_team/bootstrap_steps/team_context_initialization_step.py,sha256=E3wYdXTJUv0eh8B94Vxery5BApx8kVfga3xf35yS0dk,2435
117
+ autobyteus/agent_team/bootstrap_steps/task_notifier_initialization_step.py,sha256=1NL4GSGHLrcJM3XNUg4adMP1H06wd2DBXVGFCQRNAiw,2622
118
+ autobyteus/agent_team/bootstrap_steps/team_context_initialization_step.py,sha256=KeCfdqiNXznQi_MX52p5rVrydDsS3WdIleyd6AU5Qzc,2419
119
119
  autobyteus/agent_team/context/__init__.py,sha256=drrtG4m5HFNxJgtpucBmTA81TlbQaSgNXww38ChgwzE,667
120
120
  autobyteus/agent_team/context/agent_team_config.py,sha256=kA7BTHiPeM9iyN1Gg6acZP9WBhb7VHOvBnaCDA8juaY,1589
121
121
  autobyteus/agent_team/context/agent_team_context.py,sha256=_QC-JyvH6Ld2Ysm-EubxbjqzJ1LLvrUkNAfUWKnulmo,2682
122
- autobyteus/agent_team/context/agent_team_runtime_state.py,sha256=aYI4_J0km9g1YVWVA7EzhU-M_B89lqclJVZf-hhg3wY,2812
122
+ autobyteus/agent_team/context/agent_team_runtime_state.py,sha256=3G4YODdTkJo1-1SfKNP1k-0EIvD5irG4rgwWc-dX2vg,2808
123
123
  autobyteus/agent_team/context/team_manager.py,sha256=m5_cjIwznicSHTq0HHquZrsn14DmvrTR94xzuaaC7NM,7287
124
124
  autobyteus/agent_team/context/team_node_config.py,sha256=V_Ng_YoOcAXkujW6Y1STg39YKzcmMrZvgAgBDORO38Y,3186
125
125
  autobyteus/agent_team/events/__init__.py,sha256=H2JMNRxeEmzIpbUFWmNR2IaIPXgcz301UIEQ8Yn0AuY,971
@@ -150,32 +150,32 @@ autobyteus/agent_team/shutdown_steps/sub_team_shutdown_step.py,sha256=suPLoXXtPJ
150
150
  autobyteus/agent_team/streaming/__init__.py,sha256=wE3dZJ8b73h979nKPietRQXmImwvNrb2oyFossdPF00,891
151
151
  autobyteus/agent_team/streaming/agent_event_bridge.py,sha256=hGJvLUK39-bBYxpq7pvpKs7Y68c07xtG4d4Ebp5GwtI,2130
152
152
  autobyteus/agent_team/streaming/agent_event_multiplexer.py,sha256=Z3CMxsNaPXWVtaK5D8qSZiDQC_VokJQoHlbbfPc0Xng,3647
153
- autobyteus/agent_team/streaming/agent_team_event_notifier.py,sha256=2gvB5wu3Yt00VMlspoOzgfwtUHfks6Xm5fkxiP4AyFY,3524
153
+ autobyteus/agent_team/streaming/agent_team_event_notifier.py,sha256=JFuXXCa5yCM0syyNFE7pZvvl5SD_u-1RJr33ytiFdVY,3519
154
154
  autobyteus/agent_team/streaming/agent_team_event_stream.py,sha256=AZmly_WQWb6YpdS8IXmXjoOZjIck85LWFt4OkfW_Aa0,1493
155
- autobyteus/agent_team/streaming/agent_team_stream_event_payloads.py,sha256=RAthTvoPtvMPADAd0K7XIMf65j4RYrXYwqBqrnTqH9U,1687
156
- autobyteus/agent_team/streaming/agent_team_stream_events.py,sha256=NUFpmUQVFp4--96j3ruhwbjTcp_-DRcrSTEsxVCdIvU,2674
155
+ autobyteus/agent_team/streaming/agent_team_stream_event_payloads.py,sha256=zMGy129gnFxmjZjdFUoa0gXHOM2oqcsaVJfJCoNLmkE,1689
156
+ autobyteus/agent_team/streaming/agent_team_stream_events.py,sha256=Gwzjnf6fRSlsGGzo_lJwWGCwAZpzJB2bxePpfBYTXU4,2668
157
157
  autobyteus/agent_team/streaming/team_event_bridge.py,sha256=C6VVJM4xJnOl37AY60qGT9k7VMVj63bkXOxYWICBgAs,2347
158
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
159
+ autobyteus/agent_team/task_notification/activation_policy.py,sha256=jWN0BCXjiE9IZwHPc9kLFWKKIlQS6UwyRhEzZH0lRng,2821
160
+ autobyteus/agent_team/task_notification/system_event_driven_agent_task_notifier.py,sha256=taehm0OEgsO9AJxIs_M1gj4FPTxQV4eBy1wL2akoZX4,4777
161
161
  autobyteus/agent_team/task_notification/task_activator.py,sha256=_7oijK61gupUCm_Z2oxQF2vojXmYlTuram8XvuJaT7Q,2728
162
- autobyteus/agent_team/task_notification/task_notification_mode.py,sha256=BbtFyrMgeGMKC4WKG3QgIVNy0m2wLH4H5YszVXOvrMI,846
162
+ autobyteus/agent_team/task_notification/task_notification_mode.py,sha256=YxejMhZpGOMX6CGUoJU9csI-Fd_O3LfmcEZBnriv5XM,845
163
163
  autobyteus/agent_team/utils/__init__.py,sha256=Sa5TBbhq9N41ONlMhoLlCrtyxSiDjoR2Zu5C21OAig0,218
164
164
  autobyteus/agent_team/utils/wait_for_idle.py,sha256=wrfo_t1T6DSXeHU-SWwsuxPJToNsr0Ol1TwqpoRxZ8I,1931
165
165
  autobyteus/cli/__init__.py,sha256=FpcugZofPrQzll16-OFcDypbven0J2mBPxNVgQ3eAxY,266
166
166
  autobyteus/cli/agent_cli.py,sha256=Ua6MnuVHmNgelnZQ8B8ZMFk2nyN-VNPijNzyucVVPis,4818
167
167
  autobyteus/cli/cli_display.py,sha256=F0mBDnaqmQJCfhqO-ccVxd_UGklCRuNoGZ4aa8ApMKs,9493
168
168
  autobyteus/cli/agent_team_tui/__init__.py,sha256=FP2rpjO1T5jdVYkT7Yvk-iDcxckOHy3JxRg-EEeKCfE,123
169
- autobyteus/cli/agent_team_tui/app.py,sha256=IuRLHQubot2DuXfA10rwPjXN4yAxXhuUZUBmYzntFfE,9152
170
- autobyteus/cli/agent_team_tui/state.py,sha256=xvWSEL5_6lmg69_hWc1pM-lXBnT9jjthzNN2Dy3Qa2Y,9377
169
+ autobyteus/cli/agent_team_tui/app.py,sha256=8xc52eVjlXAAnthS7ISWDK0OxjZ8PQ7-5FwmiJjd2hU,9150
170
+ autobyteus/cli/agent_team_tui/state.py,sha256=hoOAwK_xUbghB4P3yZZZ3vQKs0JupXE2_zv_PeZB3G0,9378
171
171
  autobyteus/cli/agent_team_tui/widgets/__init__.py,sha256=gWVULR5J-2Ra3m2hvUhO1jF1IX9uqk0bQhWL0t25Z4E,173
172
172
  autobyteus/cli/agent_team_tui/widgets/agent_list_sidebar.py,sha256=1ynBsWEqaYBitHrbvgR-eRLGAULA2ZUM-V_hRHWAgX8,6557
173
- autobyteus/cli/agent_team_tui/widgets/focus_pane.py,sha256=US-PB0QvKDtUzwrU_p6Mt_tKIdqy9AByyTr2x9Z2RXA,16146
173
+ autobyteus/cli/agent_team_tui/widgets/focus_pane.py,sha256=wS6yq9vUU4fTySb00k6zyzqImggD-5Q8DtOLJZCxaE0,16142
174
174
  autobyteus/cli/agent_team_tui/widgets/logo.py,sha256=okzS4mG8Z1-dZDIGQ5F8XP9y6WwwRDVHmMmPz3oN9TM,780
175
175
  autobyteus/cli/agent_team_tui/widgets/renderables.py,sha256=gaMrkLMcrohuOH2KjPvSmdbxHgljhCgl6m9OEfw2nDU,3393
176
- autobyteus/cli/agent_team_tui/widgets/shared.py,sha256=9RVUNuNWTuzd8-PHjD3JMTZIK4bKVbPsUPHLtSGdtU0,1977
176
+ autobyteus/cli/agent_team_tui/widgets/shared.py,sha256=mUnJVWaM72u1U8nYfSgsaOTfKFOdGcHqIpLgb837BpU,1976
177
177
  autobyteus/cli/agent_team_tui/widgets/status_bar.py,sha256=WE8Z6gjAkAdrK5Yufl7qqIitIL6TX0lOCQiTa9FZkt4,457
178
- autobyteus/cli/agent_team_tui/widgets/task_board_panel.py,sha256=CxMfFAmmQapi4GYDS61wS49G1jappd3odiYcbaYlxi4,3456
178
+ autobyteus/cli/agent_team_tui/widgets/task_plan_panel.py,sha256=FmJXBVuTFJsuCQCcyKUOj15_Um5E6WgGuyPkHQzafQQ,3451
179
179
  autobyteus/cli/workflow_tui/__init__.py,sha256=xbWMXwK_a-IX-dM3m1TJkm9SHT--bqiHVgkS5XCA6vM,127
180
180
  autobyteus/cli/workflow_tui/app.py,sha256=DZPHPIrjz5-YBxwybDylokemtzqO9Ac49hdhkBdXCwQ,9681
181
181
  autobyteus/cli/workflow_tui/state.py,sha256=JA3MOGpV25yin6dMO8AWRLSOgCEcd5oKtfNROU8RavM,9477
@@ -186,23 +186,27 @@ autobyteus/cli/workflow_tui/widgets/logo.py,sha256=TvfxdBvDXknf7-2vD3xkHuZkiymhM
186
186
  autobyteus/cli/workflow_tui/widgets/renderables.py,sha256=hkRTjwz5DPSqaO8_8Zuvt1XxxAePZ9vGp582b3UMF18,3030
187
187
  autobyteus/cli/workflow_tui/widgets/shared.py,sha256=vXUrJ0vU7gMLzi7j8mAdhSMgPMno1LanhHxkeyMOQtA,1732
188
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
189
193
  autobyteus/events/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
190
194
  autobyteus/events/event_emitter.py,sha256=WKKwISFo2yDx0OpLjGFtXEl3DVV1siB0lXdndIAHhBg,2522
191
195
  autobyteus/events/event_manager.py,sha256=c5RMlCtKzkHgQZkePBvqxPAxxOu-NapUrl8c2oRDkT8,5841
192
- autobyteus/events/event_types.py,sha256=5CEMe2VmZ1L5ksKzMPqLRgPjXhxF31BD3ehrGJWfRJQ,3016
196
+ autobyteus/events/event_types.py,sha256=Q_7fksiJMY7RzT85eVmRfWDd34_9RPhnJ5xzS7qMqoU,3081
193
197
  autobyteus/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
194
- autobyteus/llm/autobyteus_provider.py,sha256=WVFw4TmLFPKrPwc941utAxWNghklSYug5rViqKJ3T8E,8390
198
+ autobyteus/llm/autobyteus_provider.py,sha256=TuEXpiTkCN6V-hBc4ss8vR-4lA83VEmdlFDDmcooCzw,8387
195
199
  autobyteus/llm/base_llm.py,sha256=OCiInGSNApZ-bcrdEMt3siOFwNkB9UwFGfqVNYImzEo,8036
196
- autobyteus/llm/llm_factory.py,sha256=6vNHaKXILg-Z7ED7mxoLoOADqkP3_EjGpMvqBM_LBJc,19187
200
+ autobyteus/llm/llm_factory.py,sha256=9UyZ9KqWNH-fVRaicIabicbxMHlQdWM59nrXyy8Y4hc,20081
197
201
  autobyteus/llm/lmstudio_provider.py,sha256=RkM_drORSZ2zcSxN2Th5Upiva2oesIPw-6viqe2w9dY,4315
198
202
  autobyteus/llm/models.py,sha256=ownBklNZrtJ_HWeMexa2T3s9TjWG0xggOt7wYrRs2l4,6963
199
203
  autobyteus/llm/ollama_provider.py,sha256=CfcgC-DEWULjTwJiWazB5IXjErEyy1zZ41glrWhpj0g,4427
200
- autobyteus/llm/ollama_provider_resolver.py,sha256=EI0lTqhejSeuFkJCLF0cPQ2PSmCjXjcXNSryvwvNBYg,1851
201
- 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
202
206
  autobyteus/llm/runtimes.py,sha256=MzFNo3R1U3uWYAkuk-uuaba01Y0dDKQgVY_ElH_0dxU,315
203
207
  autobyteus/llm/user_message.py,sha256=2hmICY_W7lwjYco3qT4zY1ELsBkpyxR2CjOgh33NMq0,3546
204
208
  autobyteus/llm/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
205
- autobyteus/llm/api/autobyteus_llm.py,sha256=n-QQA4vNRZTkCkjqSUXM8yhSGI-XvLEOyRbHBxZFKLU,4929
209
+ autobyteus/llm/api/autobyteus_llm.py,sha256=xwby9QELHFgrg1GoDSd66huY7kJ280dbxSdT2OZAGyQ,4919
206
210
  autobyteus/llm/api/bedrock_llm.py,sha256=8B7dNSkQPRfRi8GAPEB31A2pZLZfTIQUtxXjQ_E4rAE,3768
207
211
  autobyteus/llm/api/claude_llm.py,sha256=quPfUmg3oASRKVer01_tIcBxrqNP-xIenCU-tWbfTlU,5286
208
212
  autobyteus/llm/api/deepseek_llm.py,sha256=TEWtXAqM4OuKH1etj5kknzkbPsRGvEpWzTq_CoAU6po,894
@@ -217,6 +221,7 @@ autobyteus/llm/api/ollama_llm.py,sha256=PmrgxOS-RU59DxUAw4aAvKeJHghpWcb3PKgsZk-w
217
221
  autobyteus/llm/api/openai_compatible_llm.py,sha256=TFEem7RLpqtB9-ExHYBDk9dC0iJe2fAeLLJRE6sGciM,9108
218
222
  autobyteus/llm/api/openai_llm.py,sha256=414fWDFvTm7IkG3STfYCWT4mz1FQwEGnD4N5MpTyf6M,905
219
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
220
225
  autobyteus/llm/extensions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
221
226
  autobyteus/llm/extensions/base_extension.py,sha256=ZqwmwNKBURFseAeRec53tpC4v1mnRTubdifk575eqlo,1273
222
227
  autobyteus/llm/extensions/extension_registry.py,sha256=b4b3U5cQB9kZpJpqmT_e1lviLzjGQBsp7gJuYppjpjU,1254
@@ -228,7 +233,8 @@ autobyteus/llm/token_counter/deepseek_token_counter.py,sha256=YWCng71H6h5ZQX0Drj
228
233
  autobyteus/llm/token_counter/kimi_token_counter.py,sha256=KuzgcbSWiqybCKHaukd-n917zEgUFebGXMAxlkZxue8,854
229
234
  autobyteus/llm/token_counter/mistral_token_counter.py,sha256=YAUPqksnonTQRd1C7NjjFUPsjEDq_AKWxTc5GNTVGqU,4760
230
235
  autobyteus/llm/token_counter/openai_token_counter.py,sha256=hGpKSo52NjtLKU8ZMHr76243wglFkfM9-ycSXJW-cwE,2811
231
- 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
232
238
  autobyteus/llm/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
233
239
  autobyteus/llm/utils/llm_config.py,sha256=yzRlUmeyGkKvb-jfywGaR3tWGeQ2l6f8GZ8KdFzHNDk,9911
234
240
  autobyteus/llm/utils/media_payload_formatter.py,sha256=S-pZxIlGHuKzzrHbqv7SUx99BfYlZ7dVUGcUrGDShF0,3676
@@ -242,32 +248,27 @@ autobyteus/multimedia/__init__.py,sha256=8sssScdnrek2-1-s7wStlOc37ZilLTf0cJzMqVz
242
248
  autobyteus/multimedia/providers.py,sha256=odBXtoEXYtFULX_lnBR9rGEcWOAzMbUD0qF2Fr_Y1Nc,133
243
249
  autobyteus/multimedia/runtimes.py,sha256=mgmA06Ng7Gh6UW6YNi0O5CmwV6oDw3kX2qxLssUqG0o,180
244
250
  autobyteus/multimedia/audio/__init__.py,sha256=RsUo63rEz8_HLJ7RonaSrYkoDKwhBmHomeseTnBX-Hg,287
245
- autobyteus/multimedia/audio/audio_client_factory.py,sha256=ivR8iM3wYFGuz7PFnM-7dDgrJM8K9xUOwbOIj7tihpk,6382
251
+ autobyteus/multimedia/audio/audio_client_factory.py,sha256=UAE0cnFXyYB9YePMTs44jw3bws_2BdMAYzFNDbhV6cg,7729
246
252
  autobyteus/multimedia/audio/audio_model.py,sha256=tiFRspsfrlOifjPH7wJDNxT7Rl695RkjD5VLNiJvI0Q,4069
247
- autobyteus/multimedia/audio/autobyteus_audio_provider.py,sha256=yhYgREXz8YWOzgv-9QrkyvKOMDYCEJkmRr48rt1omFY,4937
253
+ autobyteus/multimedia/audio/autobyteus_audio_provider.py,sha256=p4vfp8orsKiYGtrtNYfXyJlP95b-FKWRxiACug0GfuI,4934
248
254
  autobyteus/multimedia/audio/base_audio_client.py,sha256=zl12JZrvDUmKEnNhEtdY7jXK0TYmil9rUgIkU_VWbL0,1498
249
- autobyteus/multimedia/audio/api/__init__.py,sha256=_LHCfFqfwvbr0qSTLlioTcnb_EnfZtY1usY6nHegr1k,168
250
- autobyteus/multimedia/audio/api/autobyteus_audio_client.py,sha256=oW-2rRO88ekQPLeFUcXjdLjordeT2jDgI1uLnMS8RDM,2644
255
+ autobyteus/multimedia/audio/api/__init__.py,sha256=M6A3fmXx5nn3R_0wozcph4ANTA25RGG4L4-a-M4OAoc,240
256
+ autobyteus/multimedia/audio/api/autobyteus_audio_client.py,sha256=KhhWCWSdbmYp3rVM3pASjWr4qZHD69Xi23hUZ1mLCgU,2641
251
257
  autobyteus/multimedia/audio/api/gemini_audio_client.py,sha256=Mg9c7_7am8iuBNQQv1To37H8mY1Vc1xx5ZKtEfp5Sig,6410
258
+ autobyteus/multimedia/audio/api/openai_audio_client.py,sha256=wNuNBgD1CdTjs7IV-bOD6wBeqf_NYR5YO4vz_QyeVIA,4017
252
259
  autobyteus/multimedia/image/__init__.py,sha256=YWwPtRgbTtPoZBgAmjt87P-pTREOZEpJzDbKhD9jSRg,287
253
- autobyteus/multimedia/image/autobyteus_image_provider.py,sha256=HKPGRiX1k8eZ_2DOGcktsqSvhr8bgmGPfssTCg4prv0,5047
260
+ autobyteus/multimedia/image/autobyteus_image_provider.py,sha256=mioCkUnp-ogNAt53lpdjijd5sxmvr6piCutiA3jWih0,5044
254
261
  autobyteus/multimedia/image/base_image_client.py,sha256=sDm2n8yol590tWkujYc_FDf2cuyBNP0t4voRz9vuGr4,2819
255
- autobyteus/multimedia/image/image_client_factory.py,sha256=oKNmQpIY_vMjsVDDQ_ZhrAzuJXBAmCmQv3b2IKryFzY,5636
262
+ autobyteus/multimedia/image/image_client_factory.py,sha256=EuRHvfydezimOOl62n1gLKtXFLaVhGZF_Ujw2NsSRFc,5639
256
263
  autobyteus/multimedia/image/image_model.py,sha256=BxkWiQr30Fp5o6mLYMYD_6XAnElZQCU5yYe-MBN52jk,4077
257
264
  autobyteus/multimedia/image/api/__init__.py,sha256=Vh_FC_6rxcPhJqFpAvgv3yBqHYVmxrzjyVSSrCM7rww,255
258
- autobyteus/multimedia/image/api/autobyteus_image_client.py,sha256=5B4njfeplmOSLtNwngOO-VcyZaSklra2TldOoHZD2F4,4187
265
+ autobyteus/multimedia/image/api/autobyteus_image_client.py,sha256=MYkd-w9AMjNEEGiCaDepbMty1b0cBhyOFF3P2ybv4jc,4184
259
266
  autobyteus/multimedia/image/api/gemini_image_client.py,sha256=OXYd9av43VjezuiaqSNehiA28EMlGlvGR2C4FC0tDes,6108
260
267
  autobyteus/multimedia/image/api/openai_image_client.py,sha256=eiC2hh3y7flLQPWQQiuaesaTR-PBa9UD96go41mFEt8,6240
261
268
  autobyteus/multimedia/utils/__init__.py,sha256=pH2c5CB2V-QXVl6SgL6N70KKH0VShByhZHS8m7L9TCg,298
262
269
  autobyteus/multimedia/utils/api_utils.py,sha256=dbrIQzRnoz66CwaZOIG4353h5ccbTEIvUPUSRfgIWOQ,613
263
270
  autobyteus/multimedia/utils/multimedia_config.py,sha256=1CU1G0LqURt6DOrcvj2UnPUQ0Q2Mh4vzeKJEGbHoIno,953
264
271
  autobyteus/multimedia/utils/response_types.py,sha256=aiyGwkH4K4NryOFDM4-X4M907ZVGKtvTKMJz6QEXKTA,359
265
- autobyteus/person/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
266
- autobyteus/person/person.py,sha256=hUBLaGu2_SiClhrXIEl6b9BTXbzyBimwX6Qc08iApTU,866
267
- autobyteus/person/role.py,sha256=U7gFBtYY6IlQ2Hr1bqxlPwfXb4ixOJT5WSz3cjSpybU,511
268
- autobyteus/person/examples/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
269
- autobyteus/person/examples/sample_persons.py,sha256=dANMjmH5IVUfBoLvWeo4d1Obms5x30MBSvFgJIBa78M,368
270
- autobyteus/person/examples/sample_roles.py,sha256=rQqUGTUj0dSqTlOciRjo5AYS53hCAKl4oifpGHsrScM,430
271
272
  autobyteus/prompt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
272
273
  autobyteus/prompt/prompt_builder.py,sha256=2hStweYFSIXN9kif86G8Fj7VdjsIVceJYiCNboauEGk,1886
273
274
  autobyteus/prompt/prompt_template.py,sha256=taNEAUNXLt0a3WP_bNqzeNgSIIM7rgubqBBYWHRR1Kw,1539
@@ -290,49 +291,57 @@ autobyteus/rpc/server/base_method_handler.py,sha256=6sKWucR1vUYeritjJPHIX_sCQOD2
290
291
  autobyteus/rpc/server/method_handlers.py,sha256=Zqrr1R3yu_hVD0qCOPpxXm4ujkvdds9wCCneIeT3gU8,14702
291
292
  autobyteus/rpc/server/sse_server_handler.py,sha256=3F1LNLw6fXcB08hmWOUhGZROYhpPdk8xwz2TakiR-2M,16273
292
293
  autobyteus/rpc/server/stdio_server_handler.py,sha256=pSAvVtxyo0Hytzld7WINeKHvGBqEjp0Bad-xkY2Rul4,7398
293
- autobyteus/task_management/__init__.py,sha256=saIIRYfXX7g6GXzQ5pGmxZMUeSjVRW3mcxSGBVPPln0,1570
294
- autobyteus/task_management/base_task_board.py,sha256=w-mvFFgzeQuY0_P9VNWTID7SX623-iivfM1w9R4JYfk,2363
294
+ autobyteus/task_management/__init__.py,sha256=A6KzMAVVpcz7N7CYDNOwILsmz3yvgfcHMLLDGqRpur4,2052
295
+ autobyteus/task_management/base_task_plan.py,sha256=3G-IT9KeFYpJA1jiePRKUNaCze9QyB9I1lJ1mDnLezI,2606
295
296
  autobyteus/task_management/deliverable.py,sha256=cXuWD7UhP_oElhUzLGGdCwE8Fn4IokURuanz4zg35Ps,490
296
- autobyteus/task_management/events.py,sha256=bDxlCW5iKtILcEF4T34AM3anQqaso8G-yDuiaAUd8zg,824
297
- autobyteus/task_management/in_memory_task_board.py,sha256=YkeLAn7WF7VGREDSrknwRAYBGj2vOM0zN6QaHxthXTg,5522
297
+ autobyteus/task_management/events.py,sha256=1i2G2H5KC9Y0ibz5OgQIgIguVqcdILfXb8bc9QFdHvk,821
298
+ autobyteus/task_management/in_memory_task_plan.py,sha256=roKwt35JLY_1ETp3rglDZLMXNFWpem_Yje4sWr8YZlA,6107
298
299
  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
300
+ autobyteus/task_management/todo.py,sha256=9GOdu766TTae6hrJkizPMGYyJPOIRq_Il20kgeZFug8,1265
301
+ autobyteus/task_management/todo_list.py,sha256=07ZFfi12vy7ZsruG9UVx0cAdu0nmVhz7IAyqLOMJUP0,3083
302
+ autobyteus/task_management/converters/__init__.py,sha256=gQ4eZqSjtzvaPQUvOSG1a6lM-UeIOHEG1aWo22tsamo,230
303
+ autobyteus/task_management/converters/task_plan_converter.py,sha256=Nd5xFG4Yn_OknXYR4aLXvtuVKz5kMDIm6_VqzaDq8uw,2087
301
304
  autobyteus/task_management/deliverables/__init__.py,sha256=RYBzSxKgzPnh8uE0TA2hA_SiI3dv3_dgvME0K-5AvvI,150
302
305
  autobyteus/task_management/deliverables/file_deliverable.py,sha256=tTdpgdAtXwkZ-US0n8ilEl6CYI8dRVXhGEdBBCTay8c,425
303
- autobyteus/task_management/schemas/__init__.py,sha256=MfNFFHjosjuMKFRwLNwlQFFOqZOzmggWvWdxbJA2pw8,514
306
+ autobyteus/task_management/schemas/__init__.py,sha256=j3MZYJKMYq0xS88MkdMv8hdlzgQ1_9onLQNgVwmNX6I,644
304
307
  autobyteus/task_management/schemas/deliverable_schema.py,sha256=8_3F93gAeTfp6NeHqhIQLWFMpVwfiDuSOk0lnHnxxFU,603
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
308
+ autobyteus/task_management/schemas/task_definition.py,sha256=ytFK2kikLnQjPgSj6X6OTethqljvTEnZ9U-tcxubZF8,2154
309
+ autobyteus/task_management/schemas/task_status_report.py,sha256=505LgQFHDORrWeV55swbaeKuw4DvMJx5yYeRUxx7ko8,1882
310
+ autobyteus/task_management/schemas/todo_definition.py,sha256=o5DKyCCVx6XqiZyKe025Ap-17X5S1uRdIq0lPXI4EuU,756
311
+ autobyteus/task_management/tools/__init__.py,sha256=88T-wwjQeAN5LDOegiAbc0suj1e-WZi1z78IhNnuRTE,690
312
+ autobyteus/task_management/tools/task_tools/__init__.py,sha256=fRLxldmTxvBBBgXCv5eNMicxjHcFxjg6Tt57OYc1E3Q,523
313
+ autobyteus/task_management/tools/task_tools/assign_task_to.py,sha256=LDdA3SDX3WtI4FNH9dFkgEk9H4ASHYPfg6HsvuaQaKQ,6278
314
+ autobyteus/task_management/tools/task_tools/create_task.py,sha256=enT0301ZYNmtarIuBvHsA7LTtoo9RB5C8qAMD4SqOBA,3263
315
+ autobyteus/task_management/tools/task_tools/create_tasks.py,sha256=tjeupKNhg_RNxFZ1QrOwDojFQPuHWaBs0R0owtqINP8,3090
316
+ autobyteus/task_management/tools/task_tools/get_my_tasks.py,sha256=6DZRY-gumQx5thCaZ5ppJ-izBV8n-K2jHNh4-wTPOFw,3314
317
+ autobyteus/task_management/tools/task_tools/get_task_plan_status.py,sha256=3j96d4u1oYV70XGfrTFj9ahcS9wQl9f0gG9_tMN0VzQ,2747
318
+ autobyteus/task_management/tools/task_tools/update_task_status.py,sha256=yo3UpPsDS4DsdEmVL3H4Jr9f24bggSKJ3CAPi_DlDkk,5913
319
+ autobyteus/task_management/tools/todo_tools/__init__.py,sha256=kyTQV5UfccRt3Nos-TMN42A_dbDuTESMQK1FibzoP3o,476
320
+ autobyteus/task_management/tools/todo_tools/add_todo.py,sha256=kJA-0xGin5j2UB1g04tGgOGKkyov4KmaXdUf4O5h6nc,3247
321
+ autobyteus/task_management/tools/todo_tools/create_todo_list.py,sha256=ot-WgoNWPT4lJPDOfzehr_1b4GhhuOFyuGHeL7rQEkA,3521
322
+ autobyteus/task_management/tools/todo_tools/get_todo_list.py,sha256=zAZcnhrgm9g-ZXn4GGBWvY_RayLmmDBB0WbDGvvhfuY,1929
323
+ autobyteus/task_management/tools/todo_tools/update_todo_status.py,sha256=X_i2giq6CjliZuAc5QMPambdfG9wbhZQ2zhM8Q0jK50,3727
324
+ autobyteus/tools/__init__.py,sha256=dJtk8S3aviwRPidGboKN2b6AMGak5w531IVRjx-UsIk,4557
314
325
  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
318
- autobyteus/tools/pdf_downloader.py,sha256=0WeznZhkYvXvgU2CH21q6LSVEQm8S1mAm7gtw_CjsJM,3927
326
+ autobyteus/tools/functional_tool.py,sha256=OvHKXRd4dGqJb0MieaJXY1PKJdOCvaec3KsM5Lz5eP4,10613
319
327
  autobyteus/tools/pydantic_schema_converter.py,sha256=qDVCXDBUWuXxYzO0d_taFum1gd1Av1VvHCvTzTtilF0,3402
320
- autobyteus/tools/timer.py,sha256=1PI3fhmwQDgRjmXBDX6NbsE3zqNaXeuitXX75IdVog0,7384
328
+ autobyteus/tools/search_tool.py,sha256=EJw0-VxkMKDOYRvA1q6jJXexxy4BgFoG9YuUbEn4xmU,3336
329
+ autobyteus/tools/timer.py,sha256=JHEvrXA9-zMtIYjSCtriF_dJR_zARI0qIVREpHZOpAo,7461
321
330
  autobyteus/tools/tool_category.py,sha256=pSf3C4kDc5ZGRYLmlGaU0th9YgdI-3TSS_yOdqbEzLU,740
322
331
  autobyteus/tools/tool_config.py,sha256=gnzGweccECNmCeufkzbskHeFOt3f0431DyAmMhqNVn4,3564
323
- autobyteus/tools/tool_meta.py,sha256=K_jKes6NSzgHte-iQVzPOHTscPOFM6Uh7M0tMMECbgI,4417
332
+ autobyteus/tools/tool_meta.py,sha256=oTWknZdssNvIp9LBUycnkGqroFfL8G4RLg-vx0RgR2w,2828
324
333
  autobyteus/tools/tool_origin.py,sha256=X1RqyDMWg2n7v0TciJHh5eiXgDDoU86BEQL3hx975jk,269
325
334
  autobyteus/tools/tool_state.py,sha256=CwmEu7GTdaE72QIsdsXQu0AmTxQTp5hMncFcY58PkGo,746
326
335
  autobyteus/tools/utils.py,sha256=PuHGlARmNx5HA2YFVF5XA36MoeAyFL6voK10S12AYS0,546
327
336
  autobyteus/tools/bash/__init__.py,sha256=X38g3OVhlr-6aLIYfcSyh8DzqHAEh8dSzfEH1NEH7aw,99
328
- autobyteus/tools/bash/bash_executor.py,sha256=3VqilVSuzomMpqv7WWy6ukqhLJyiBy1tALRcDql8h8w,4502
337
+ autobyteus/tools/bash/bash_executor.py,sha256=fx48VsiLRtVhI_p6xcCuyoNukANOB1PrqG0sTj1jhPw,4502
329
338
  autobyteus/tools/browser/__init__.py,sha256=fNt3qo9ykOIhfG7CmbelCabMydhPTWL-5timHXBa8ZI,91
330
339
  autobyteus/tools/browser/session_aware/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
331
- autobyteus/tools/browser/session_aware/browser_session_aware_navigate_to.py,sha256=zc-xFSc5VqreUfTWiDX2jvK9TuI5d2nB4zUY8MxydhM,3099
340
+ autobyteus/tools/browser/session_aware/browser_session_aware_navigate_to.py,sha256=GIZI6UbrqmrMAe3ZvXxjB73yM42MHsTMBO9ZjmlE5ic,3096
332
341
  autobyteus/tools/browser/session_aware/browser_session_aware_tool.py,sha256=Jw3z_KY0h-hcheav9cWmTPoKGth69DePfBs-SshxUAQ,1525
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
342
+ autobyteus/tools/browser/session_aware/browser_session_aware_web_element_trigger.py,sha256=THHpM6LBIe5sV8U-GQzCaRUDUXmOZOQOYOVpeQqqzzM,7019
343
+ autobyteus/tools/browser/session_aware/browser_session_aware_webpage_reader.py,sha256=QBFvjHzHeYXLfU2UypM8JxXZLe7VMJKxE0kaPqSHGw4,3992
344
+ autobyteus/tools/browser/session_aware/browser_session_aware_webpage_screenshot_taker.py,sha256=O_E4r4zetVjKUHlSrPTJZTYAp-3-AnACnQrM9U7PeRw,4708
336
345
  autobyteus/tools/browser/session_aware/shared_browser_session.py,sha256=WjdkY6vrE96hluwHQS8U0K5z3XE8QMw2-fDRv5VFhXA,326
337
346
  autobyteus/tools/browser/session_aware/shared_browser_session_manager.py,sha256=OAFzqLHWWxtVnU-zYGYFPLwiVTzhW7C6UA3y70-lBQU,1103
338
347
  autobyteus/tools/browser/session_aware/web_element_action.py,sha256=jPWGmqoTB7Hpk6APQOWglLUaJmf5c_nR8Hh0AbT4fkM,477
@@ -341,19 +350,22 @@ autobyteus/tools/browser/session_aware/factory/browser_session_aware_web_element
341
350
  autobyteus/tools/browser/session_aware/factory/browser_session_aware_webpage_reader_factory.py,sha256=WmW9yU_KVjvDNSlxWPkdXljM9h4-zZRoZH7GP6sQndA,1335
342
351
  autobyteus/tools/browser/session_aware/factory/browser_session_aware_webpage_screenshot_taker_factory.py,sha256=uxv7cLtlXg9Vdl82_r1K-wEHKfXzrmngGwT8rd5u4JQ,717
343
352
  autobyteus/tools/browser/standalone/__init__.py,sha256=0J-_GM5vmp3iaHBDZXXRaj5gB3EGE0cRHJyJ3N-RDQg,324
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
353
+ autobyteus/tools/browser/standalone/navigate_to.py,sha256=V6ztflnTjQU_nRpFsukALhZgbxYH_RoySSnNCAociog,3544
354
+ autobyteus/tools/browser/standalone/web_page_pdf_generator.py,sha256=xs1vUAPUDrvprgDRgrB5V69xbjlwBp7Vyh8aTMpAm8k,4132
355
+ autobyteus/tools/browser/standalone/webpage_image_downloader.py,sha256=dgJmVDqhkZuR_ks7z2nnODKkgd2DCtb_CLfaWtv9ND8,7254
356
+ autobyteus/tools/browser/standalone/webpage_reader.py,sha256=TU7YvWwWGW7eVjRpTQ42uE35cFKCZ4NYjuXNRxm_yG0,4323
357
+ autobyteus/tools/browser/standalone/webpage_screenshot_taker.py,sha256=XnpGSy4mmFvkJysoD3Qere0oFj-6eM8mqZvpYIUMwrY,4518
349
358
  autobyteus/tools/browser/standalone/factory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
350
359
  autobyteus/tools/browser/standalone/factory/webpage_reader_factory.py,sha256=R9PJPf7MF3cP8q8ffMKU5-ihPJWHJkVDYXZswZNdGS0,1131
351
360
  autobyteus/tools/browser/standalone/factory/webpage_screenshot_taker_factory.py,sha256=NMS2laBlZAJiXPPub4YRhz1pXtZkfAeMhfRcSAfqu4M,597
352
361
  autobyteus/tools/factory/__init__.py,sha256=EQXbTH6BcqK2SM3JEq2PkLwzZSczExv3KDvlhWHlsGQ,275
353
362
  autobyteus/tools/factory/tool_factory.py,sha256=-gUhcBwiQu1FQiR0nAKJp1aUZ2sXbcz-pIn4f4heFbE,1066
354
- autobyteus/tools/file/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
355
- autobyteus/tools/file/file_reader.py,sha256=U8xtPXDkm-UHqizzHpTgq56-QuDLxhz8WhjlGgsseBU,2557
356
- autobyteus/tools/file/file_writer.py,sha256=LQgd9arr3jLFEzpjv6WnTP9XhsD44wxBVphgznqf7O4,2681
363
+ autobyteus/tools/file/__init__.py,sha256=avoDkUIalKqh-Gk_tIkWzlLZHD4s2n0yqUWwXbxlBPw,292
364
+ autobyteus/tools/file/edit_file.py,sha256=NIVyLzuSiYeg45yhjofBLpUdzh5aTABMRXJyFLoBLSc,9004
365
+ autobyteus/tools/file/list_directory.py,sha256=I2pdBZ805VXmolGg6P7S8S867uSm5QjfT5fSEdkHyrY,6573
366
+ autobyteus/tools/file/read_file.py,sha256=hYyA_zP1AYts7taVjwIPa0dn3o0sgAcLDLRVlMV5ZZg,2553
367
+ autobyteus/tools/file/search_files.py,sha256=xrF-DA2KrTIETLhAQ55bl5aUkatIZG67NFadQqfCqtU,7381
368
+ autobyteus/tools/file/write_file.py,sha256=SD6DIEHVyju2VefwdHvHe6Y_foGczblqBbIasrqZAqE,2680
357
369
  autobyteus/tools/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
358
370
  autobyteus/tools/handlers/shell_handler.py,sha256=ClTXqFR45iyD0gcoOPpKRX5p6g_6BI4a5JOLuKuQOIA,1065
359
371
  autobyteus/tools/mcp/__init__.py,sha256=gwT34UgJe2rU5y4bYNOLI-PyAmRQTMWKz_WC4f2LcyE,1553
@@ -361,26 +373,35 @@ autobyteus/tools/mcp/config_service.py,sha256=7OoqZGVxBob4IeeBjChFCpwyI9IJIxlOQD
361
373
  autobyteus/tools/mcp/factory.py,sha256=vNQ719v1hMo0s98OWKKylHhO_cynyghWRejzot4RWSE,2204
362
374
  autobyteus/tools/mcp/schema_mapper.py,sha256=DDCPN_BJ1twe-9VIGVZaksmrQZVVNnL0uuD9-AeToTw,4413
363
375
  autobyteus/tools/mcp/server_instance_manager.py,sha256=pGZZCH9Qp7n6jefwyDsvoo0Pxe7AWCcqIqnXgWt8hyg,6289
364
- autobyteus/tools/mcp/tool.py,sha256=OdP2A2Xj3F2Ob6v_r4ZmtF6UtiBIn8FeD9g1KTuMiz0,3380
365
- autobyteus/tools/mcp/tool_registrar.py,sha256=RugX4TdiD6IfXF8S6cy2Ae-ZobT6RdRKdx7NLbcBMyI,11028
376
+ autobyteus/tools/mcp/tool.py,sha256=tELqogRQbfLdMnr4_r_1dKflUr-RRmTp0s0LvLBL43Q,3398
377
+ autobyteus/tools/mcp/tool_registrar.py,sha256=SoXJhs-x7JabNBgqKJE_1acC8R1fHV3fjIUELl1stV0,11325
366
378
  autobyteus/tools/mcp/types.py,sha256=KiQUPhqzro5VW7piA-eOXkBcE0FThOUgr9Pw_7iV6Us,4171
367
379
  autobyteus/tools/mcp/server/__init__.py,sha256=yfCMAtVlfy1x8aKEnRz9_CHnco2zVSdepwIPSjywSNw,523
368
380
  autobyteus/tools/mcp/server/base_managed_mcp_server.py,sha256=ep-EKh4uqorrNYvv7D27Kh4fxR1f-E3hYMclFcWq0p4,5512
369
381
  autobyteus/tools/mcp/server/http_managed_mcp_server.py,sha256=Kit7zcJxaRXfAXMxYqCKVcl4MfNsgRfXK9kjDaQFkMA,1969
370
382
  autobyteus/tools/mcp/server/proxy.py,sha256=08F3m1I_IH2wrRXK29R_NPDB6ITHpo982Mq9G53hbUo,1660
371
383
  autobyteus/tools/mcp/server/stdio_managed_mcp_server.py,sha256=a84GOnhWLg4vx6yo5dI8BlqUA_fdi0M5eNo2a-tGWwM,2085
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
384
+ autobyteus/tools/multimedia/__init__.py,sha256=UgucHEd7HCUvBQpyXnjk64ZOlJ2FOCBPe0Ikg8PsEDM,330
385
+ autobyteus/tools/multimedia/audio_tools.py,sha256=WI0rFucPREwK_gzE2f9EK3v9A4NYf-rPWkPtbjl-lsA,4316
386
+ autobyteus/tools/multimedia/download_media_tool.py,sha256=LNC1IRjkp2wirEZr-mSQcx_fEkXj8YTJjpECzRcyhsk,6556
387
+ autobyteus/tools/multimedia/image_tools.py,sha256=No4e3pawqfTta6e_Ej2sCCwH45xlWrloBjQP3gzBJww,7682
388
+ autobyteus/tools/multimedia/media_reader_tool.py,sha256=5MMCn9fbSsy1gVUZcvvS4QPCkzbl-hLuUDyzLQchJhM,5831
376
389
  autobyteus/tools/operation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
377
390
  autobyteus/tools/operation/file_operation.py,sha256=bAehQ9PfHoCDpk9Wa7vx9h3ohzVuaGzzBUogxleTwq8,2375
378
391
  autobyteus/tools/operation/file_rename_operation.py,sha256=pExiC69HUzYbKihlVumlGHMGxmmrsKQB0JfAM5x4JH0,1710
379
392
  autobyteus/tools/operation/operation.py,sha256=9sIZnlrPct5CwkCKuwbspVKvjF4KumP6twmXRo1blwo,1702
380
393
  autobyteus/tools/operation/shell_operation.py,sha256=_BiGIRGWCzzwPVtbqFwXpHOvnqH68YqJujQI-gWeKx0,1860
381
394
  autobyteus/tools/registry/__init__.py,sha256=39TSHm7mD6NXhsrczsX5Mdr32US0I6z3Bzad4hgcrrA,250
382
- autobyteus/tools/registry/tool_definition.py,sha256=MIhFPhgbvrL4Q5MVq8d2UybCsTE-O6kLagZQ7NujW6w,6953
383
- autobyteus/tools/registry/tool_registry.py,sha256=eekF5q3GZr3FwnwITGni-gyc46Vob5u3WoApmvEHPQ8,7564
395
+ autobyteus/tools/registry/tool_definition.py,sha256=Hlr85O4lak47YMY7H4J-NA9iDKuF10hpS5BRCE9xDcM,9242
396
+ autobyteus/tools/registry/tool_registry.py,sha256=z6xm0CnlrF-e3MUQiLdivR3k2nYv9fPdbIPYmnRk76U,8644
397
+ autobyteus/tools/search/__init__.py,sha256=amxh1rGPc8Tz3jN3G4DSAE79N7KkRgrs1P_0TJHlFSY,507
398
+ autobyteus/tools/search/base_strategy.py,sha256=xsOhJVoiEJ8wsOkq4JnVSkgBqha735Jtcm1Qp-0PhVw,987
399
+ autobyteus/tools/search/client.py,sha256=04q9BZDEHPEl9ur8cCm9Pnb-iqAlDUkNlLUZ8WD_M38,833
400
+ autobyteus/tools/search/factory.py,sha256=AElxRbeaePHfFzeXAzoyefu3evvS7sncqQpAKVCjSBI,3665
401
+ autobyteus/tools/search/google_cse_strategy.py,sha256=LpWptdBSNCCB2vlhOxTt3Q0U1sEmTc6qKLM5F-rcRkY,2874
402
+ autobyteus/tools/search/providers.py,sha256=VE-alemtM_ozz2sbyK17-dbLQVYRYdx7WURiFYPx8Oc,242
403
+ autobyteus/tools/search/serpapi_strategy.py,sha256=9oVOZa4psAu73DhWxnxjMquuTEDLxKvpMun8OuLSgjI,2692
404
+ autobyteus/tools/search/serper_strategy.py,sha256=QWXp8DU1D42gmPvQwtGl-kRP0Tl80zjsQe7NvDe1JuI,3602
384
405
  autobyteus/tools/usage/__init__.py,sha256=0kJoUH-m0d1AHTYJQyXlCjlXhMJ3e95Ykf-8J9lO2g4,224
385
406
  autobyteus/tools/usage/formatters/__init__.py,sha256=BThdI_R8Dkda1eHJFr1cQ7nLCgf5KfSuvWokjPrnT9U,1424
386
407
  autobyteus/tools/usage/formatters/anthropic_json_example_formatter.py,sha256=EVVPZ7e1tG3QRcEPjdOC0yTvnGisubfUm9geWbd9r2g,792
@@ -398,13 +419,14 @@ autobyteus/tools/usage/formatters/openai_json_example_formatter.py,sha256=-Ggx3V
398
419
  autobyteus/tools/usage/formatters/openai_json_schema_formatter.py,sha256=3pN4CnmWiBJaZMhV7qnWcSKPpyZ2cEdiU-FVMRfPT1w,948
399
420
  autobyteus/tools/usage/parsers/__init__.py,sha256=4y235cYvUm60v30m4KCwQ4g9x9yP81QYBhSkUmjFWAU,915
400
421
  autobyteus/tools/usage/parsers/_json_extractor.py,sha256=Q7BJsEcFkEZJ8q-ifIl-7t4FXZgFoFEwFXAGvKFYhCk,3601
422
+ autobyteus/tools/usage/parsers/_string_decoders.py,sha256=8dp5FfDIehHh5A7sKmomeEdTXqsMSJyHiuolFvipu68,638
401
423
  autobyteus/tools/usage/parsers/anthropic_xml_tool_usage_parser.py,sha256=xAVq7bPlyfZK5YBVsNlXyyc-1J4kyVr4-wDNI0ekl_o,433
402
424
  autobyteus/tools/usage/parsers/base_parser.py,sha256=iNHVUXMzAydnhYeEBgcXU0g8L_H9KTMavOEd-iwDLbk,1366
403
- autobyteus/tools/usage/parsers/default_json_tool_usage_parser.py,sha256=jl-VKMubpgI15TuX7tyKmu_4WHb2YUVw5Yz2fy7GXkY,3480
404
- autobyteus/tools/usage/parsers/default_xml_tool_usage_parser.py,sha256=CQjOS1wkvl_BdRCqJlPYYMjqOh9x3C0WiPR_kUVgyI8,11778
425
+ autobyteus/tools/usage/parsers/default_json_tool_usage_parser.py,sha256=s5B8TT5jwBpFQyDYzxPVRUptsHT3WHsJGK9XWSAnDbg,3803
426
+ autobyteus/tools/usage/parsers/default_xml_tool_usage_parser.py,sha256=esamQXffzI5-lsvRmOHwqF3WYOdMVW5zBdzPYVpBjgk,12344
405
427
  autobyteus/tools/usage/parsers/exceptions.py,sha256=CncCSH4IJUYPaCTilj1oPgfZWdCycIxQBrWiSKuWXtc,468
406
- autobyteus/tools/usage/parsers/gemini_json_tool_usage_parser.py,sha256=t0vQWhmf4t6-tGq6OeH4o-1w_3eeUxQjHDYNpQ5g6R4,3502
407
- autobyteus/tools/usage/parsers/openai_json_tool_usage_parser.py,sha256=wQXe4HAYsvfuLG6Ffv_Rk38ZAN5c1NlaEb7lFq7xbVs,6916
428
+ autobyteus/tools/usage/parsers/gemini_json_tool_usage_parser.py,sha256=bL9i4jqWKDXK7thOblfozggLfGPKMNIpIsTcYFEYtcA,3721
429
+ autobyteus/tools/usage/parsers/openai_json_tool_usage_parser.py,sha256=_p8Uyzv29yhhAG7MPgp7a5JEPZYNCx6ffUbRBb3eYwU,7111
408
430
  autobyteus/tools/usage/parsers/provider_aware_tool_usage_parser.py,sha256=OVPQpNlDCvAIKE5kKXFUIMdaTTK3pyJW2oCQ_bkOPBk,2829
409
431
  autobyteus/tools/usage/providers/__init__.py,sha256=C8GmfzYwzSS2OGv7MbvxtRe0OsIALvkC7rN7OWvA5p4,445
410
432
  autobyteus/tools/usage/providers/tool_manifest_provider.py,sha256=r-q9YkNYXEbNApAjufvxGuU4JPiu78x6u60wjTZcnfM,4668
@@ -427,7 +449,7 @@ autobyteus/workflow/bootstrap_steps/__init__.py,sha256=9C9HvkXHNYJfI-OfXvMWOyerA
427
449
  autobyteus/workflow/bootstrap_steps/agent_tool_injection_step.py,sha256=LLPCKwzh0tQI6aUrWWrWNsU92uK-YdP0xDCkv1LWgTU,1942
428
450
  autobyteus/workflow/bootstrap_steps/base_workflow_bootstrap_step.py,sha256=mj6SvAbKVL_HFygRh5QkuEhOhDhi4djU8opBARLa8fM,880
429
451
  autobyteus/workflow/bootstrap_steps/coordinator_initialization_step.py,sha256=zZqc2fxOwy1Crll6VEXt2a8UC7ROSG_jmXC5Kjs7fhk,1927
430
- autobyteus/workflow/bootstrap_steps/coordinator_prompt_preparation_step.py,sha256=aOHjTg-Ch9J2Eo_qPhHTblzmeKpeU6etWaVbde-Wjwk,5533
452
+ autobyteus/workflow/bootstrap_steps/coordinator_prompt_preparation_step.py,sha256=gVKte0a0SxBC31SiwbTk3dsJZ611mESXfcscpmuVzdI,5534
431
453
  autobyteus/workflow/bootstrap_steps/workflow_bootstrapper.py,sha256=0fz-eN5DCtWPsYZLMUeFh-OOKQSBpwhN6ry3tAB5AM8,2746
432
454
  autobyteus/workflow/bootstrap_steps/workflow_runtime_queue_initialization_step.py,sha256=uE8Ixgv66BMpzkBR_ohXY5i3A4CsaKdFmod514dzYj4,1369
433
455
  autobyteus/workflow/context/__init__.py,sha256=aOkJMgX6bo7Cq1UBC4oENgb7lZYhMdJJSLJ-3uUhnA0,653
@@ -471,18 +493,19 @@ autobyteus/workflow/streaming/workflow_stream_event_payloads.py,sha256=jv1bVYg-7
471
493
  autobyteus/workflow/streaming/workflow_stream_events.py,sha256=75P29jNgcL7Go7D9wVz236KTwPfmqc5K7hUvVnc94K0,2221
472
494
  autobyteus/workflow/utils/__init__.py,sha256=SzaMZHnJBIJKcT_r-HOeyIcuxzRu2bGeFkOcMLJaalk,222
473
495
  autobyteus/workflow/utils/wait_for_idle.py,sha256=FgHtz59DN0eg8Na1PkkVR55Ihdd2e5Gn_mr7RVHl4qI,2001
474
- autobyteus-1.1.9.dist-info/licenses/LICENSE,sha256=Ompok_c8HRsXRwmax-pGR9OZRRxZC9RPp4JB6eTJd0M,1360
496
+ autobyteus-1.2.1.dist-info/licenses/LICENSE,sha256=Ompok_c8HRsXRwmax-pGR9OZRRxZC9RPp4JB6eTJd0M,1360
475
497
  examples/__init__.py,sha256=BtTQJ6yeHyksK5GC3kfN6RFR6Gcrwq1TBmp6FIIj3Z8,40
476
498
  examples/discover_phase_transitions.py,sha256=NiFK_XzDCpWwmNsQqf0Ou2w6L5bofKIKODq7sH5uPzk,3679
499
+ examples/run_agentic_software_engineer.py,sha256=-1GzNFTBUFJh31olYLW0vGJAMY0L8BlJdMyNy3FT9ew,10967
477
500
  examples/run_browser_agent.py,sha256=tpBJGIYYvVsNZAUo_WsZbhV_8fdeORUoHlQ8uQvnXPM,11737
478
501
  examples/run_google_slides_agent.py,sha256=R3skoCO7gxNKCdqm_Px3YVlzSh5WzJc7KAxqO-x7sJc,13105
479
502
  examples/run_mcp_browser_client.py,sha256=6vEBxGtAuGffkFk-gr3NvqetO84IdhNzip5Jp7V1tSc,6772
480
503
  examples/run_mcp_google_slides_client.py,sha256=l5B4sgDyyVEfL52WUiZw9mJjL5vOuD5ZJlnzIJbA-iw,11824
481
504
  examples/run_mcp_list_tools.py,sha256=-dOM-7xyyDM2gp5e_8KZVGbX5ZxWqFQB9l-fHfR8XxY,7367
482
- examples/run_poem_writer.py,sha256=cHOy-EoLG01cHTeX0Xf8a-Mti4CCoeDEqzw0mYG1QOU,13145
505
+ examples/run_poem_writer.py,sha256=C64YXkEYa3ZzUYv1AqZqe0NbLU8FEnUbujh22taRJu0,13141
483
506
  examples/run_sqlite_agent.py,sha256=wy1Mp_F7RR0WmvfmxsPLG9JFPi6SpTVd0x_Ep76bUQ8,13159
484
507
  examples/agent_team/__init__.py,sha256=WIg0HENp1TUClJ3p2gIRn0C-VW9Qr7Ttqtedr4xQ3Jo,51
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,,
508
+ autobyteus-1.2.1.dist-info/METADATA,sha256=1cQU7gEO6YR_sUD41ygzM0aHfMmwIbYOtbv5HdxGY0c,10174
509
+ autobyteus-1.2.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
510
+ autobyteus-1.2.1.dist-info/top_level.txt,sha256=vNmK1Y8Irbc0iDPdRtr9gIx5eLM-c2v1ntItkzICzHU,20
511
+ autobyteus-1.2.1.dist-info/RECORD,,