autobyteus 1.1.3__py3-none-any.whl → 1.1.5__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 (284) hide show
  1. autobyteus/agent/agent.py +1 -1
  2. autobyteus/agent/bootstrap_steps/system_prompt_processing_step.py +4 -2
  3. autobyteus/agent/context/__init__.py +4 -2
  4. autobyteus/agent/context/agent_config.py +35 -8
  5. autobyteus/agent/context/agent_context_registry.py +73 -0
  6. autobyteus/agent/events/notifiers.py +4 -0
  7. autobyteus/agent/events/worker_event_dispatcher.py +1 -2
  8. autobyteus/agent/handlers/inter_agent_message_event_handler.py +8 -3
  9. autobyteus/agent/handlers/llm_complete_response_received_event_handler.py +19 -19
  10. autobyteus/agent/handlers/llm_user_message_ready_event_handler.py +2 -2
  11. autobyteus/agent/handlers/tool_result_event_handler.py +48 -20
  12. autobyteus/agent/handlers/user_input_message_event_handler.py +16 -1
  13. autobyteus/agent/input_processor/__init__.py +1 -7
  14. autobyteus/agent/message/context_file_type.py +6 -0
  15. autobyteus/agent/message/send_message_to.py +74 -99
  16. autobyteus/agent/phases/discover.py +2 -1
  17. autobyteus/agent/runtime/agent_runtime.py +10 -2
  18. autobyteus/agent/runtime/agent_worker.py +1 -0
  19. autobyteus/agent/sender_type.py +15 -0
  20. autobyteus/agent/streaming/agent_event_stream.py +6 -0
  21. autobyteus/agent/streaming/stream_event_payloads.py +12 -0
  22. autobyteus/agent/streaming/stream_events.py +3 -0
  23. autobyteus/agent/system_prompt_processor/tool_manifest_injector_processor.py +7 -4
  24. autobyteus/agent/tool_execution_result_processor/__init__.py +9 -0
  25. autobyteus/agent/tool_execution_result_processor/base_processor.py +46 -0
  26. autobyteus/agent/tool_execution_result_processor/processor_definition.py +36 -0
  27. autobyteus/agent/tool_execution_result_processor/processor_meta.py +36 -0
  28. autobyteus/agent/tool_execution_result_processor/processor_registry.py +70 -0
  29. autobyteus/agent/workspace/base_workspace.py +17 -2
  30. autobyteus/agent_team/__init__.py +1 -0
  31. autobyteus/agent_team/agent_team.py +93 -0
  32. autobyteus/agent_team/agent_team_builder.py +184 -0
  33. autobyteus/agent_team/base_agent_team.py +86 -0
  34. autobyteus/agent_team/bootstrap_steps/__init__.py +24 -0
  35. autobyteus/agent_team/bootstrap_steps/agent_configuration_preparation_step.py +73 -0
  36. autobyteus/agent_team/bootstrap_steps/agent_team_bootstrapper.py +54 -0
  37. autobyteus/agent_team/bootstrap_steps/agent_team_runtime_queue_initialization_step.py +25 -0
  38. autobyteus/agent_team/bootstrap_steps/base_agent_team_bootstrap_step.py +23 -0
  39. autobyteus/agent_team/bootstrap_steps/coordinator_initialization_step.py +41 -0
  40. autobyteus/agent_team/bootstrap_steps/coordinator_prompt_preparation_step.py +85 -0
  41. autobyteus/agent_team/bootstrap_steps/task_notifier_initialization_step.py +51 -0
  42. autobyteus/agent_team/bootstrap_steps/team_context_initialization_step.py +45 -0
  43. autobyteus/agent_team/context/__init__.py +17 -0
  44. autobyteus/agent_team/context/agent_team_config.py +33 -0
  45. autobyteus/agent_team/context/agent_team_context.py +61 -0
  46. autobyteus/agent_team/context/agent_team_runtime_state.py +56 -0
  47. autobyteus/agent_team/context/team_manager.py +147 -0
  48. autobyteus/agent_team/context/team_node_config.py +76 -0
  49. autobyteus/agent_team/events/__init__.py +29 -0
  50. autobyteus/agent_team/events/agent_team_event_dispatcher.py +39 -0
  51. autobyteus/agent_team/events/agent_team_events.py +53 -0
  52. autobyteus/agent_team/events/agent_team_input_event_queue_manager.py +21 -0
  53. autobyteus/agent_team/exceptions.py +8 -0
  54. autobyteus/agent_team/factory/__init__.py +9 -0
  55. autobyteus/agent_team/factory/agent_team_factory.py +99 -0
  56. autobyteus/agent_team/handlers/__init__.py +19 -0
  57. autobyteus/agent_team/handlers/agent_team_event_handler_registry.py +23 -0
  58. autobyteus/agent_team/handlers/base_agent_team_event_handler.py +16 -0
  59. autobyteus/agent_team/handlers/inter_agent_message_request_event_handler.py +61 -0
  60. autobyteus/agent_team/handlers/lifecycle_agent_team_event_handler.py +27 -0
  61. autobyteus/agent_team/handlers/process_user_message_event_handler.py +46 -0
  62. autobyteus/agent_team/handlers/tool_approval_team_event_handler.py +48 -0
  63. autobyteus/agent_team/phases/__init__.py +11 -0
  64. autobyteus/agent_team/phases/agent_team_operational_phase.py +19 -0
  65. autobyteus/agent_team/phases/agent_team_phase_manager.py +48 -0
  66. autobyteus/agent_team/runtime/__init__.py +13 -0
  67. autobyteus/agent_team/runtime/agent_team_runtime.py +82 -0
  68. autobyteus/agent_team/runtime/agent_team_worker.py +117 -0
  69. autobyteus/agent_team/shutdown_steps/__init__.py +17 -0
  70. autobyteus/agent_team/shutdown_steps/agent_team_shutdown_orchestrator.py +35 -0
  71. autobyteus/agent_team/shutdown_steps/agent_team_shutdown_step.py +42 -0
  72. autobyteus/agent_team/shutdown_steps/base_agent_team_shutdown_step.py +16 -0
  73. autobyteus/agent_team/shutdown_steps/bridge_cleanup_step.py +28 -0
  74. autobyteus/agent_team/shutdown_steps/sub_team_shutdown_step.py +41 -0
  75. autobyteus/agent_team/streaming/__init__.py +26 -0
  76. autobyteus/agent_team/streaming/agent_event_bridge.py +48 -0
  77. autobyteus/agent_team/streaming/agent_event_multiplexer.py +70 -0
  78. autobyteus/agent_team/streaming/agent_team_event_notifier.py +64 -0
  79. autobyteus/agent_team/streaming/agent_team_event_stream.py +33 -0
  80. autobyteus/agent_team/streaming/agent_team_stream_event_payloads.py +32 -0
  81. autobyteus/agent_team/streaming/agent_team_stream_events.py +56 -0
  82. autobyteus/agent_team/streaming/team_event_bridge.py +50 -0
  83. autobyteus/agent_team/task_notification/__init__.py +11 -0
  84. autobyteus/agent_team/task_notification/system_event_driven_agent_task_notifier.py +164 -0
  85. autobyteus/agent_team/task_notification/task_notification_mode.py +24 -0
  86. autobyteus/agent_team/utils/__init__.py +9 -0
  87. autobyteus/agent_team/utils/wait_for_idle.py +46 -0
  88. autobyteus/cli/__init__.py +1 -1
  89. autobyteus/cli/agent_team_tui/__init__.py +4 -0
  90. autobyteus/cli/agent_team_tui/app.py +210 -0
  91. autobyteus/cli/agent_team_tui/state.py +180 -0
  92. autobyteus/cli/agent_team_tui/widgets/__init__.py +6 -0
  93. autobyteus/cli/agent_team_tui/widgets/agent_list_sidebar.py +149 -0
  94. autobyteus/cli/agent_team_tui/widgets/focus_pane.py +320 -0
  95. autobyteus/cli/agent_team_tui/widgets/logo.py +20 -0
  96. autobyteus/cli/agent_team_tui/widgets/renderables.py +77 -0
  97. autobyteus/cli/agent_team_tui/widgets/shared.py +60 -0
  98. autobyteus/cli/agent_team_tui/widgets/status_bar.py +14 -0
  99. autobyteus/cli/agent_team_tui/widgets/task_board_panel.py +82 -0
  100. autobyteus/cli/cli_display.py +1 -1
  101. autobyteus/cli/workflow_tui/__init__.py +4 -0
  102. autobyteus/cli/workflow_tui/app.py +210 -0
  103. autobyteus/cli/workflow_tui/state.py +189 -0
  104. autobyteus/cli/workflow_tui/widgets/__init__.py +6 -0
  105. autobyteus/cli/workflow_tui/widgets/agent_list_sidebar.py +149 -0
  106. autobyteus/cli/workflow_tui/widgets/focus_pane.py +335 -0
  107. autobyteus/cli/workflow_tui/widgets/logo.py +27 -0
  108. autobyteus/cli/workflow_tui/widgets/renderables.py +70 -0
  109. autobyteus/cli/workflow_tui/widgets/shared.py +51 -0
  110. autobyteus/cli/workflow_tui/widgets/status_bar.py +14 -0
  111. autobyteus/events/event_types.py +8 -0
  112. autobyteus/llm/api/autobyteus_llm.py +11 -12
  113. autobyteus/llm/api/lmstudio_llm.py +34 -0
  114. autobyteus/llm/api/ollama_llm.py +8 -13
  115. autobyteus/llm/api/openai_compatible_llm.py +20 -3
  116. autobyteus/llm/autobyteus_provider.py +73 -46
  117. autobyteus/llm/llm_factory.py +103 -139
  118. autobyteus/llm/lmstudio_provider.py +104 -0
  119. autobyteus/llm/models.py +83 -53
  120. autobyteus/llm/ollama_provider.py +69 -61
  121. autobyteus/llm/ollama_provider_resolver.py +1 -0
  122. autobyteus/llm/providers.py +13 -12
  123. autobyteus/llm/runtimes.py +11 -0
  124. autobyteus/llm/token_counter/token_counter_factory.py +2 -0
  125. autobyteus/task_management/__init__.py +43 -0
  126. autobyteus/task_management/base_task_board.py +68 -0
  127. autobyteus/task_management/converters/__init__.py +11 -0
  128. autobyteus/task_management/converters/task_board_converter.py +64 -0
  129. autobyteus/task_management/converters/task_plan_converter.py +48 -0
  130. autobyteus/task_management/deliverable.py +16 -0
  131. autobyteus/task_management/deliverables/__init__.py +8 -0
  132. autobyteus/task_management/deliverables/file_deliverable.py +15 -0
  133. autobyteus/task_management/events.py +27 -0
  134. autobyteus/task_management/in_memory_task_board.py +126 -0
  135. autobyteus/task_management/schemas/__init__.py +15 -0
  136. autobyteus/task_management/schemas/deliverable_schema.py +13 -0
  137. autobyteus/task_management/schemas/plan_definition.py +35 -0
  138. autobyteus/task_management/schemas/task_status_report.py +27 -0
  139. autobyteus/task_management/task_plan.py +110 -0
  140. autobyteus/task_management/tools/__init__.py +14 -0
  141. autobyteus/task_management/tools/get_task_board_status.py +68 -0
  142. autobyteus/task_management/tools/publish_task_plan.py +113 -0
  143. autobyteus/task_management/tools/update_task_status.py +135 -0
  144. autobyteus/tools/__init__.py +2 -0
  145. autobyteus/tools/ask_user_input.py +2 -1
  146. autobyteus/tools/bash/bash_executor.py +61 -15
  147. autobyteus/tools/browser/session_aware/browser_session_aware_navigate_to.py +2 -0
  148. autobyteus/tools/browser/session_aware/browser_session_aware_web_element_trigger.py +3 -0
  149. autobyteus/tools/browser/session_aware/browser_session_aware_webpage_reader.py +3 -0
  150. autobyteus/tools/browser/session_aware/browser_session_aware_webpage_screenshot_taker.py +3 -0
  151. autobyteus/tools/browser/standalone/google_search_ui.py +2 -0
  152. autobyteus/tools/browser/standalone/navigate_to.py +2 -0
  153. autobyteus/tools/browser/standalone/web_page_pdf_generator.py +3 -0
  154. autobyteus/tools/browser/standalone/webpage_image_downloader.py +3 -0
  155. autobyteus/tools/browser/standalone/webpage_reader.py +2 -0
  156. autobyteus/tools/browser/standalone/webpage_screenshot_taker.py +3 -0
  157. autobyteus/tools/file/file_reader.py +36 -9
  158. autobyteus/tools/file/file_writer.py +37 -9
  159. autobyteus/tools/functional_tool.py +5 -4
  160. autobyteus/tools/image_downloader.py +2 -0
  161. autobyteus/tools/mcp/config_service.py +63 -58
  162. autobyteus/tools/mcp/server/http_managed_mcp_server.py +14 -2
  163. autobyteus/tools/mcp/server/stdio_managed_mcp_server.py +14 -2
  164. autobyteus/tools/mcp/server_instance_manager.py +30 -4
  165. autobyteus/tools/mcp/tool_registrar.py +106 -51
  166. autobyteus/tools/parameter_schema.py +17 -11
  167. autobyteus/tools/pdf_downloader.py +2 -1
  168. autobyteus/tools/registry/tool_definition.py +36 -37
  169. autobyteus/tools/registry/tool_registry.py +50 -2
  170. autobyteus/tools/timer.py +2 -0
  171. autobyteus/tools/tool_category.py +15 -4
  172. autobyteus/tools/tool_meta.py +6 -1
  173. autobyteus/tools/tool_origin.py +10 -0
  174. autobyteus/tools/usage/formatters/default_json_example_formatter.py +78 -3
  175. autobyteus/tools/usage/formatters/default_xml_example_formatter.py +23 -3
  176. autobyteus/tools/usage/formatters/gemini_json_example_formatter.py +6 -0
  177. autobyteus/tools/usage/formatters/google_json_example_formatter.py +7 -0
  178. autobyteus/tools/usage/formatters/openai_json_example_formatter.py +6 -4
  179. autobyteus/tools/usage/parsers/gemini_json_tool_usage_parser.py +23 -7
  180. autobyteus/tools/usage/parsers/provider_aware_tool_usage_parser.py +14 -25
  181. autobyteus/tools/usage/providers/__init__.py +2 -12
  182. autobyteus/tools/usage/providers/tool_manifest_provider.py +36 -29
  183. autobyteus/tools/usage/registries/__init__.py +7 -12
  184. autobyteus/tools/usage/registries/tool_formatter_pair.py +15 -0
  185. autobyteus/tools/usage/registries/tool_formatting_registry.py +58 -0
  186. autobyteus/tools/usage/registries/tool_usage_parser_registry.py +55 -0
  187. autobyteus/workflow/agentic_workflow.py +93 -0
  188. autobyteus/{agent/workflow → workflow}/base_agentic_workflow.py +19 -27
  189. autobyteus/workflow/bootstrap_steps/__init__.py +20 -0
  190. autobyteus/workflow/bootstrap_steps/agent_tool_injection_step.py +34 -0
  191. autobyteus/workflow/bootstrap_steps/base_workflow_bootstrap_step.py +23 -0
  192. autobyteus/workflow/bootstrap_steps/coordinator_initialization_step.py +41 -0
  193. autobyteus/workflow/bootstrap_steps/coordinator_prompt_preparation_step.py +108 -0
  194. autobyteus/workflow/bootstrap_steps/workflow_bootstrapper.py +50 -0
  195. autobyteus/workflow/bootstrap_steps/workflow_runtime_queue_initialization_step.py +25 -0
  196. autobyteus/workflow/context/__init__.py +17 -0
  197. autobyteus/workflow/context/team_manager.py +147 -0
  198. autobyteus/workflow/context/workflow_config.py +30 -0
  199. autobyteus/workflow/context/workflow_context.py +61 -0
  200. autobyteus/workflow/context/workflow_node_config.py +76 -0
  201. autobyteus/workflow/context/workflow_runtime_state.py +53 -0
  202. autobyteus/workflow/events/__init__.py +29 -0
  203. autobyteus/workflow/events/workflow_event_dispatcher.py +39 -0
  204. autobyteus/workflow/events/workflow_events.py +53 -0
  205. autobyteus/workflow/events/workflow_input_event_queue_manager.py +21 -0
  206. autobyteus/workflow/exceptions.py +8 -0
  207. autobyteus/workflow/factory/__init__.py +9 -0
  208. autobyteus/workflow/factory/workflow_factory.py +99 -0
  209. autobyteus/workflow/handlers/__init__.py +19 -0
  210. autobyteus/workflow/handlers/base_workflow_event_handler.py +16 -0
  211. autobyteus/workflow/handlers/inter_agent_message_request_event_handler.py +61 -0
  212. autobyteus/workflow/handlers/lifecycle_workflow_event_handler.py +27 -0
  213. autobyteus/workflow/handlers/process_user_message_event_handler.py +46 -0
  214. autobyteus/workflow/handlers/tool_approval_workflow_event_handler.py +39 -0
  215. autobyteus/workflow/handlers/workflow_event_handler_registry.py +23 -0
  216. autobyteus/workflow/phases/__init__.py +11 -0
  217. autobyteus/workflow/phases/workflow_operational_phase.py +19 -0
  218. autobyteus/workflow/phases/workflow_phase_manager.py +48 -0
  219. autobyteus/workflow/runtime/__init__.py +13 -0
  220. autobyteus/workflow/runtime/workflow_runtime.py +82 -0
  221. autobyteus/workflow/runtime/workflow_worker.py +117 -0
  222. autobyteus/workflow/shutdown_steps/__init__.py +17 -0
  223. autobyteus/workflow/shutdown_steps/agent_team_shutdown_step.py +42 -0
  224. autobyteus/workflow/shutdown_steps/base_workflow_shutdown_step.py +16 -0
  225. autobyteus/workflow/shutdown_steps/bridge_cleanup_step.py +28 -0
  226. autobyteus/workflow/shutdown_steps/sub_workflow_shutdown_step.py +41 -0
  227. autobyteus/workflow/shutdown_steps/workflow_shutdown_orchestrator.py +35 -0
  228. autobyteus/workflow/streaming/__init__.py +26 -0
  229. autobyteus/workflow/streaming/agent_event_bridge.py +48 -0
  230. autobyteus/workflow/streaming/agent_event_multiplexer.py +70 -0
  231. autobyteus/workflow/streaming/workflow_event_bridge.py +50 -0
  232. autobyteus/workflow/streaming/workflow_event_notifier.py +83 -0
  233. autobyteus/workflow/streaming/workflow_event_stream.py +33 -0
  234. autobyteus/workflow/streaming/workflow_stream_event_payloads.py +28 -0
  235. autobyteus/workflow/streaming/workflow_stream_events.py +45 -0
  236. autobyteus/workflow/utils/__init__.py +9 -0
  237. autobyteus/workflow/utils/wait_for_idle.py +46 -0
  238. autobyteus/workflow/workflow_builder.py +151 -0
  239. {autobyteus-1.1.3.dist-info → autobyteus-1.1.5.dist-info}/METADATA +16 -14
  240. autobyteus-1.1.5.dist-info/RECORD +455 -0
  241. {autobyteus-1.1.3.dist-info → autobyteus-1.1.5.dist-info}/top_level.txt +1 -0
  242. examples/__init__.py +1 -0
  243. examples/agent_team/__init__.py +1 -0
  244. examples/discover_phase_transitions.py +104 -0
  245. examples/run_browser_agent.py +262 -0
  246. examples/run_google_slides_agent.py +287 -0
  247. examples/run_mcp_browser_client.py +174 -0
  248. examples/run_mcp_google_slides_client.py +270 -0
  249. examples/run_mcp_list_tools.py +189 -0
  250. examples/run_poem_writer.py +284 -0
  251. examples/run_sqlite_agent.py +295 -0
  252. autobyteus/agent/context/agent_phase_manager.py +0 -264
  253. autobyteus/agent/context/phases.py +0 -49
  254. autobyteus/agent/group/__init__.py +0 -0
  255. autobyteus/agent/group/agent_group.py +0 -164
  256. autobyteus/agent/group/agent_group_context.py +0 -81
  257. autobyteus/agent/input_processor/content_prefixing_input_processor.py +0 -41
  258. autobyteus/agent/input_processor/metadata_appending_input_processor.py +0 -34
  259. autobyteus/agent/input_processor/passthrough_input_processor.py +0 -33
  260. autobyteus/agent/workflow/__init__.py +0 -11
  261. autobyteus/agent/workflow/agentic_workflow.py +0 -89
  262. autobyteus/tools/mcp/call_handlers/__init__.py +0 -16
  263. autobyteus/tools/mcp/call_handlers/base_handler.py +0 -40
  264. autobyteus/tools/mcp/call_handlers/stdio_handler.py +0 -76
  265. autobyteus/tools/mcp/call_handlers/streamable_http_handler.py +0 -55
  266. autobyteus/tools/mcp/registrar.py +0 -202
  267. autobyteus/tools/usage/providers/json_example_provider.py +0 -32
  268. autobyteus/tools/usage/providers/json_schema_provider.py +0 -35
  269. autobyteus/tools/usage/providers/json_tool_usage_parser_provider.py +0 -28
  270. autobyteus/tools/usage/providers/xml_example_provider.py +0 -28
  271. autobyteus/tools/usage/providers/xml_schema_provider.py +0 -29
  272. autobyteus/tools/usage/providers/xml_tool_usage_parser_provider.py +0 -26
  273. autobyteus/tools/usage/registries/json_example_formatter_registry.py +0 -51
  274. autobyteus/tools/usage/registries/json_schema_formatter_registry.py +0 -51
  275. autobyteus/tools/usage/registries/json_tool_usage_parser_registry.py +0 -42
  276. autobyteus/tools/usage/registries/xml_example_formatter_registry.py +0 -30
  277. autobyteus/tools/usage/registries/xml_schema_formatter_registry.py +0 -33
  278. autobyteus/tools/usage/registries/xml_tool_usage_parser_registry.py +0 -30
  279. autobyteus/workflow/simple_task.py +0 -98
  280. autobyteus/workflow/task.py +0 -147
  281. autobyteus/workflow/workflow.py +0 -49
  282. autobyteus-1.1.3.dist-info/RECORD +0 -312
  283. {autobyteus-1.1.3.dist-info → autobyteus-1.1.5.dist-info}/WHEEL +0 -0
  284. {autobyteus-1.1.3.dist-info → autobyteus-1.1.5.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,455 @@
1
+ autobyteus/__init__.py,sha256=ij7pzJD0e838u_nQIypAlXkJQgUkcB898Gqw2Dovv-s,110
2
+ autobyteus/check_requirements.py,sha256=nLWmqMlGiAToQuub68IpL2EhRxFZ1CyCwRCMi2C5hrY,853
3
+ autobyteus/agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ autobyteus/agent/agent.py,sha256=OLHU73lGlfbrwqke3cpnY8HE5zZEvYb0Cqqsxu_LKD0,4926
5
+ autobyteus/agent/exceptions.py,sha256=tfXvey5SkT70X6kcu29o8YO91KB0hI9_uLrba91_G2s,237
6
+ autobyteus/agent/remote_agent.py,sha256=DPhAWobptj82HZaACbtLkXQBYIotgr3yZ6u4D9TJmeE,14458
7
+ autobyteus/agent/sender_type.py,sha256=Qlj2GBGVHXCRAKj7CMkd416bO_qcudoY730iM-LfJfM,559
8
+ autobyteus/agent/tool_invocation.py,sha256=Kt1ge4kUGzC5f6ONdoBNGDUr9OwSAIEKmGFrtGzjewM,2312
9
+ autobyteus/agent/bootstrap_steps/__init__.py,sha256=k3_J4MXu7PaTuUXK-D2Uax8kh4BnSNm22sDlQw6GFA4,906
10
+ autobyteus/agent/bootstrap_steps/agent_bootstrapper.py,sha256=tPxD4yQ_i3-rl9XOGaKrLMdpymBqrzHkkkzRW0xhPBw,4336
11
+ autobyteus/agent/bootstrap_steps/agent_runtime_queue_initialization_step.py,sha256=wulFdVAwR4jTZtJgHwLYf07r76KKCKpwa1Cho2AqjSw,3265
12
+ autobyteus/agent/bootstrap_steps/base_bootstrap_step.py,sha256=8XaGHJva2Fo4T3fACK36FbEcrblj105oVhffYFEQO1A,1349
13
+ 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/workspace_context_initialization_step.py,sha256=FMF9fhD6Wgas4TpQbSwKiL43OZBmwh_cAA3G_5jRJhM,2112
16
+ autobyteus/agent/context/__init__.py,sha256=1an2L4sKJ1tYbJKAhCLSw-oYzt5_lmUwh1SYClA5c3M,447
17
+ autobyteus/agent/context/agent_config.py,sha256=hu6b0Dklo9R9xZCCBzvgNSq06bZnOLQmsguRajCyALI,6334
18
+ autobyteus/agent/context/agent_context.py,sha256=3Vd1c4EF6JY7rOKar7TQSXNNSNnpB-hYuhGqVQdi52g,5726
19
+ autobyteus/agent/context/agent_context_registry.py,sha256=GqwKn0EKKTRv6Vwwrb5kMRrwD9uH5NCh_Nvtmw82QTo,2748
20
+ autobyteus/agent/context/agent_runtime_state.py,sha256=CIoOJwGR9-H-vYBfq-4eQRP5uSoBcmlAFUGSru8xZ7A,5125
21
+ autobyteus/agent/events/__init__.py,sha256=8AL83PBRLkEptTzPznn_XpGXq2-S56Yxx3WarNcsc3U,1507
22
+ autobyteus/agent/events/agent_events.py,sha256=plrBY3Cr_nUhrwvkpED_2qyPq2Slc0ciiupsWdPvmwo,3821
23
+ autobyteus/agent/events/agent_input_event_queue_manager.py,sha256=VfynrdVSPkKEH94yg9p1WBOoV52JQX8MRJhJ-GU7fcY,10461
24
+ autobyteus/agent/events/notifiers.py,sha256=--U1DMKwSdOyV0wWuWqzxykG6wgq0la6VHiVx62Twcs,7771
25
+ autobyteus/agent/events/worker_event_dispatcher.py,sha256=wE63Qq4gw0JhkxvpuvbxUJHhbjzKSfhinjuF6epfR04,6165
26
+ autobyteus/agent/factory/__init__.py,sha256=4_PxMM-S_BRuYoQBHIffY6bXpBdEv-zFyuB6YaK93Yw,204
27
+ autobyteus/agent/factory/agent_factory.py,sha256=8vrsGTvZi0XIVZxpB3CHiiSLIv9Rdar9SaQ8Y5v5gLo,6673
28
+ autobyteus/agent/handlers/__init__.py,sha256=UFIEqdaET3zTYnHJAJpjiSVS9euWqQuaVMlVTN6dyAY,1510
29
+ autobyteus/agent/handlers/approved_tool_invocation_event_handler.py,sha256=ND9XzSXIQOaj16AOs37gaPGGSgU1BXRK7CrWK_-wL8Y,7857
30
+ autobyteus/agent/handlers/base_event_handler.py,sha256=G2vtFJT_vyObWTgrgwIgRwOssBQ-6A3gxHtc7S4SEuQ,1264
31
+ autobyteus/agent/handlers/event_handler_registry.py,sha256=95BCsKtxKFFSsliSJOCb6nw10TMbiRK2qM366DDuZKM,3474
32
+ 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/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_user_message_ready_event_handler.py,sha256=hUy4lSOMmTFWNZwtCGB4JWdhurUe49yr6Mf5p4RTNcs,7666
37
+ autobyteus/agent/handlers/tool_execution_approval_event_handler.py,sha256=Tda_LrlIPbEwVzf1I6u4Vb9sPmAbGQRqT_2-Q9ukLhw,4489
38
+ autobyteus/agent/handlers/tool_invocation_request_event_handler.py,sha256=AjNGQgRCQkjXvYThd_AaPj0Lzh1adEkhYJO83alxVAY,10957
39
+ autobyteus/agent/handlers/tool_result_event_handler.py,sha256=CXsEHVWJ9PJCD8d1E7ytTzQCnApJxk9bj3j6OfEvQ_A,7341
40
+ autobyteus/agent/handlers/user_input_message_event_handler.py,sha256=eHoMnPYUPOlBTxNnOxKE2rWREfukVwXqLjaHngWDJgk,5124
41
+ autobyteus/agent/hooks/__init__.py,sha256=a1do0Ribb2Hpf9t0Xqxhf3Ls7R6EQuWJtfTGQK7VjUM,495
42
+ autobyteus/agent/hooks/base_phase_hook.py,sha256=7JU3FgPzX06Yg6eJgB4GXzXcaWTpOcEMmyw5Ku0mwJk,2040
43
+ autobyteus/agent/hooks/hook_definition.py,sha256=4aA4iZnxMnw9n6sGThD-kCt3JPQSjPQDCd5D7Q7uzQs,1273
44
+ 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/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/processor_definition.py,sha256=ISRHvjbBhlG2DYdgSK4hN3i8w1DJkgPOvCDY06TuslQ,2101
49
+ 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/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/processor_definition.py,sha256=AMLmiL8dMlTpmBKmQrqrfNTfwJLyL6kLHYGqJ-Ly8bE,1464
54
+ 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=VMFhhZu-39xaZs3AWfPc_JIMjLNvIpjtv0GajigZlyw,3644
57
+ autobyteus/agent/message/__init__.py,sha256=xRs_zyqW1e_Z6R2hu8bGj6sB5s86ZgQQMDkqoRE9kGY,681
58
+ autobyteus/agent/message/agent_input_user_message.py,sha256=NCy-1CjB4SFj4O05cH6HyC-lK-nZaspUh7bc3iwemD8,4838
59
+ autobyteus/agent/message/context_file.py,sha256=VCwuN9qWKUHe1sZOWKQMwnbj1DzaeyfbML9wXU8SIL8,3376
60
+ autobyteus/agent/message/context_file_type.py,sha256=wpfL0o-0DU33uwS3Ufgc3eqFNiOfH7YgQVQuTRvTROQ,2541
61
+ autobyteus/agent/message/inter_agent_message.py,sha256=302oAt5PdrAqS1Cz80o7G6Kk3Ur1D9JNxze7Q0NI3dM,2436
62
+ autobyteus/agent/message/inter_agent_message_type.py,sha256=l-j0WB4F6yRXSSnHRKzNfmwnL4wX3usPN0JIrQthyEA,1130
63
+ autobyteus/agent/message/send_message_to.py,sha256=0BoN_sXbUZ50BAS8sb3IGuIqIloZnC6kg7EzzRZrw8w,5879
64
+ autobyteus/agent/phases/__init__.py,sha256=OC0T294mOGUk6pudSVLslHtfziBJEYd_VoA-LgWo9oE,558
65
+ autobyteus/agent/phases/discover.py,sha256=YuW0I8PyGysiyAf3jfR-cVesgSH5zi78uYZKqnM6dGU,1993
66
+ autobyteus/agent/phases/manager.py,sha256=-K3trAbDyXweGUxtgKPuUjQh7Cr2oFswR9KwhisT128,15604
67
+ autobyteus/agent/phases/phase_enum.py,sha256=Ubd_fraZxYRJUM7DdeLEjL0Vvm1RzBcCuOUgVKHBELE,2882
68
+ autobyteus/agent/phases/transition_decorator.py,sha256=jiby_dzeytKGQFjnTQYQ1gziYh7F-2RnShajpHWWhFQ,1553
69
+ autobyteus/agent/phases/transition_info.py,sha256=wqA_ANUbDzjsgESUtgH4svVczPA6-LUdAtZm1MonoFA,1251
70
+ autobyteus/agent/runtime/__init__.py,sha256=VQLu_-t86WkvLKEnGmbPksP53CrqgchqY8eB-DS-SsI,457
71
+ autobyteus/agent/runtime/agent_runtime.py,sha256=Ibsl9o_Pnj_Vatd-eO0s_mzoantbIEo5M9zXw4vwn_I,6903
72
+ autobyteus/agent/runtime/agent_thread_pool_manager.py,sha256=-dyo3LQ4Mi1upUyyp-8EmQuRXWamIcESc1-WCVSS0dM,3607
73
+ autobyteus/agent/runtime/agent_worker.py,sha256=xGHjMMgDjTykIm5yBfIc1x0ylCGh8UQ1ITmoWyCKyZQ,11264
74
+ autobyteus/agent/shutdown_steps/__init__.py,sha256=583P5F3eBdqkmwBlnqua0PBZjHpnsfNEZgGxFw3x-4o,574
75
+ autobyteus/agent/shutdown_steps/agent_shutdown_orchestrator.py,sha256=5y8Ynm0zDbV00NkiJ4XNoM9U7T0vEp5E_fkUt4pTAVI,2475
76
+ autobyteus/agent/shutdown_steps/base_shutdown_step.py,sha256=YqHMD4opVvjCHHZdD38SxxJLhfAHL5523DNymUNHiD4,1083
77
+ autobyteus/agent/shutdown_steps/llm_instance_cleanup_step.py,sha256=f0zfOLNA_Ksp4Q0kBvikNlvoTXCnN-erQzSPMtmK44c,1863
78
+ autobyteus/agent/shutdown_steps/mcp_server_cleanup_step.py,sha256=_Ra9Fsf2KnPJAoGK0YdMH1wd0GdMonc9-MYY1GQookQ,1274
79
+ autobyteus/agent/streaming/__init__.py,sha256=ul7QUIjv5q1nYwzrU1nsVBsKZwpthdmUGsP3UPWmJ34,447
80
+ autobyteus/agent/streaming/agent_event_stream.py,sha256=lwpWy28flvtvERjycFpsdDIiInhZzDP73sG-LTBN8uI,10113
81
+ autobyteus/agent/streaming/queue_streamer.py,sha256=lTMyFwuf_NBJL6hrUIoz5-pqWSlM7fgz1xcVB73y1bk,2354
82
+ autobyteus/agent/streaming/stream_event_payloads.py,sha256=TuGOT7ebMpAgMw7bdwUiMwwkchIn-0NznKz9wQlU00A,7331
83
+ autobyteus/agent/streaming/stream_events.py,sha256=FjH5kBMWcgdA0Z07Omnn9qTb1FOoRlNrouoHGxq0vGQ,5562
84
+ autobyteus/agent/system_prompt_processor/__init__.py,sha256=5CuF47Y6DKwOWNBQQ-WRQpIxH6Iww-1V0KPok3GCGq0,446
85
+ autobyteus/agent/system_prompt_processor/base_processor.py,sha256=LyWb9wyPl7nZZgiKYK2jtwQj1oe2I40kDyjJgRP5oBI,1717
86
+ autobyteus/agent/system_prompt_processor/processor_definition.py,sha256=r2ry7igUxaVrpAVmzAtR-O1ssFIhQEry-2PBs6YIZog,1767
87
+ autobyteus/agent/system_prompt_processor/processor_meta.py,sha256=aQLo0WE58HVQf4lkDxej2Lz4XFLWddUd24ZPWscnsyo,2356
88
+ autobyteus/agent/system_prompt_processor/processor_registry.py,sha256=VjjFiQ2z3Sxb_ZBVJ1omCcqompA2ttN815YEnx0R2lE,5007
89
+ autobyteus/agent/system_prompt_processor/tool_manifest_injector_processor.py,sha256=xOfQvnePgTbSf48_W4NH8ZsSMyPylfAjJIDZAUc5vqQ,4222
90
+ autobyteus/agent/tool_execution_result_processor/__init__.py,sha256=GKiNSMvVvwuBce0z1wEUaf48NOzOqugzvB5Utxt8w7w,286
91
+ autobyteus/agent/tool_execution_result_processor/base_processor.py,sha256=0X_0W5dEYBZmWzVp6iiBwTCb0Gdm1Om_PxcoOyIHuW4,1546
92
+ autobyteus/agent/tool_execution_result_processor/processor_definition.py,sha256=Zr5a-DwKNdYuSO-UAD2R6Rg686YQAin5FhA6pWnxUVQ,1555
93
+ autobyteus/agent/tool_execution_result_processor/processor_meta.py,sha256=uUSvKeVVg6lq8aTCTvkKQjWlEOB2l0cn4FheC4s2hp8,1772
94
+ autobyteus/agent/tool_execution_result_processor/processor_registry.py,sha256=On8KGadeN17RCst3HuVPCPV5dbdG0raufpqwvUOv06I,2955
95
+ autobyteus/agent/utils/__init__.py,sha256=vau-Zjww0qxPyo9SetL7aLUEw-99PX8Nv8TEDngUlKs,210
96
+ autobyteus/agent/utils/wait_for_idle.py,sha256=S0jQ9-GyfXymTkv_VTG9tVmMQXSsLAU4hsfuAxspTp4,2464
97
+ autobyteus/agent/workspace/__init__.py,sha256=7a16HpWxic9zxxsmZeICnBGHK_Z2K9yJUv4z9YELKfw,277
98
+ autobyteus/agent/workspace/base_workspace.py,sha256=Kw9EZ_5iyatlf69VQaUf8nKgRjGxBef4VctLocLzHG0,3569
99
+ autobyteus/agent/workspace/workspace_config.py,sha256=UfDpOkCH5B7ddt227zoQdmq8bCvI0wTL9vPAB6tOH24,5571
100
+ autobyteus/agent/workspace/workspace_definition.py,sha256=l959gPAVSF17ym9P4y7vf4LuiibcVzom2y0AEmQT7Ak,1476
101
+ autobyteus/agent/workspace/workspace_meta.py,sha256=xuw1-lYQiK5YyyDDc_5uT3uOGL0FfwLC8zCQiSyyQro,1680
102
+ autobyteus/agent/workspace/workspace_registry.py,sha256=A_wADwvZOm1XutBgkn_-FBkqb4tS1fRtALrKe2XRDhw,3182
103
+ autobyteus/agent_team/__init__.py,sha256=JzL7W4KLKQdFpV3WLAZJp0dM5DQWgD3xAqLr-iRoEas,53
104
+ autobyteus/agent_team/agent_team.py,sha256=M3GNiBgCTiYbbaGB4VquRHhPoLN8D9Hladv6hLJ_IrA,3722
105
+ autobyteus/agent_team/agent_team_builder.py,sha256=-vX53032tc312wtBVs0UqO02K-g_wLN97v8nEvo6tgc,8453
106
+ autobyteus/agent_team/base_agent_team.py,sha256=AtTCt0upZjbV5Jj-2wFI54lzUsYHkstErttIZXQOJL0,3199
107
+ autobyteus/agent_team/exceptions.py,sha256=24kOHkJoyW1AKF7KQPuy8HIEpqzcYm3N_kl7W5CluSc,389
108
+ autobyteus/agent_team/bootstrap_steps/__init__.py,sha256=Gw7ohC8lTB1h2IMKZkxn2Sp7eEjmr_BC0kwpIjn-xKg,1398
109
+ autobyteus/agent_team/bootstrap_steps/agent_configuration_preparation_step.py,sha256=B67ZgLVHDDGTqarIkoy73pDXiAaU16ZVjCseCUXBmxc,3970
110
+ autobyteus/agent_team/bootstrap_steps/agent_team_bootstrapper.py,sha256=gwrG-iRr4-fw5gMnw69V39s7eLzIsIMY-LGDKyzHBpE,3093
111
+ autobyteus/agent_team/bootstrap_steps/agent_team_runtime_queue_initialization_step.py,sha256=YWg297DapsF_6cjuu8DFooBWTiOvU-N-RxK1MGPemwY,1370
112
+ autobyteus/agent_team/bootstrap_steps/base_agent_team_bootstrap_step.py,sha256=gRkmv8XwghAbWAS-jMKgCpaky0VPGyWi-QFR9uYDnBA,899
113
+ autobyteus/agent_team/bootstrap_steps/coordinator_initialization_step.py,sha256=lWiGMC7XOsDEZ0W_qo2GFtuKDl7ZVKGOfS3ENsGp1Zw,1913
114
+ autobyteus/agent_team/bootstrap_steps/coordinator_prompt_preparation_step.py,sha256=wjzlo_UpZDFK5WNV-HFtFu-uu_IvxdwcAGmFxlzetQI,4561
115
+ autobyteus/agent_team/bootstrap_steps/task_notifier_initialization_step.py,sha256=p0eH-FUq3Oe3DXxbu1J-lWU7UIrIE9sliXPkOyF8uog,2628
116
+ autobyteus/agent_team/bootstrap_steps/team_context_initialization_step.py,sha256=e6kFgIKDUuRrgjp84rX5Db5XUfr8DalD3h1qYQN7EcM,2438
117
+ autobyteus/agent_team/context/__init__.py,sha256=drrtG4m5HFNxJgtpucBmTA81TlbQaSgNXww38ChgwzE,667
118
+ autobyteus/agent_team/context/agent_team_config.py,sha256=9QnIWguNhPa41abNm0kwSNC0f3GVeNuJ1c7KGTTD2Yw,1542
119
+ autobyteus/agent_team/context/agent_team_context.py,sha256=_QC-JyvH6Ld2Ysm-EubxbjqzJ1LLvrUkNAfUWKnulmo,2682
120
+ autobyteus/agent_team/context/agent_team_runtime_state.py,sha256=ioXgFIQkTwHS4nzuw567JWwnyGi9p7UoUR3TV8O5FJ8,2983
121
+ autobyteus/agent_team/context/team_manager.py,sha256=m5_cjIwznicSHTq0HHquZrsn14DmvrTR94xzuaaC7NM,7287
122
+ autobyteus/agent_team/context/team_node_config.py,sha256=V_Ng_YoOcAXkujW6Y1STg39YKzcmMrZvgAgBDORO38Y,3186
123
+ autobyteus/agent_team/events/__init__.py,sha256=H2JMNRxeEmzIpbUFWmNR2IaIPXgcz301UIEQ8Yn0AuY,971
124
+ autobyteus/agent_team/events/agent_team_event_dispatcher.py,sha256=DlNOsYxGxsR5iOjWyf8p1dAyUitnbUq0_RQtelCX06s,1738
125
+ autobyteus/agent_team/events/agent_team_events.py,sha256=zql7P5-hpl2bkrY3HuQy5tHKHnDjs5XxjG06_KiD8Ys,1764
126
+ autobyteus/agent_team/events/agent_team_input_event_queue_manager.py,sha256=ZMz9eudtXR8OXcWwPmJs9oN2r4Ycf4VdgR32Yaf0-S4,953
127
+ autobyteus/agent_team/factory/__init__.py,sha256=52XlrxJp_1jb9VT9GS2IT0w4cI-ojlsQtGHm3unidCs,239
128
+ autobyteus/agent_team/factory/agent_team_factory.py,sha256=fsm7kz7rLS26X6NCh6vhfKf6_Px2wceDG2Wkx--6QE8,4704
129
+ autobyteus/agent_team/handlers/__init__.py,sha256=05n2SOnVOUWip4cZrpuN2q-q6AW2d2weribC9e99Gfg,1005
130
+ autobyteus/agent_team/handlers/agent_team_event_handler_registry.py,sha256=vTyhRwK6nW_92U76tc3-6wD2Yj4hLGEFRR6uiV2k93Q,1233
131
+ autobyteus/agent_team/handlers/base_agent_team_event_handler.py,sha256=C79gvVxSwE06D6qVJ1bnCxmT-lbAF4GrtiyIUFS0xOs,593
132
+ autobyteus/agent_team/handlers/inter_agent_message_request_event_handler.py,sha256=OGHJ6WxdNjLfggZDO6P8rr6xyfzJyLwKjOnv9A1q3FU,3335
133
+ autobyteus/agent_team/handlers/lifecycle_agent_team_event_handler.py,sha256=4-YR2GZkmJe_fZPYucvgpHEL-M5-XfBPDz8upvONeuI,1357
134
+ autobyteus/agent_team/handlers/process_user_message_event_handler.py,sha256=ig7ij2i5xwRV1OtQ3tJBiC7TBFasyd4NxVjX2ca-HJE,2573
135
+ autobyteus/agent_team/handlers/tool_approval_team_event_handler.py,sha256=PH6aTO_8KUtCHNKftiidN2yh-ln3d2S1A7rfCR4PXUY,2272
136
+ autobyteus/agent_team/phases/__init__.py,sha256=qxOrh0O1iWoluRQCkKaiBISEqW7D7vleYlueEje4QYs,419
137
+ autobyteus/agent_team/phases/agent_team_operational_phase.py,sha256=QsSNvCntqUIsJ0_f_7Tk-aMn5yVOo_W-CLWfvtAjQIU,675
138
+ autobyteus/agent_team/phases/agent_team_phase_manager.py,sha256=3NiHiSTowNcCQowWBZMTXsZy3dOzLaAKAa90E7XDe9M,2365
139
+ autobyteus/agent_team/runtime/__init__.py,sha256=6pQrzl2DXfnp3dn2fRSiMAfM3VSmKddJcYy5L1yWaW8,465
140
+ autobyteus/agent_team/runtime/agent_team_runtime.py,sha256=m-YqgAUJx3kvfHtwC9zY3eWZmB0Snkjk0Emo84Cp44M,3909
141
+ autobyteus/agent_team/runtime/agent_team_worker.py,sha256=Kha4l8Q7kxc3Kd3EWAC-e4yHYhUZwr05zHtcoqGL8ik,5595
142
+ autobyteus/agent_team/shutdown_steps/__init__.py,sha256=wfAEB3_o3Imk6Y9rPBUascqP_3T4cFx4-BBp4zcsXX8,812
143
+ autobyteus/agent_team/shutdown_steps/agent_team_shutdown_orchestrator.py,sha256=VNtKf3lmYRhO5mcsdfBKnrDhw3ucTB7yY8C8tO0Te1w,1561
144
+ autobyteus/agent_team/shutdown_steps/agent_team_shutdown_step.py,sha256=iACb44vQVOka99NZnZdgnFdAsXHL08I5R6hsAUcgqyI,1845
145
+ autobyteus/agent_team/shutdown_steps/base_agent_team_shutdown_step.py,sha256=CVzU4mMjU4FagEk_Q0ncENMCGzGSJ7I6YF_2YqJqsEc,651
146
+ autobyteus/agent_team/shutdown_steps/bridge_cleanup_step.py,sha256=uEJt4RuNIt7WiO25Wnowtg_TqOgd9l_fja88bXXLzIo,1165
147
+ autobyteus/agent_team/shutdown_steps/sub_team_shutdown_step.py,sha256=suPLoXXtPJx6FfXp_RH8Eev5d4Xd2iY_hMRM6wICcAo,1771
148
+ autobyteus/agent_team/streaming/__init__.py,sha256=wE3dZJ8b73h979nKPietRQXmImwvNrb2oyFossdPF00,891
149
+ autobyteus/agent_team/streaming/agent_event_bridge.py,sha256=hGJvLUK39-bBYxpq7pvpKs7Y68c07xtG4d4Ebp5GwtI,2130
150
+ autobyteus/agent_team/streaming/agent_event_multiplexer.py,sha256=Z3CMxsNaPXWVtaK5D8qSZiDQC_VokJQoHlbbfPc0Xng,3647
151
+ autobyteus/agent_team/streaming/agent_team_event_notifier.py,sha256=2gvB5wu3Yt00VMlspoOzgfwtUHfks6Xm5fkxiP4AyFY,3524
152
+ autobyteus/agent_team/streaming/agent_team_event_stream.py,sha256=AZmly_WQWb6YpdS8IXmXjoOZjIck85LWFt4OkfW_Aa0,1493
153
+ autobyteus/agent_team/streaming/agent_team_stream_event_payloads.py,sha256=8Di_xuYI8l_i-_YnZY6ogO4o8iUwsEo5GOpYJOTk4Ik,1701
154
+ autobyteus/agent_team/streaming/agent_team_stream_events.py,sha256=NUFpmUQVFp4--96j3ruhwbjTcp_-DRcrSTEsxVCdIvU,2674
155
+ autobyteus/agent_team/streaming/team_event_bridge.py,sha256=C6VVJM4xJnOl37AY60qGT9k7VMVj63bkXOxYWICBgAs,2347
156
+ autobyteus/agent_team/task_notification/__init__.py,sha256=F5C9dKjpfvN7qFcIh50_cl-mIlYLhsak2U1VAqHIkk0,396
157
+ autobyteus/agent_team/task_notification/system_event_driven_agent_task_notifier.py,sha256=lEzMuLInSBX9wCgWpRNhHI-3Egkf9dUSWYRGTEyZb8Y,8303
158
+ autobyteus/agent_team/task_notification/task_notification_mode.py,sha256=BbtFyrMgeGMKC4WKG3QgIVNy0m2wLH4H5YszVXOvrMI,846
159
+ autobyteus/agent_team/utils/__init__.py,sha256=Sa5TBbhq9N41ONlMhoLlCrtyxSiDjoR2Zu5C21OAig0,218
160
+ autobyteus/agent_team/utils/wait_for_idle.py,sha256=wrfo_t1T6DSXeHU-SWwsuxPJToNsr0Ol1TwqpoRxZ8I,1931
161
+ autobyteus/cli/__init__.py,sha256=FpcugZofPrQzll16-OFcDypbven0J2mBPxNVgQ3eAxY,266
162
+ autobyteus/cli/agent_cli.py,sha256=Ua6MnuVHmNgelnZQ8B8ZMFk2nyN-VNPijNzyucVVPis,4818
163
+ autobyteus/cli/cli_display.py,sha256=F0mBDnaqmQJCfhqO-ccVxd_UGklCRuNoGZ4aa8ApMKs,9493
164
+ autobyteus/cli/agent_team_tui/__init__.py,sha256=FP2rpjO1T5jdVYkT7Yvk-iDcxckOHy3JxRg-EEeKCfE,123
165
+ autobyteus/cli/agent_team_tui/app.py,sha256=IuRLHQubot2DuXfA10rwPjXN4yAxXhuUZUBmYzntFfE,9152
166
+ autobyteus/cli/agent_team_tui/state.py,sha256=HmtmSO836Xmm7QHCJ0SFccZDDUM1SpHqc6e6Ujz3bPI,9602
167
+ autobyteus/cli/agent_team_tui/widgets/__init__.py,sha256=gWVULR5J-2Ra3m2hvUhO1jF1IX9uqk0bQhWL0t25Z4E,173
168
+ autobyteus/cli/agent_team_tui/widgets/agent_list_sidebar.py,sha256=1ynBsWEqaYBitHrbvgR-eRLGAULA2ZUM-V_hRHWAgX8,6557
169
+ autobyteus/cli/agent_team_tui/widgets/focus_pane.py,sha256=nEmtz3O53Fzf-BGxSHYjkjw7aV8Eb1eT-t_NkJOzuGA,16151
170
+ autobyteus/cli/agent_team_tui/widgets/logo.py,sha256=okzS4mG8Z1-dZDIGQ5F8XP9y6WwwRDVHmMmPz3oN9TM,780
171
+ autobyteus/cli/agent_team_tui/widgets/renderables.py,sha256=gaMrkLMcrohuOH2KjPvSmdbxHgljhCgl6m9OEfw2nDU,3393
172
+ autobyteus/cli/agent_team_tui/widgets/shared.py,sha256=9RVUNuNWTuzd8-PHjD3JMTZIK4bKVbPsUPHLtSGdtU0,1977
173
+ autobyteus/cli/agent_team_tui/widgets/status_bar.py,sha256=WE8Z6gjAkAdrK5Yufl7qqIitIL6TX0lOCQiTa9FZkt4,457
174
+ autobyteus/cli/agent_team_tui/widgets/task_board_panel.py,sha256=MMurHzqXcqls4V4UDM07Tk8efG6fI7TMNYMWs0S_fng,3461
175
+ autobyteus/cli/workflow_tui/__init__.py,sha256=xbWMXwK_a-IX-dM3m1TJkm9SHT--bqiHVgkS5XCA6vM,127
176
+ autobyteus/cli/workflow_tui/app.py,sha256=DZPHPIrjz5-YBxwybDylokemtzqO9Ac49hdhkBdXCwQ,9681
177
+ autobyteus/cli/workflow_tui/state.py,sha256=JA3MOGpV25yin6dMO8AWRLSOgCEcd5oKtfNROU8RavM,9477
178
+ autobyteus/cli/workflow_tui/widgets/__init__.py,sha256=CsygQhYM_MoTURsJ9PpkZi_yXy-9g7Z8WQdNZ3BfD9E,169
179
+ autobyteus/cli/workflow_tui/widgets/agent_list_sidebar.py,sha256=qL3jZGsQuc-76fMESpsixD32dwOt5RH0Z0mS0QNECps,6626
180
+ autobyteus/cli/workflow_tui/widgets/focus_pane.py,sha256=ynqALGeViHqF2ZadidzStf1jnixdyqRAEw7A3YrQTbg,16756
181
+ autobyteus/cli/workflow_tui/widgets/logo.py,sha256=TvfxdBvDXknf7-2vD3xkHuZkiymhMDFaJaCLl2y7msI,906
182
+ autobyteus/cli/workflow_tui/widgets/renderables.py,sha256=hkRTjwz5DPSqaO8_8Zuvt1XxxAePZ9vGp582b3UMF18,3030
183
+ autobyteus/cli/workflow_tui/widgets/shared.py,sha256=vXUrJ0vU7gMLzi7j8mAdhSMgPMno1LanhHxkeyMOQtA,1732
184
+ autobyteus/cli/workflow_tui/widgets/status_bar.py,sha256=PLkw2IxJ4T2cDt-3HKRhnIme4luYIvXr1HpBVmfJH1c,455
185
+ autobyteus/events/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
186
+ autobyteus/events/event_emitter.py,sha256=WKKwISFo2yDx0OpLjGFtXEl3DVV1siB0lXdndIAHhBg,2522
187
+ autobyteus/events/event_manager.py,sha256=c5RMlCtKzkHgQZkePBvqxPAxxOu-NapUrl8c2oRDkT8,5841
188
+ autobyteus/events/event_types.py,sha256=yFfCwSAWth-LCULklW2wjNp2pfZjjEow-_PMIcBajBo,3022
189
+ autobyteus/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
190
+ autobyteus/llm/autobyteus_provider.py,sha256=AwhH0KnqY50ug6MToHwjSQqIX8uv76bF10Jc8glvP18,8238
191
+ autobyteus/llm/base_llm.py,sha256=XwVnihE6Qy6L8HPWUIXTKCYcKgoxYuw2Om8PivwlbU0,11597
192
+ autobyteus/llm/llm_factory.py,sha256=psqNgGqVlxJjz211ElnsvCuGWMCGwPUxpXWNv7LyPC8,15695
193
+ autobyteus/llm/lmstudio_provider.py,sha256=RkM_drORSZ2zcSxN2Th5Upiva2oesIPw-6viqe2w9dY,4315
194
+ autobyteus/llm/models.py,sha256=ownBklNZrtJ_HWeMexa2T3s9TjWG0xggOt7wYrRs2l4,6963
195
+ autobyteus/llm/ollama_provider.py,sha256=CfcgC-DEWULjTwJiWazB5IXjErEyy1zZ41glrWhpj0g,4427
196
+ autobyteus/llm/ollama_provider_resolver.py,sha256=chGoQ7SvGJ68lv0Vv3AEd-b177Evu-iIcrtvwkUSbBg,1813
197
+ autobyteus/llm/providers.py,sha256=rIepOS3mNnd-BWf_cbrrJUf7cllcOUCQ-j4IIFoiLts,354
198
+ autobyteus/llm/runtimes.py,sha256=MzFNo3R1U3uWYAkuk-uuaba01Y0dDKQgVY_ElH_0dxU,315
199
+ autobyteus/llm/user_message.py,sha256=5FfDOKN-ohBhQy3mTTezv4zTAwcfmcyE0zODNCfRxdo,3200
200
+ autobyteus/llm/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
201
+ autobyteus/llm/api/autobyteus_llm.py,sha256=5SC-Tijr5MY2cu2xppc_8tdlyA2o7PMuSDQ5BsHUYEg,4978
202
+ autobyteus/llm/api/bedrock_llm.py,sha256=B1NEEuQ48FGrhp2G_h7htvWiepUsXGnNy6wEQhO6I_E,3256
203
+ autobyteus/llm/api/claude_llm.py,sha256=-xpyDvIKnEoay8B2f09STaCYvG7MDQsusCtjzZ0ffHc,6128
204
+ autobyteus/llm/api/deepseek_llm.py,sha256=TEWtXAqM4OuKH1etj5kknzkbPsRGvEpWzTq_CoAU6po,894
205
+ autobyteus/llm/api/gemini_llm.py,sha256=pIH72Lodw5-w0XWKeybUza55cQ5BJChdgSzbWEVwS8w,3208
206
+ autobyteus/llm/api/grok_llm.py,sha256=oZIkJrRhbvcKSrho5hLWqqRxO5SUfbwutKW1g-mPQC0,875
207
+ autobyteus/llm/api/groq_llm.py,sha256=pq30UuR4NGVCVxMxcGTK2AVBTHtCymAi44hlkfvsXiY,3482
208
+ autobyteus/llm/api/kimi_llm.py,sha256=oUgmP_D0ppr0zKhgRVyjxRMP8cEMGXB2DFUgXYqRlCg,873
209
+ autobyteus/llm/api/lmstudio_llm.py,sha256=7A7BokUKj-kioTaSuEw_MKofd7d5BnmxK6pyTFGOgSk,1281
210
+ autobyteus/llm/api/mistral_llm.py,sha256=VdVqEXp5GdXZJQ7NVXmiV9AVDYltb3neqo2EugDIMds,5019
211
+ autobyteus/llm/api/nvidia_llm.py,sha256=jh1cz1zQtCVwYxFSFW9y6LXCW6rv8FdvjTCHvyoBzwc,3913
212
+ autobyteus/llm/api/ollama_llm.py,sha256=yA5l62TiT7P2O6d6y-aiK5v99B0LqMAzcPUbn0zLAuA,5894
213
+ autobyteus/llm/api/openai_compatible_llm.py,sha256=JNfgEJMRGinieo7RwY9jrdM7qusGvorMsggtq7LQ5fM,8691
214
+ autobyteus/llm/api/openai_llm.py,sha256=414fWDFvTm7IkG3STfYCWT4mz1FQwEGnD4N5MpTyf6M,905
215
+ autobyteus/llm/extensions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
216
+ autobyteus/llm/extensions/base_extension.py,sha256=0HE-od2MxITaBMHCzIrnkQ6n40-0R7jxA7GxPFeJ8Gg,1322
217
+ autobyteus/llm/extensions/extension_registry.py,sha256=b4b3U5cQB9kZpJpqmT_e1lviLzjGQBsp7gJuYppjpjU,1254
218
+ autobyteus/llm/extensions/token_usage_tracking_extension.py,sha256=SoEJWszO8LrM4faTy-j-z7S8v5PV5D0ltzOQ2sbQWBY,3796
219
+ autobyteus/llm/token_counter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
220
+ autobyteus/llm/token_counter/base_token_counter.py,sha256=NSY6rdSmBNn9MEAY4vSdnuB2BRRRwoP3rDp9ulBTAWA,2019
221
+ autobyteus/llm/token_counter/claude_token_counter.py,sha256=-gIB8uafY3fVy5Fefk0NTVH2NAFy0gfT8znHlpLQSwo,2620
222
+ autobyteus/llm/token_counter/deepseek_token_counter.py,sha256=YWCng71H6h5ZQX0DrjqfMua-SeCH1ATizWLvxxr591s,859
223
+ autobyteus/llm/token_counter/kimi_token_counter.py,sha256=KuzgcbSWiqybCKHaukd-n917zEgUFebGXMAxlkZxue8,854
224
+ autobyteus/llm/token_counter/mistral_token_counter.py,sha256=YAUPqksnonTQRd1C7NjjFUPsjEDq_AKWxTc5GNTVGqU,4760
225
+ autobyteus/llm/token_counter/openai_token_counter.py,sha256=hGpKSo52NjtLKU8ZMHr76243wglFkfM9-ycSXJW-cwE,2811
226
+ autobyteus/llm/token_counter/token_counter_factory.py,sha256=8lrIfKCOrhqKO96yhAuH24ilPuRMpMYgO-cdGeJU0qI,2102
227
+ autobyteus/llm/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
228
+ autobyteus/llm/utils/image_payload_formatter.py,sha256=2T21VK2Ql-AoxHGkfQGv2UX6CjMMBMzv1Hy4ekUdzfU,2661
229
+ autobyteus/llm/utils/llm_config.py,sha256=Q1_k0EnRqmUgbh9QeSs2F78fyPHA4cfVvJJE9iXQ2-w,9047
230
+ autobyteus/llm/utils/messages.py,sha256=k_mSUVrpXGF4holU8_O0WzR9t9Rk9DUpXAB_XTtmmMs,1602
231
+ autobyteus/llm/utils/rate_limiter.py,sha256=VxGw3AImu0V6BDRiL3ICsLQ8iMT3zszGrAeOKaazbn0,1295
232
+ autobyteus/llm/utils/response_types.py,sha256=afQjGmqM9qQ42EnoGtNzU1BLZnxW3JUse0RcZBOLzfY,654
233
+ autobyteus/llm/utils/token_pricing_config.py,sha256=6oRkG6R-BrP54sTI5Btjpy4s2c7bSAP7uZpzXldxx3E,4509
234
+ autobyteus/llm/utils/token_usage.py,sha256=VKxZs5WwBj8u88HSCMemMbvKI4xa-KN6jhvfqBOCg-s,616
235
+ autobyteus/llm/utils/token_usage_tracker.py,sha256=RC4zL5k343-wLm0jXc-rwAOMhpxs_1klnrh-xi2J7W8,4220
236
+ autobyteus/person/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
237
+ autobyteus/person/person.py,sha256=hUBLaGu2_SiClhrXIEl6b9BTXbzyBimwX6Qc08iApTU,866
238
+ autobyteus/person/role.py,sha256=U7gFBtYY6IlQ2Hr1bqxlPwfXb4ixOJT5WSz3cjSpybU,511
239
+ autobyteus/person/examples/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
240
+ autobyteus/person/examples/sample_persons.py,sha256=dANMjmH5IVUfBoLvWeo4d1Obms5x30MBSvFgJIBa78M,368
241
+ autobyteus/person/examples/sample_roles.py,sha256=rQqUGTUj0dSqTlOciRjo5AYS53hCAKl4oifpGHsrScM,430
242
+ autobyteus/prompt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
243
+ autobyteus/prompt/prompt_builder.py,sha256=2hStweYFSIXN9kif86G8Fj7VdjsIVceJYiCNboauEGk,1886
244
+ autobyteus/prompt/prompt_template.py,sha256=taNEAUNXLt0a3WP_bNqzeNgSIIM7rgubqBBYWHRR1Kw,1539
245
+ autobyteus/rpc/__init__.py,sha256=c6aEkKg5EwvIBx8oR4Or2mvv5afk4vRoM3X2n7wUBi0,2429
246
+ autobyteus/rpc/hosting.py,sha256=VEPmD-LYKwp6jdjg7NzweCFHJWMHj2EoKjjOhQ2IwZw,11297
247
+ autobyteus/rpc/protocol.py,sha256=U2wgIcZ2UuaEDijsjMv1-9WaeuJy027W_hgRGOkN8TA,12653
248
+ autobyteus/rpc/server_main.py,sha256=PTPwGXEEyq2ezBsPqTietFLyMdOBGLiCsPUOuUdVETc,9807
249
+ autobyteus/rpc/transport_type.py,sha256=Su6QmHC6wo607C5ntomsk-miJ5CxJomzkrHqmSzUlLM,319
250
+ autobyteus/rpc/client/__init__.py,sha256=PsWBpoVsVgQPA6FI9jbmkRJS4TxlXX76N75PYrODKIY,717
251
+ autobyteus/rpc/client/abstract_client_connection.py,sha256=Glw9YLjThFFbaWuv0AIZJ6YFBnYFuVMCe01eAe76VvQ,4681
252
+ autobyteus/rpc/client/client_connection_manager.py,sha256=Pbij-1BWibBMEymPdARVMCOlwEwDLyZ51kSF-BxeNrk,7181
253
+ autobyteus/rpc/client/sse_client_connection.py,sha256=rTaL3NssFDAvc7aGF7-rVzGRUwJQ5uwF2vPFEoRpIJg,17683
254
+ autobyteus/rpc/client/stdio_client_connection.py,sha256=iYZaEyrAGFUty9R6ejrW6q_t9KFLKfMD5jpgZwe3d8Y,14450
255
+ autobyteus/rpc/config/__init__.py,sha256=N-AfTHyplx-vLZ-5jrTD7zcODFUt1CVuVTfsrxlMtkk,362
256
+ autobyteus/rpc/config/agent_server_config.py,sha256=mJfs4AuPwBNHARWrA5luXWCE3Vby3AM11y5jwU9nFnQ,7612
257
+ autobyteus/rpc/config/agent_server_registry.py,sha256=MNeJmV-5K5vljUHECCdPWorPF0r99li3eeT3ceG0hks,5749
258
+ autobyteus/rpc/server/__init__.py,sha256=dRJ4LulIrcbmaFptxAG1UP1F5fi3nmpHO2IuXeD96J8,806
259
+ autobyteus/rpc/server/agent_server_endpoint.py,sha256=LV2EGpL56ZjOSvnaJB7l8uQS_WvUlbvvpLztVIPFWcU,10409
260
+ autobyteus/rpc/server/base_method_handler.py,sha256=6sKWucR1vUYeritjJPHIX_sCQOD2cSm_QZXDXp0G7kg,1381
261
+ autobyteus/rpc/server/method_handlers.py,sha256=Zqrr1R3yu_hVD0qCOPpxXm4ujkvdds9wCCneIeT3gU8,14702
262
+ autobyteus/rpc/server/sse_server_handler.py,sha256=3F1LNLw6fXcB08hmWOUhGZROYhpPdk8xwz2TakiR-2M,16273
263
+ autobyteus/rpc/server/stdio_server_handler.py,sha256=pSAvVtxyo0Hytzld7WINeKHvGBqEjp0Bad-xkY2Rul4,7398
264
+ autobyteus/task_management/__init__.py,sha256=cj9TXF4I4ROwqiX2MIwPuFN_9kFeIZhWlkbvP2m9S_Q,1639
265
+ autobyteus/task_management/base_task_board.py,sha256=s6ijobMhkMwNZlgfsFkoPp4jh0E-lVDZKbdOeRTWiuk,2187
266
+ autobyteus/task_management/deliverable.py,sha256=cXuWD7UhP_oElhUzLGGdCwE8Fn4IokURuanz4zg35Ps,490
267
+ autobyteus/task_management/events.py,sha256=sV32iH5KGoO2lgkUlU1lGgqaOJvL8BrsJpNyLHSx01s,945
268
+ autobyteus/task_management/in_memory_task_board.py,sha256=5B8ib7H9Ff6XYc1BzY7OaP4undyhhxPbqcZMsc2WRDI,5003
269
+ autobyteus/task_management/task_plan.py,sha256=VdUr9kJ5rAEadvw8nOE2mcDOCs4lP-jJOcKJks_pmzo,5096
270
+ autobyteus/task_management/converters/__init__.py,sha256=W-L-IcBeyhCRc0E2MW-pwJk0d4-SGwSdESszsIfc9b0,309
271
+ autobyteus/task_management/converters/task_board_converter.py,sha256=VJdcY6x0qBr0oitZSW6cZZJp7Kgnmr9WfWATmb160iY,2480
272
+ autobyteus/task_management/converters/task_plan_converter.py,sha256=WEOSuTUBE7lvtHUEyRPu7wcRnMk_eHpzcMBTnUmVPxw,2093
273
+ autobyteus/task_management/deliverables/__init__.py,sha256=RYBzSxKgzPnh8uE0TA2hA_SiI3dv3_dgvME0K-5AvvI,150
274
+ autobyteus/task_management/deliverables/file_deliverable.py,sha256=tTdpgdAtXwkZ-US0n8ilEl6CYI8dRVXhGEdBBCTay8c,425
275
+ autobyteus/task_management/schemas/__init__.py,sha256=CLn8--yMiBfqK1lyjkVXYjrOSnMuO_3QXbKVqQo3T-U,520
276
+ autobyteus/task_management/schemas/deliverable_schema.py,sha256=8_3F93gAeTfp6NeHqhIQLWFMpVwfiDuSOk0lnHnxxFU,603
277
+ autobyteus/task_management/schemas/plan_definition.py,sha256=oaudmKfkNK8foWVa0zd4hBGNK1SJ8rC8bdWF6aCY5Xw,1961
278
+ autobyteus/task_management/schemas/task_status_report.py,sha256=TSWGmbue3-ag0bZziB5PWao5burcvZYa2wJpNaMseF8,1676
279
+ autobyteus/task_management/tools/__init__.py,sha256=oKb6MLdUrD6h-oCnaZiQqlEvPwp91wRoQG8cg4lYsig,415
280
+ autobyteus/task_management/tools/get_task_board_status.py,sha256=UX2d376GXF6v0KQNowuItbIR7mcSG6qmIGpf0VRyDbQ,2767
281
+ autobyteus/task_management/tools/publish_task_plan.py,sha256=40c9jfjJRbiSyjFCpcVYchMeB38ie8idTukZwtjYAeg,5435
282
+ autobyteus/task_management/tools/update_task_status.py,sha256=k44dr4IMNHDwUO_rhUcnWmXD5m-d72__3fam9iC_Vhw,6469
283
+ autobyteus/tools/__init__.py,sha256=82FKptxtN04HG_1YnnNnOzdpJKgKKhF7gAGdfkLLhNk,3004
284
+ autobyteus/tools/ask_user_input.py,sha256=2KHv7kRR9yyd5VKLgW-vJiE4HiYiFozHsVN4_5NhhdE,1649
285
+ autobyteus/tools/base_tool.py,sha256=x8Hjth7koJ6Brgi70phlm46K5SC9ofH4qokl4QqM9JQ,5159
286
+ autobyteus/tools/functional_tool.py,sha256=_WBv_mZCTIaekBwlOLiV8A7nLZhJiR-HYG6WJDij-eg,10393
287
+ autobyteus/tools/image_downloader.py,sha256=IQ-P1IBwLvbp8jyhtxLu54acWldJ6miFYkVIz7tHCMQ,4868
288
+ autobyteus/tools/parameter_schema.py,sha256=rRqhx0uwzr7-uPYIdZqEaxZ0bPJpX9GlHhipKXATwIU,11107
289
+ autobyteus/tools/pdf_downloader.py,sha256=0WeznZhkYvXvgU2CH21q6LSVEQm8S1mAm7gtw_CjsJM,3927
290
+ autobyteus/tools/timer.py,sha256=hPei4QONtpdQrSS72_SNw6-j-gVd5NT2RScAhqMhRSY,7384
291
+ autobyteus/tools/tool_category.py,sha256=4bgH206qddgamoTvkg69DnNZYUJPKV3pM3hl0oGWRMU,710
292
+ autobyteus/tools/tool_config.py,sha256=gnzGweccECNmCeufkzbskHeFOt3f0431DyAmMhqNVn4,3564
293
+ autobyteus/tools/tool_meta.py,sha256=X2JOY5fcPSvUMdgUQr0zTV5bRDuAmF7vuUMax5X5DhE,4417
294
+ autobyteus/tools/tool_origin.py,sha256=X1RqyDMWg2n7v0TciJHh5eiXgDDoU86BEQL3hx975jk,269
295
+ autobyteus/tools/tool_state.py,sha256=CwmEu7GTdaE72QIsdsXQu0AmTxQTp5hMncFcY58PkGo,746
296
+ autobyteus/tools/utils.py,sha256=PuHGlARmNx5HA2YFVF5XA36MoeAyFL6voK10S12AYS0,546
297
+ autobyteus/tools/bash/__init__.py,sha256=X38g3OVhlr-6aLIYfcSyh8DzqHAEh8dSzfEH1NEH7aw,99
298
+ autobyteus/tools/bash/bash_executor.py,sha256=3VqilVSuzomMpqv7WWy6ukqhLJyiBy1tALRcDql8h8w,4502
299
+ autobyteus/tools/browser/__init__.py,sha256=fNt3qo9ykOIhfG7CmbelCabMydhPTWL-5timHXBa8ZI,91
300
+ autobyteus/tools/browser/session_aware/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
301
+ autobyteus/tools/browser/session_aware/browser_session_aware_navigate_to.py,sha256=RuBtv9OfqSXIlSlIdaNv5Pcv82_FPnaK510kdHwr9sM,3099
302
+ autobyteus/tools/browser/session_aware/browser_session_aware_tool.py,sha256=Jw3z_KY0h-hcheav9cWmTPoKGth69DePfBs-SshxUAQ,1525
303
+ autobyteus/tools/browser/session_aware/browser_session_aware_web_element_trigger.py,sha256=lgZF4bIReUQjlsIWNlNk8za_-oo9nGiZafRvO1wa0FE,7014
304
+ autobyteus/tools/browser/session_aware/browser_session_aware_webpage_reader.py,sha256=Gltfx7xx7Ku0Jpyf8uKoRe7SBjAfajr1jBqXGUcZvOc,3996
305
+ autobyteus/tools/browser/session_aware/browser_session_aware_webpage_screenshot_taker.py,sha256=xm3M2-9xCZ4GjjUQYcCmIwb-xtw1cPqW94ar5x3l9SE,4711
306
+ autobyteus/tools/browser/session_aware/shared_browser_session.py,sha256=WjdkY6vrE96hluwHQS8U0K5z3XE8QMw2-fDRv5VFhXA,326
307
+ autobyteus/tools/browser/session_aware/shared_browser_session_manager.py,sha256=OAFzqLHWWxtVnU-zYGYFPLwiVTzhW7C6UA3y70-lBQU,1103
308
+ autobyteus/tools/browser/session_aware/web_element_action.py,sha256=jPWGmqoTB7Hpk6APQOWglLUaJmf5c_nR8Hh0AbT4fkM,477
309
+ autobyteus/tools/browser/session_aware/factory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
310
+ autobyteus/tools/browser/session_aware/factory/browser_session_aware_web_element_trigger_factory.py,sha256=PsRjQMScKF3ceMEEFvlfr20OQ-sKdbQ6YWRrQffZF80,687
311
+ autobyteus/tools/browser/session_aware/factory/browser_session_aware_webpage_reader_factory.py,sha256=WmW9yU_KVjvDNSlxWPkdXljM9h4-zZRoZH7GP6sQndA,1335
312
+ autobyteus/tools/browser/session_aware/factory/browser_session_aware_webpage_screenshot_taker_factory.py,sha256=uxv7cLtlXg9Vdl82_r1K-wEHKfXzrmngGwT8rd5u4JQ,717
313
+ autobyteus/tools/browser/standalone/__init__.py,sha256=68N5TpeIyKMW4Y8b7kIO0lyUYIcNPBwZoTg_W9lMfpM,369
314
+ autobyteus/tools/browser/standalone/google_search_ui.py,sha256=9tHusVs5jM2Zu1W48_YxAsePZJp9Z8-dOZptl7WURpM,5388
315
+ autobyteus/tools/browser/standalone/navigate_to.py,sha256=Z_V0DRzu-1zwYXTVMaCbCl9ltuEAPqoz7wGvq2IVaoQ,3458
316
+ autobyteus/tools/browser/standalone/web_page_pdf_generator.py,sha256=UvRrUjJMVyBrG1JqTg67DCrOGboI44Hvard2UO_k9WM,4041
317
+ autobyteus/tools/browser/standalone/webpage_image_downloader.py,sha256=oH4dnEQBx8DVhitP4tozoHRVO9ue-rGA_ZSJJyJotUI,7159
318
+ autobyteus/tools/browser/standalone/webpage_reader.py,sha256=9N_NlbB7YnrT_MpkP_nLzWKYopMLM6eWJJ2wQmuGgVI,4254
319
+ autobyteus/tools/browser/standalone/webpage_screenshot_taker.py,sha256=iy9qwl2zLaHxlc4kuZuLo3Q3tJfWGmiSekXZJzHDOJU,4424
320
+ autobyteus/tools/browser/standalone/factory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
321
+ autobyteus/tools/browser/standalone/factory/google_search_factory.py,sha256=bgsRr7gix1L96sVwAF19pbQklPPYNEhz2Et6JdIViwE,1120
322
+ autobyteus/tools/browser/standalone/factory/webpage_reader_factory.py,sha256=R9PJPf7MF3cP8q8ffMKU5-ihPJWHJkVDYXZswZNdGS0,1131
323
+ autobyteus/tools/browser/standalone/factory/webpage_screenshot_taker_factory.py,sha256=NMS2laBlZAJiXPPub4YRhz1pXtZkfAeMhfRcSAfqu4M,597
324
+ autobyteus/tools/factory/__init__.py,sha256=EQXbTH6BcqK2SM3JEq2PkLwzZSczExv3KDvlhWHlsGQ,275
325
+ autobyteus/tools/factory/tool_factory.py,sha256=-gUhcBwiQu1FQiR0nAKJp1aUZ2sXbcz-pIn4f4heFbE,1066
326
+ autobyteus/tools/file/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
327
+ autobyteus/tools/file/file_reader.py,sha256=U8xtPXDkm-UHqizzHpTgq56-QuDLxhz8WhjlGgsseBU,2557
328
+ autobyteus/tools/file/file_writer.py,sha256=LQgd9arr3jLFEzpjv6WnTP9XhsD44wxBVphgznqf7O4,2681
329
+ autobyteus/tools/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
330
+ autobyteus/tools/handlers/shell_handler.py,sha256=ClTXqFR45iyD0gcoOPpKRX5p6g_6BI4a5JOLuKuQOIA,1065
331
+ autobyteus/tools/mcp/__init__.py,sha256=gwT34UgJe2rU5y4bYNOLI-PyAmRQTMWKz_WC4f2LcyE,1553
332
+ autobyteus/tools/mcp/config_service.py,sha256=7OoqZGVxBob4IeeBjChFCpwyI9IJIxlOQDh-OjCffrY,11466
333
+ autobyteus/tools/mcp/factory.py,sha256=SmPR6mgmwLEfzfole-zKuptKnSyeZEBi1t9gBbwCtZY,2204
334
+ autobyteus/tools/mcp/schema_mapper.py,sha256=PJGEAlqCgkoCThLzmkG3jXOXYk6fR1ogjSpOiCuFKsc,7502
335
+ autobyteus/tools/mcp/server_instance_manager.py,sha256=pGZZCH9Qp7n6jefwyDsvoo0Pxe7AWCcqIqnXgWt8hyg,6289
336
+ autobyteus/tools/mcp/tool.py,sha256=HpXSjvQjwwDzGGww1Cz3j4yCCLDiCYEv0RG-q-2BU4o,3380
337
+ autobyteus/tools/mcp/tool_registrar.py,sha256=RugX4TdiD6IfXF8S6cy2Ae-ZobT6RdRKdx7NLbcBMyI,11028
338
+ autobyteus/tools/mcp/types.py,sha256=KiQUPhqzro5VW7piA-eOXkBcE0FThOUgr9Pw_7iV6Us,4171
339
+ autobyteus/tools/mcp/server/__init__.py,sha256=yfCMAtVlfy1x8aKEnRz9_CHnco2zVSdepwIPSjywSNw,523
340
+ autobyteus/tools/mcp/server/base_managed_mcp_server.py,sha256=ep-EKh4uqorrNYvv7D27Kh4fxR1f-E3hYMclFcWq0p4,5512
341
+ autobyteus/tools/mcp/server/http_managed_mcp_server.py,sha256=Kit7zcJxaRXfAXMxYqCKVcl4MfNsgRfXK9kjDaQFkMA,1969
342
+ autobyteus/tools/mcp/server/proxy.py,sha256=08F3m1I_IH2wrRXK29R_NPDB6ITHpo982Mq9G53hbUo,1660
343
+ autobyteus/tools/mcp/server/stdio_managed_mcp_server.py,sha256=a84GOnhWLg4vx6yo5dI8BlqUA_fdi0M5eNo2a-tGWwM,2085
344
+ autobyteus/tools/operation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
345
+ autobyteus/tools/operation/file_operation.py,sha256=bAehQ9PfHoCDpk9Wa7vx9h3ohzVuaGzzBUogxleTwq8,2375
346
+ autobyteus/tools/operation/file_rename_operation.py,sha256=pExiC69HUzYbKihlVumlGHMGxmmrsKQB0JfAM5x4JH0,1710
347
+ autobyteus/tools/operation/operation.py,sha256=9sIZnlrPct5CwkCKuwbspVKvjF4KumP6twmXRo1blwo,1702
348
+ autobyteus/tools/operation/shell_operation.py,sha256=_BiGIRGWCzzwPVtbqFwXpHOvnqH68YqJujQI-gWeKx0,1860
349
+ autobyteus/tools/registry/__init__.py,sha256=39TSHm7mD6NXhsrczsX5Mdr32US0I6z3Bzad4hgcrrA,250
350
+ autobyteus/tools/registry/tool_definition.py,sha256=7MlbULQXCq9VPWl9CLlPXO5fp3vJztSlQFr2pKPfTHc,6953
351
+ autobyteus/tools/registry/tool_registry.py,sha256=eekF5q3GZr3FwnwITGni-gyc46Vob5u3WoApmvEHPQ8,7564
352
+ autobyteus/tools/usage/__init__.py,sha256=0kJoUH-m0d1AHTYJQyXlCjlXhMJ3e95Ykf-8J9lO2g4,224
353
+ autobyteus/tools/usage/formatters/__init__.py,sha256=BThdI_R8Dkda1eHJFr1cQ7nLCgf5KfSuvWokjPrnT9U,1424
354
+ autobyteus/tools/usage/formatters/anthropic_json_example_formatter.py,sha256=EVVPZ7e1tG3QRcEPjdOC0yTvnGisubfUm9geWbd9r2g,792
355
+ autobyteus/tools/usage/formatters/anthropic_json_schema_formatter.py,sha256=Cwd4teoZcs64q1xemVYIW9lviH7A0t2jmg3W7TYv_Rs,869
356
+ autobyteus/tools/usage/formatters/base_formatter.py,sha256=15YQHEV-uHREoi5INA6KWVrniatMbBPIGz82bVkZos8,1283
357
+ autobyteus/tools/usage/formatters/default_json_example_formatter.py,sha256=SmMFPYr4mRmuVmwuTjOZxXOqhLBjt1XUpmD0i3VEAXE,5351
358
+ autobyteus/tools/usage/formatters/default_json_schema_formatter.py,sha256=mZuHp_irHco3_S-VotSBvv5BRFDlTsmdmSIH3Ut71jY,958
359
+ autobyteus/tools/usage/formatters/default_xml_example_formatter.py,sha256=i22vnjOIWO3mLxUoyN7lEwE1oSZ6ATMQW9wC-svThvs,3605
360
+ autobyteus/tools/usage/formatters/default_xml_schema_formatter.py,sha256=ZhLhISZSxNxZaexcn73H5yv81qEMxQgBUpZP_84-SBM,2109
361
+ autobyteus/tools/usage/formatters/gemini_json_example_formatter.py,sha256=Afuqza-2goEOTwbH3w_W-6PF3pJ2NWW5YJ22NVfIMIw,2184
362
+ autobyteus/tools/usage/formatters/gemini_json_schema_formatter.py,sha256=za6FhkrbDUcezc9-u4w4_ytQAQyR8OpKypC_CCTYlBY,875
363
+ autobyteus/tools/usage/formatters/google_json_example_formatter.py,sha256=U1ovG6HPG3Eyavey0f1yB970lKqX8pMPfsM5Mzfv9xA,2211
364
+ autobyteus/tools/usage/formatters/google_json_schema_formatter.py,sha256=gKeuR_QhiebFGja303rg9q9CxgynJxIoCd4SrXuXRUU,868
365
+ autobyteus/tools/usage/formatters/openai_json_example_formatter.py,sha256=xvDurFOxAVxzWO4GJPAVeuqUwkhpFokMyzUNlJ-foeg,2411
366
+ autobyteus/tools/usage/formatters/openai_json_schema_formatter.py,sha256=3pN4CnmWiBJaZMhV7qnWcSKPpyZ2cEdiU-FVMRfPT1w,948
367
+ autobyteus/tools/usage/parsers/__init__.py,sha256=4y235cYvUm60v30m4KCwQ4g9x9yP81QYBhSkUmjFWAU,915
368
+ autobyteus/tools/usage/parsers/_json_extractor.py,sha256=Q7BJsEcFkEZJ8q-ifIl-7t4FXZgFoFEwFXAGvKFYhCk,3601
369
+ autobyteus/tools/usage/parsers/anthropic_xml_tool_usage_parser.py,sha256=xAVq7bPlyfZK5YBVsNlXyyc-1J4kyVr4-wDNI0ekl_o,433
370
+ autobyteus/tools/usage/parsers/base_parser.py,sha256=iNHVUXMzAydnhYeEBgcXU0g8L_H9KTMavOEd-iwDLbk,1366
371
+ autobyteus/tools/usage/parsers/default_json_tool_usage_parser.py,sha256=jl-VKMubpgI15TuX7tyKmu_4WHb2YUVw5Yz2fy7GXkY,3480
372
+ autobyteus/tools/usage/parsers/default_xml_tool_usage_parser.py,sha256=FtC_szwfQDCORHSp6XG4omCsQTwyBr2AZCNEX90dFV0,5829
373
+ autobyteus/tools/usage/parsers/exceptions.py,sha256=CncCSH4IJUYPaCTilj1oPgfZWdCycIxQBrWiSKuWXtc,468
374
+ autobyteus/tools/usage/parsers/gemini_json_tool_usage_parser.py,sha256=t0vQWhmf4t6-tGq6OeH4o-1w_3eeUxQjHDYNpQ5g6R4,3502
375
+ autobyteus/tools/usage/parsers/openai_json_tool_usage_parser.py,sha256=wQXe4HAYsvfuLG6Ffv_Rk38ZAN5c1NlaEb7lFq7xbVs,6916
376
+ autobyteus/tools/usage/parsers/provider_aware_tool_usage_parser.py,sha256=3onfGvrxDnLQI29r9rpcNNObKBO7MvGR_o1MH3k10F8,2647
377
+ autobyteus/tools/usage/providers/__init__.py,sha256=C8GmfzYwzSS2OGv7MbvxtRe0OsIALvkC7rN7OWvA5p4,445
378
+ autobyteus/tools/usage/providers/tool_manifest_provider.py,sha256=CyIPITExm0rnpjafz_yD1WHSCTvS6rFnFsqv3FRzLQM,3427
379
+ autobyteus/tools/usage/registries/__init__.py,sha256=S1jYYPqAjvD1rY0b8zkffBnKz8-_ptftfbgr1lqb7I8,547
380
+ autobyteus/tools/usage/registries/tool_formatter_pair.py,sha256=Deki2aAEsFY0OSrMQf-4wZcyIInGI7EKQ2ZKenaFtMU,593
381
+ autobyteus/tools/usage/registries/tool_formatting_registry.py,sha256=1q6YPUZW_VJTbQToVrfXQ5FFWFQLC-0JWfstfj3xwwk,2863
382
+ autobyteus/tools/usage/registries/tool_usage_parser_registry.py,sha256=xTbdoqYlKsuIyg8UfbDHEws25Xc02R0ESDdLE7U7iQM,2244
383
+ autobyteus/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
384
+ autobyteus/utils/dynamic_enum.py,sha256=c_mgKtKrjb958LlCWeAApl1LMvVB7U_0SWl-8XFhRag,1339
385
+ autobyteus/utils/file_utils.py,sha256=QK0LvrwA5c9FDjpSrfPPEQbu_AirteJNiLad9yRahDY,512
386
+ autobyteus/utils/html_cleaner.py,sha256=mI2V83yFRfQe8NnN6fr6Ujpa0bPlq25NW5tTKaz2WGk,8672
387
+ autobyteus/utils/singleton.py,sha256=YVURj5nRcMtzwFPxgy6ic4MSe3IUXNf6XWYuiXyhDOg,814
388
+ autobyteus/workflow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
389
+ autobyteus/workflow/agentic_workflow.py,sha256=u1A_HkgNlPmKn2nXz_0u_l9_DSyt4hxRJSyojGonvAA,3765
390
+ autobyteus/workflow/base_agentic_workflow.py,sha256=fb7JZZ58p7HL-jQdzHybrMSEMSGgenoJ3D4prnWIBtk,3602
391
+ autobyteus/workflow/exceptions.py,sha256=mIHDol7s6bQX_LP8y00zDAnpjDXlAL4-3P8rX2nxA-Q,407
392
+ autobyteus/workflow/workflow_builder.py,sha256=_e3hlCTclQLN81XyJjbZ8uHSvKe6sgpeKA_8yL51e9c,6889
393
+ autobyteus/workflow/bootstrap_steps/__init__.py,sha256=9C9HvkXHNYJfI-OfXvMWOyerA1r6j1n3gLX2nE4fAKU,1034
394
+ autobyteus/workflow/bootstrap_steps/agent_tool_injection_step.py,sha256=LLPCKwzh0tQI6aUrWWrWNsU92uK-YdP0xDCkv1LWgTU,1942
395
+ autobyteus/workflow/bootstrap_steps/base_workflow_bootstrap_step.py,sha256=mj6SvAbKVL_HFygRh5QkuEhOhDhi4djU8opBARLa8fM,880
396
+ autobyteus/workflow/bootstrap_steps/coordinator_initialization_step.py,sha256=zZqc2fxOwy1Crll6VEXt2a8UC7ROSG_jmXC5Kjs7fhk,1927
397
+ autobyteus/workflow/bootstrap_steps/coordinator_prompt_preparation_step.py,sha256=aOHjTg-Ch9J2Eo_qPhHTblzmeKpeU6etWaVbde-Wjwk,5533
398
+ autobyteus/workflow/bootstrap_steps/workflow_bootstrapper.py,sha256=0fz-eN5DCtWPsYZLMUeFh-OOKQSBpwhN6ry3tAB5AM8,2746
399
+ autobyteus/workflow/bootstrap_steps/workflow_runtime_queue_initialization_step.py,sha256=uE8Ixgv66BMpzkBR_ohXY5i3A4CsaKdFmod514dzYj4,1369
400
+ autobyteus/workflow/context/__init__.py,sha256=aOkJMgX6bo7Cq1UBC4oENgb7lZYhMdJJSLJ-3uUhnA0,653
401
+ autobyteus/workflow/context/team_manager.py,sha256=EfWBdVsjnT9FJOhEFDZhlrdsJ9-qshDBq5sm7gkX5kA,7659
402
+ autobyteus/workflow/context/workflow_config.py,sha256=E3ylRyeC8WO37qHri9TmyShXht6-UqpMZIixBjucG7o,1174
403
+ autobyteus/workflow/context/workflow_context.py,sha256=JwFZr6Mof0tqLRndlgrQEz9iAkpie1i_URNUtUCSDJ0,2695
404
+ autobyteus/workflow/context/workflow_node_config.py,sha256=ka_ku03tKOwU-q9Is1lCt-Bpfj39gZk9KEE3lfEtNe8,3212
405
+ autobyteus/workflow/context/workflow_runtime_state.py,sha256=zEfPSXL6rSVib7hQrUFCRvI1MX85P7g2RUsLC2FF6ok,2810
406
+ autobyteus/workflow/events/__init__.py,sha256=7qNll9W8bpJRg63bzvZDdLLXwKQfoxsLFd-RLFPDGpA,949
407
+ autobyteus/workflow/events/workflow_event_dispatcher.py,sha256=aRn-R32AkS0Z38QJmHxRMX1msqdy25almwjbD6-zcls,1729
408
+ autobyteus/workflow/events/workflow_events.py,sha256=5IeDgjkImXZMMkpBn3u4d3PiKiLDHuDndb3FA1I_ycs,1744
409
+ autobyteus/workflow/events/workflow_input_event_queue_manager.py,sha256=JtTicSrEBXT6gQcUo5XLxuZ78NIDl2A1GtwRI44MONU,942
410
+ autobyteus/workflow/factory/__init__.py,sha256=W9Hq6EaVlpvHNj3I_6MpWluuLOxdPvpibH4AXlFX1f0,235
411
+ autobyteus/workflow/factory/workflow_factory.py,sha256=VpxDguKhG7ng3Z8-2Equqd6ligIn3FsXjeGDyP8ppjQ,4829
412
+ autobyteus/workflow/handlers/__init__.py,sha256=kgTir-RKwzsuUpODMcNjIzqFrw2LU4KQ8vWRcz-2ZCg,989
413
+ autobyteus/workflow/handlers/base_workflow_event_handler.py,sha256=1nA02qJuK4bk6gH3lyVCS85nfQtAO5tOifUp31FHfYk,580
414
+ autobyteus/workflow/handlers/inter_agent_message_request_event_handler.py,sha256=w9cq_GWZHp2996hh4tbgM598BpCTcdFfXx5dyGf39Q8,3388
415
+ autobyteus/workflow/handlers/lifecycle_workflow_event_handler.py,sha256=AtP1BZahYgbe-WV423bzZRPgvcGqh-I3mv5YqqYHwFI,1348
416
+ autobyteus/workflow/handlers/process_user_message_event_handler.py,sha256=TDEFwfONgNyHXOFtC56FEcxkRLr9FDmtXXONIcYC2lY,2602
417
+ autobyteus/workflow/handlers/tool_approval_workflow_event_handler.py,sha256=2nw4FhhjYSfHyYoeXW4v2s9ziy-Cb0sR-YrYHZg-8bM,1881
418
+ autobyteus/workflow/handlers/workflow_event_handler_registry.py,sha256=o-qXbg9VY4Ce8EtOGdbAhRXleQsWVjVE_idPK5rQTU8,1207
419
+ autobyteus/workflow/phases/__init__.py,sha256=GLqzLOHeiWXnUYTSrG8kRVqARU-litYdnwcGoGs5u-Q,403
420
+ autobyteus/workflow/phases/workflow_operational_phase.py,sha256=Do7YTKQ-NFCaqXyXf2HnMDoT6_WK1S5Td7K8CI-nsHk,674
421
+ autobyteus/workflow/phases/workflow_phase_manager.py,sha256=rJ90brGy0NoWRktAPkFuOVL4vZwJ1wBBPxdcLamSXLs,2346
422
+ autobyteus/workflow/runtime/__init__.py,sha256=WYLVQfP2zwgg8GtJSInTJZyVdr1mxRfvQRtSERmQfQQ,451
423
+ autobyteus/workflow/runtime/workflow_runtime.py,sha256=hZCVk7D4nsdjUAEQIMsprbWUi1mDrASx3hDfnSOt4IM,3894
424
+ autobyteus/workflow/runtime/workflow_worker.py,sha256=3QgyoZ7ahPmXcKEBSvTD29mmv4VPU4LBfD0xnJ_26zk,5598
425
+ autobyteus/workflow/shutdown_steps/__init__.py,sha256=6_d81qvsu5ViWi5BIjQ2pxIYjVKOnhmdtI5v031KXv8,802
426
+ autobyteus/workflow/shutdown_steps/agent_team_shutdown_step.py,sha256=27pJ0ysP1PzGcuU3mkwPorPenypN7jlZb18gh4MUDmI,1883
427
+ autobyteus/workflow/shutdown_steps/base_workflow_shutdown_step.py,sha256=c4fRHV56aTEOEVya5cvVEu15dgCjq4h3V93IKqrk4Ho,638
428
+ autobyteus/workflow/shutdown_steps/bridge_cleanup_step.py,sha256=rCDKe-Wdm4SY7ua0NRlp9i7wnIlmwqh-Nqze-qeGYcw,1183
429
+ autobyteus/workflow/shutdown_steps/sub_workflow_shutdown_step.py,sha256=odjGy3p3ikk2c713Iopsfe9vEX6RWa-4ZqjnKfry7kY,1861
430
+ autobyteus/workflow/shutdown_steps/workflow_shutdown_orchestrator.py,sha256=uZ77Ajnt5rzICXcjgyv19ckXEXi_pFnFNCyl-5MXMME,1580
431
+ autobyteus/workflow/streaming/__init__.py,sha256=-MFvSEtsgOpjABgrzHwugiauasE_eCK9Z7n99ldLZDg,877
432
+ autobyteus/workflow/streaming/agent_event_bridge.py,sha256=pT8tgXfQhdGb4LQ286tZcwmQZFrIbCBlIy_d7v1HGNE,2126
433
+ autobyteus/workflow/streaming/agent_event_multiplexer.py,sha256=VlBucqJJNHO7uwPAD7u5-0zTvmAkkqouaRyihJW5A6g,3765
434
+ autobyteus/workflow/streaming/workflow_event_bridge.py,sha256=BBgMQw1gruW-EgtK3SM-O21GG2qjaRem3BIWtsSlu_c,2461
435
+ autobyteus/workflow/streaming/workflow_event_notifier.py,sha256=GA1XPqWTEvdljYAJpifxrQtILORAGGuxWNldARmdVKA,3654
436
+ autobyteus/workflow/streaming/workflow_event_stream.py,sha256=XTOvbx1EWIh2x_-Nl5UcY6jCPnsgdS4GvoHjfRKj8yM,1540
437
+ autobyteus/workflow/streaming/workflow_stream_event_payloads.py,sha256=jv1bVYg-75Fa93gcK6Apavxu-crpeJ0w4QMmEa4Csno,1470
438
+ autobyteus/workflow/streaming/workflow_stream_events.py,sha256=75P29jNgcL7Go7D9wVz236KTwPfmqc5K7hUvVnc94K0,2221
439
+ autobyteus/workflow/utils/__init__.py,sha256=SzaMZHnJBIJKcT_r-HOeyIcuxzRu2bGeFkOcMLJaalk,222
440
+ autobyteus/workflow/utils/wait_for_idle.py,sha256=FgHtz59DN0eg8Na1PkkVR55Ihdd2e5Gn_mr7RVHl4qI,2001
441
+ autobyteus-1.1.5.dist-info/licenses/LICENSE,sha256=Ompok_c8HRsXRwmax-pGR9OZRRxZC9RPp4JB6eTJd0M,1360
442
+ examples/__init__.py,sha256=BtTQJ6yeHyksK5GC3kfN6RFR6Gcrwq1TBmp6FIIj3Z8,40
443
+ examples/discover_phase_transitions.py,sha256=NiFK_XzDCpWwmNsQqf0Ou2w6L5bofKIKODq7sH5uPzk,3679
444
+ examples/run_browser_agent.py,sha256=-idzmYbU8O-_gojdXHLOO7UIq4BEu-nua6x0wBbPegU,11740
445
+ examples/run_google_slides_agent.py,sha256=mNyIk2sWqbL9Yxa8_tX3xhecFZYwHtU0bdYo_53nMu8,13102
446
+ examples/run_mcp_browser_client.py,sha256=6vEBxGtAuGffkFk-gr3NvqetO84IdhNzip5Jp7V1tSc,6772
447
+ examples/run_mcp_google_slides_client.py,sha256=EMG7nG3df3fCrOX_iIncDWSqDdBrifm7gGYWUnkCJ_c,11826
448
+ examples/run_mcp_list_tools.py,sha256=-dOM-7xyyDM2gp5e_8KZVGbX5ZxWqFQB9l-fHfR8XxY,7367
449
+ examples/run_poem_writer.py,sha256=wJsT4ZHwXw3MbPAESwyCkAMWWYt7KH5BLhEDQxA06XM,13145
450
+ examples/run_sqlite_agent.py,sha256=c0ktqJ9tExMBgHSzA12Ys9x96ZqS2RBy0iDPFWstUJE,13161
451
+ examples/agent_team/__init__.py,sha256=WIg0HENp1TUClJ3p2gIRn0C-VW9Qr7Ttqtedr4xQ3Jo,51
452
+ autobyteus-1.1.5.dist-info/METADATA,sha256=UgUquTZVUc8AVIke4QwyGDhlOVEKbhRyVpLqJ7JDsDw,6947
453
+ autobyteus-1.1.5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
454
+ autobyteus-1.1.5.dist-info/top_level.txt,sha256=vNmK1Y8Irbc0iDPdRtr9gIx5eLM-c2v1ntItkzICzHU,20
455
+ autobyteus-1.1.5.dist-info/RECORD,,
@@ -1 +1,2 @@
1
1
  autobyteus
2
+ examples
examples/__init__.py ADDED
@@ -0,0 +1 @@
1
+ # file: autobyteus/examples/__init__.py
@@ -0,0 +1 @@
1
+ # file: autobyteus/examples/agent_team/__init__.py
@@ -0,0 +1,104 @@
1
+ # file: autobyteus/examples/discover_phase_transitions.py
2
+ """
3
+ This example script demonstrates how to use the PhaseTransitionDiscoverer
4
+ to programmatically find all valid phase transitions within the agent lifecycle.
5
+
6
+ This is useful for developers who want to create their own BasePhaseHook
7
+ subclasses, as it provides a definitive list of the source and target phases
8
+ they can hook into.
9
+ """
10
+ import sys
11
+ from pathlib import Path
12
+ from typing import List, Dict, Any
13
+
14
+ # --- Boilerplate to make the script runnable from the project root ---
15
+ SCRIPT_DIR = Path(__file__).resolve().parent
16
+ PACKAGE_ROOT = SCRIPT_DIR.parent
17
+ if str(PACKAGE_ROOT) not in sys.path:
18
+ sys.path.insert(0, str(PACKAGE_ROOT))
19
+
20
+ try:
21
+ from autobyteus.agent.phases import PhaseTransitionDiscoverer, PhaseTransitionInfo
22
+ except ImportError as e:
23
+ print(f"Error importing autobyteus components: {e}", file=sys.stderr)
24
+ print("Please ensure that the autobyteus library is installed and accessible.", file=sys.stderr)
25
+ sys.exit(1)
26
+
27
+
28
+ def _prepare_table_data(transitions: List[PhaseTransitionInfo]) -> List[Dict[str, str]]:
29
+ """Transforms transition info objects into a list of dictionaries for printing."""
30
+ table_data = []
31
+ for t in transitions:
32
+ from_str = "\n".join([p.value for p in t.source_phases])
33
+ table_data.append({
34
+ "From": from_str,
35
+ "To": t.target_phase.value,
36
+ "Trigger": f"AgentPhaseManager.{t.triggering_method}()",
37
+ "Description": t.description,
38
+ })
39
+ return table_data
40
+
41
+ def _print_as_table(data: List[Dict[str, str]]):
42
+ """Calculates column widths and prints the data in a formatted table."""
43
+ if not data:
44
+ return
45
+
46
+ headers = list(data[0].keys())
47
+
48
+ # Calculate max widths for each column
49
+ widths = {h: len(h) for h in headers}
50
+ for row in data:
51
+ for h in headers:
52
+ # Check max width line-by-line for multiline content
53
+ max_line_width = max(len(line) for line in row[h].split('\n')) if row[h] else 0
54
+ widths[h] = max(widths[h], max_line_width)
55
+
56
+ # --- Print Header ---
57
+ header_line = " | ".join(h.ljust(widths[h]) for h in headers)
58
+ separator_line = "-+-".join("-" * widths[h] for h in headers)
59
+ print(header_line)
60
+ print(separator_line)
61
+
62
+ # --- Print Rows ---
63
+ for row in data:
64
+ # Split multiline content to handle rowspan alignment
65
+ split_rows = [
66
+ {h: row[h].split('\n') for h in headers}
67
+ ]
68
+
69
+ num_lines = max(len(split_rows[0][h]) for h in headers)
70
+
71
+ for i in range(num_lines):
72
+ line_parts = []
73
+ for h in headers:
74
+ cell_lines = split_rows[0][h]
75
+ part = cell_lines[i] if i < len(cell_lines) else ""
76
+ line_parts.append(part.ljust(widths[h]))
77
+ print(" | ".join(line_parts))
78
+
79
+ # Print a thin separator between table rows for readability
80
+ print("-+-".join("-" * (w) for w in widths.values()))
81
+
82
+
83
+ def main():
84
+ """
85
+ Discovers and prints all available agent phase transitions.
86
+ """
87
+ print("--- Discovering all available agent phase transitions ---")
88
+ print("This table shows every possible transition you can create a custom hook for.\n")
89
+
90
+ all_transitions = PhaseTransitionDiscoverer.discover()
91
+
92
+ if not all_transitions:
93
+ print("No transitions were discovered. This is unexpected.")
94
+ return
95
+
96
+ # Prepare and print the data
97
+ table_data = _prepare_table_data(all_transitions)
98
+ _print_as_table(table_data)
99
+
100
+ print(f"\nTotal of {len(all_transitions)} unique transitions discovered.")
101
+
102
+
103
+ if __name__ == "__main__":
104
+ main()