autobyteus 1.2.0__py3-none-any.whl → 1.2.3__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 (512) hide show
  1. autobyteus/agent/agent.py +15 -5
  2. autobyteus/agent/bootstrap_steps/__init__.py +1 -3
  3. autobyteus/agent/bootstrap_steps/agent_bootstrapper.py +3 -59
  4. autobyteus/agent/bootstrap_steps/base_bootstrap_step.py +1 -4
  5. autobyteus/agent/bootstrap_steps/mcp_server_prewarming_step.py +1 -3
  6. autobyteus/agent/bootstrap_steps/system_prompt_processing_step.py +16 -13
  7. autobyteus/agent/bootstrap_steps/workspace_context_initialization_step.py +2 -4
  8. autobyteus/agent/context/agent_config.py +43 -20
  9. autobyteus/agent/context/agent_context.py +23 -18
  10. autobyteus/agent/context/agent_runtime_state.py +23 -19
  11. autobyteus/agent/events/__init__.py +16 -1
  12. autobyteus/agent/events/agent_events.py +43 -3
  13. autobyteus/agent/events/agent_input_event_queue_manager.py +79 -26
  14. autobyteus/agent/events/event_store.py +57 -0
  15. autobyteus/agent/events/notifiers.py +74 -60
  16. autobyteus/agent/events/worker_event_dispatcher.py +21 -64
  17. autobyteus/agent/factory/agent_factory.py +52 -0
  18. autobyteus/agent/handlers/__init__.py +2 -0
  19. autobyteus/agent/handlers/approved_tool_invocation_event_handler.py +51 -34
  20. autobyteus/agent/handlers/bootstrap_event_handler.py +155 -0
  21. autobyteus/agent/handlers/inter_agent_message_event_handler.py +10 -0
  22. autobyteus/agent/handlers/lifecycle_event_logger.py +19 -11
  23. autobyteus/agent/handlers/llm_complete_response_received_event_handler.py +10 -15
  24. autobyteus/agent/handlers/llm_user_message_ready_event_handler.py +188 -48
  25. autobyteus/agent/handlers/tool_execution_approval_event_handler.py +0 -10
  26. autobyteus/agent/handlers/tool_invocation_request_event_handler.py +53 -48
  27. autobyteus/agent/handlers/tool_result_event_handler.py +7 -8
  28. autobyteus/agent/handlers/user_input_message_event_handler.py +10 -3
  29. autobyteus/agent/input_processor/memory_ingest_input_processor.py +40 -0
  30. autobyteus/agent/lifecycle/__init__.py +12 -0
  31. autobyteus/agent/lifecycle/base_processor.py +109 -0
  32. autobyteus/agent/lifecycle/events.py +35 -0
  33. autobyteus/agent/lifecycle/processor_definition.py +36 -0
  34. autobyteus/agent/lifecycle/processor_registry.py +106 -0
  35. autobyteus/agent/llm_request_assembler.py +98 -0
  36. autobyteus/agent/llm_response_processor/__init__.py +1 -8
  37. autobyteus/agent/message/context_file_type.py +1 -1
  38. autobyteus/agent/message/send_message_to.py +5 -4
  39. autobyteus/agent/runtime/agent_runtime.py +29 -21
  40. autobyteus/agent/runtime/agent_worker.py +98 -19
  41. autobyteus/agent/shutdown_steps/__init__.py +2 -0
  42. autobyteus/agent/shutdown_steps/agent_shutdown_orchestrator.py +2 -0
  43. autobyteus/agent/shutdown_steps/tool_cleanup_step.py +58 -0
  44. autobyteus/agent/status/__init__.py +14 -0
  45. autobyteus/agent/status/manager.py +93 -0
  46. autobyteus/agent/status/status_deriver.py +96 -0
  47. autobyteus/agent/{phases/phase_enum.py → status/status_enum.py} +16 -16
  48. autobyteus/agent/status/status_update_utils.py +73 -0
  49. autobyteus/agent/streaming/__init__.py +52 -5
  50. autobyteus/agent/streaming/adapters/__init__.py +18 -0
  51. autobyteus/agent/streaming/adapters/invocation_adapter.py +184 -0
  52. autobyteus/agent/streaming/adapters/tool_call_parsing.py +163 -0
  53. autobyteus/agent/streaming/adapters/tool_syntax_registry.py +67 -0
  54. autobyteus/agent/streaming/agent_event_stream.py +3 -178
  55. autobyteus/agent/streaming/api_tool_call/__init__.py +16 -0
  56. autobyteus/agent/streaming/api_tool_call/file_content_streamer.py +56 -0
  57. autobyteus/agent/streaming/api_tool_call/json_string_field_extractor.py +175 -0
  58. autobyteus/agent/streaming/api_tool_call_streaming_response_handler.py +4 -0
  59. autobyteus/agent/streaming/events/__init__.py +6 -0
  60. autobyteus/agent/streaming/events/stream_event_payloads.py +284 -0
  61. autobyteus/agent/streaming/events/stream_events.py +141 -0
  62. autobyteus/agent/streaming/handlers/__init__.py +15 -0
  63. autobyteus/agent/streaming/handlers/api_tool_call_streaming_response_handler.py +303 -0
  64. autobyteus/agent/streaming/handlers/parsing_streaming_response_handler.py +107 -0
  65. autobyteus/agent/streaming/handlers/pass_through_streaming_response_handler.py +107 -0
  66. autobyteus/agent/streaming/handlers/streaming_handler_factory.py +177 -0
  67. autobyteus/agent/streaming/handlers/streaming_response_handler.py +58 -0
  68. autobyteus/agent/streaming/parser/__init__.py +61 -0
  69. autobyteus/agent/streaming/parser/event_emitter.py +181 -0
  70. autobyteus/agent/streaming/parser/events.py +4 -0
  71. autobyteus/agent/streaming/parser/invocation_adapter.py +4 -0
  72. autobyteus/agent/streaming/parser/json_parsing_strategies/__init__.py +19 -0
  73. autobyteus/agent/streaming/parser/json_parsing_strategies/base.py +32 -0
  74. autobyteus/agent/streaming/parser/json_parsing_strategies/default.py +34 -0
  75. autobyteus/agent/streaming/parser/json_parsing_strategies/gemini.py +31 -0
  76. autobyteus/agent/streaming/parser/json_parsing_strategies/openai.py +64 -0
  77. autobyteus/agent/streaming/parser/json_parsing_strategies/registry.py +75 -0
  78. autobyteus/agent/streaming/parser/parser_context.py +227 -0
  79. autobyteus/agent/streaming/parser/parser_factory.py +132 -0
  80. autobyteus/agent/streaming/parser/sentinel_format.py +7 -0
  81. autobyteus/agent/streaming/parser/state_factory.py +62 -0
  82. autobyteus/agent/streaming/parser/states/__init__.py +1 -0
  83. autobyteus/agent/streaming/parser/states/base_state.py +60 -0
  84. autobyteus/agent/streaming/parser/states/custom_xml_tag_run_bash_parsing_state.py +38 -0
  85. autobyteus/agent/streaming/parser/states/custom_xml_tag_write_file_parsing_state.py +55 -0
  86. autobyteus/agent/streaming/parser/states/delimited_content_state.py +146 -0
  87. autobyteus/agent/streaming/parser/states/json_initialization_state.py +144 -0
  88. autobyteus/agent/streaming/parser/states/json_tool_parsing_state.py +137 -0
  89. autobyteus/agent/streaming/parser/states/sentinel_content_state.py +30 -0
  90. autobyteus/agent/streaming/parser/states/sentinel_initialization_state.py +117 -0
  91. autobyteus/agent/streaming/parser/states/text_state.py +78 -0
  92. autobyteus/agent/streaming/parser/states/xml_patch_file_tool_parsing_state.py +328 -0
  93. autobyteus/agent/streaming/parser/states/xml_run_bash_tool_parsing_state.py +129 -0
  94. autobyteus/agent/streaming/parser/states/xml_tag_initialization_state.py +151 -0
  95. autobyteus/agent/streaming/parser/states/xml_tool_parsing_state.py +63 -0
  96. autobyteus/agent/streaming/parser/states/xml_write_file_tool_parsing_state.py +343 -0
  97. autobyteus/agent/streaming/parser/strategies/__init__.py +17 -0
  98. autobyteus/agent/streaming/parser/strategies/base.py +24 -0
  99. autobyteus/agent/streaming/parser/strategies/json_tool_strategy.py +26 -0
  100. autobyteus/agent/streaming/parser/strategies/registry.py +28 -0
  101. autobyteus/agent/streaming/parser/strategies/sentinel_strategy.py +23 -0
  102. autobyteus/agent/streaming/parser/strategies/xml_tag_strategy.py +21 -0
  103. autobyteus/agent/streaming/parser/stream_scanner.py +167 -0
  104. autobyteus/agent/streaming/parser/streaming_parser.py +212 -0
  105. autobyteus/agent/streaming/parser/tool_call_parsing.py +4 -0
  106. autobyteus/agent/streaming/parser/tool_constants.py +7 -0
  107. autobyteus/agent/streaming/parser/tool_syntax_registry.py +4 -0
  108. autobyteus/agent/streaming/parser/xml_tool_parsing_state_registry.py +55 -0
  109. autobyteus/agent/streaming/parsing_streaming_response_handler.py +4 -0
  110. autobyteus/agent/streaming/pass_through_streaming_response_handler.py +4 -0
  111. autobyteus/agent/streaming/queue_streamer.py +3 -57
  112. autobyteus/agent/streaming/segments/__init__.py +5 -0
  113. autobyteus/agent/streaming/segments/segment_events.py +81 -0
  114. autobyteus/agent/streaming/stream_event_payloads.py +2 -198
  115. autobyteus/agent/streaming/stream_events.py +3 -128
  116. autobyteus/agent/streaming/streaming_handler_factory.py +4 -0
  117. autobyteus/agent/streaming/streaming_response_handler.py +4 -0
  118. autobyteus/agent/streaming/streams/__init__.py +5 -0
  119. autobyteus/agent/streaming/streams/agent_event_stream.py +197 -0
  120. autobyteus/agent/streaming/utils/__init__.py +5 -0
  121. autobyteus/agent/streaming/utils/queue_streamer.py +59 -0
  122. autobyteus/agent/system_prompt_processor/__init__.py +2 -0
  123. autobyteus/agent/system_prompt_processor/available_skills_processor.py +96 -0
  124. autobyteus/agent/system_prompt_processor/base_processor.py +1 -1
  125. autobyteus/agent/system_prompt_processor/processor_meta.py +15 -2
  126. autobyteus/agent/system_prompt_processor/tool_manifest_injector_processor.py +39 -58
  127. autobyteus/agent/token_budget.py +56 -0
  128. autobyteus/agent/tool_execution_result_processor/memory_ingest_tool_result_processor.py +29 -0
  129. autobyteus/agent/tool_invocation.py +16 -40
  130. autobyteus/agent/tool_invocation_preprocessor/__init__.py +9 -0
  131. autobyteus/agent/tool_invocation_preprocessor/base_preprocessor.py +45 -0
  132. autobyteus/agent/tool_invocation_preprocessor/processor_definition.py +15 -0
  133. autobyteus/agent/tool_invocation_preprocessor/processor_meta.py +33 -0
  134. autobyteus/agent/tool_invocation_preprocessor/processor_registry.py +60 -0
  135. autobyteus/agent/utils/wait_for_idle.py +12 -14
  136. autobyteus/agent/workspace/base_workspace.py +6 -27
  137. autobyteus/agent_team/agent_team.py +3 -3
  138. autobyteus/agent_team/agent_team_builder.py +1 -41
  139. autobyteus/agent_team/bootstrap_steps/__init__.py +0 -4
  140. autobyteus/agent_team/bootstrap_steps/agent_configuration_preparation_step.py +8 -18
  141. autobyteus/agent_team/bootstrap_steps/agent_team_bootstrapper.py +4 -16
  142. autobyteus/agent_team/bootstrap_steps/base_agent_team_bootstrap_step.py +1 -2
  143. autobyteus/agent_team/bootstrap_steps/coordinator_initialization_step.py +1 -2
  144. autobyteus/agent_team/bootstrap_steps/task_notifier_initialization_step.py +5 -6
  145. autobyteus/agent_team/bootstrap_steps/team_context_initialization_step.py +15 -15
  146. autobyteus/agent_team/context/agent_team_config.py +6 -3
  147. autobyteus/agent_team/context/agent_team_context.py +25 -3
  148. autobyteus/agent_team/context/agent_team_runtime_state.py +11 -8
  149. autobyteus/agent_team/events/__init__.py +11 -0
  150. autobyteus/agent_team/events/agent_team_event_dispatcher.py +22 -9
  151. autobyteus/agent_team/events/agent_team_events.py +16 -0
  152. autobyteus/agent_team/events/event_store.py +57 -0
  153. autobyteus/agent_team/factory/agent_team_factory.py +8 -0
  154. autobyteus/agent_team/handlers/inter_agent_message_request_event_handler.py +18 -2
  155. autobyteus/agent_team/handlers/lifecycle_agent_team_event_handler.py +21 -5
  156. autobyteus/agent_team/handlers/process_user_message_event_handler.py +17 -8
  157. autobyteus/agent_team/handlers/tool_approval_team_event_handler.py +19 -4
  158. autobyteus/agent_team/runtime/agent_team_runtime.py +41 -10
  159. autobyteus/agent_team/runtime/agent_team_worker.py +69 -5
  160. autobyteus/agent_team/status/__init__.py +14 -0
  161. autobyteus/agent_team/status/agent_team_status.py +18 -0
  162. autobyteus/agent_team/status/agent_team_status_manager.py +33 -0
  163. autobyteus/agent_team/status/status_deriver.py +62 -0
  164. autobyteus/agent_team/status/status_update_utils.py +42 -0
  165. autobyteus/agent_team/streaming/__init__.py +2 -2
  166. autobyteus/agent_team/streaming/agent_team_event_notifier.py +10 -10
  167. autobyteus/agent_team/streaming/agent_team_stream_event_payloads.py +7 -7
  168. autobyteus/agent_team/streaming/agent_team_stream_events.py +11 -11
  169. autobyteus/agent_team/system_prompt_processor/__init__.py +6 -0
  170. autobyteus/agent_team/system_prompt_processor/team_manifest_injector_processor.py +76 -0
  171. autobyteus/agent_team/task_notification/activation_policy.py +1 -1
  172. autobyteus/agent_team/task_notification/system_event_driven_agent_task_notifier.py +22 -22
  173. autobyteus/agent_team/task_notification/task_notification_mode.py +20 -1
  174. autobyteus/agent_team/utils/wait_for_idle.py +4 -4
  175. autobyteus/cli/agent_cli.py +18 -10
  176. autobyteus/cli/agent_team_tui/app.py +18 -15
  177. autobyteus/cli/agent_team_tui/state.py +21 -23
  178. autobyteus/cli/agent_team_tui/widgets/agent_list_sidebar.py +15 -15
  179. autobyteus/cli/agent_team_tui/widgets/focus_pane.py +146 -39
  180. autobyteus/cli/agent_team_tui/widgets/renderables.py +1 -1
  181. autobyteus/cli/agent_team_tui/widgets/shared.py +26 -26
  182. autobyteus/cli/agent_team_tui/widgets/{task_board_panel.py → task_plan_panel.py} +5 -5
  183. autobyteus/cli/cli_display.py +193 -44
  184. autobyteus/cli/workflow_tui/app.py +9 -10
  185. autobyteus/cli/workflow_tui/state.py +14 -16
  186. autobyteus/cli/workflow_tui/widgets/agent_list_sidebar.py +15 -15
  187. autobyteus/cli/workflow_tui/widgets/focus_pane.py +137 -35
  188. autobyteus/cli/workflow_tui/widgets/renderables.py +1 -1
  189. autobyteus/cli/workflow_tui/widgets/shared.py +25 -25
  190. autobyteus/clients/autobyteus_client.py +94 -1
  191. autobyteus/events/event_types.py +15 -21
  192. autobyteus/llm/api/autobyteus_llm.py +33 -29
  193. autobyteus/llm/api/claude_llm.py +142 -36
  194. autobyteus/llm/api/gemini_llm.py +163 -59
  195. autobyteus/llm/api/grok_llm.py +1 -1
  196. autobyteus/llm/api/minimax_llm.py +26 -0
  197. autobyteus/llm/api/mistral_llm.py +113 -87
  198. autobyteus/llm/api/ollama_llm.py +9 -42
  199. autobyteus/llm/api/openai_compatible_llm.py +127 -91
  200. autobyteus/llm/api/openai_llm.py +3 -3
  201. autobyteus/llm/api/openai_responses_llm.py +324 -0
  202. autobyteus/llm/api/zhipu_llm.py +21 -2
  203. autobyteus/llm/autobyteus_provider.py +70 -60
  204. autobyteus/llm/base_llm.py +85 -81
  205. autobyteus/llm/converters/__init__.py +14 -0
  206. autobyteus/llm/converters/anthropic_tool_call_converter.py +37 -0
  207. autobyteus/llm/converters/gemini_tool_call_converter.py +57 -0
  208. autobyteus/llm/converters/mistral_tool_call_converter.py +37 -0
  209. autobyteus/llm/converters/openai_tool_call_converter.py +38 -0
  210. autobyteus/llm/extensions/base_extension.py +6 -12
  211. autobyteus/llm/extensions/token_usage_tracking_extension.py +45 -18
  212. autobyteus/llm/llm_factory.py +282 -204
  213. autobyteus/llm/lmstudio_provider.py +60 -49
  214. autobyteus/llm/models.py +35 -2
  215. autobyteus/llm/ollama_provider.py +60 -49
  216. autobyteus/llm/ollama_provider_resolver.py +0 -1
  217. autobyteus/llm/prompt_renderers/__init__.py +19 -0
  218. autobyteus/llm/prompt_renderers/anthropic_prompt_renderer.py +104 -0
  219. autobyteus/llm/prompt_renderers/autobyteus_prompt_renderer.py +19 -0
  220. autobyteus/llm/prompt_renderers/base_prompt_renderer.py +10 -0
  221. autobyteus/llm/prompt_renderers/gemini_prompt_renderer.py +63 -0
  222. autobyteus/llm/prompt_renderers/mistral_prompt_renderer.py +87 -0
  223. autobyteus/llm/prompt_renderers/ollama_prompt_renderer.py +51 -0
  224. autobyteus/llm/prompt_renderers/openai_chat_renderer.py +97 -0
  225. autobyteus/llm/prompt_renderers/openai_responses_renderer.py +101 -0
  226. autobyteus/llm/providers.py +1 -3
  227. autobyteus/llm/token_counter/claude_token_counter.py +56 -25
  228. autobyteus/llm/token_counter/mistral_token_counter.py +12 -8
  229. autobyteus/llm/token_counter/openai_token_counter.py +24 -5
  230. autobyteus/llm/token_counter/token_counter_factory.py +12 -5
  231. autobyteus/llm/utils/llm_config.py +6 -12
  232. autobyteus/llm/utils/media_payload_formatter.py +27 -20
  233. autobyteus/llm/utils/messages.py +55 -3
  234. autobyteus/llm/utils/response_types.py +3 -0
  235. autobyteus/llm/utils/tool_call_delta.py +31 -0
  236. autobyteus/memory/__init__.py +32 -0
  237. autobyteus/memory/active_transcript.py +69 -0
  238. autobyteus/memory/compaction/__init__.py +9 -0
  239. autobyteus/memory/compaction/compaction_result.py +8 -0
  240. autobyteus/memory/compaction/compactor.py +89 -0
  241. autobyteus/memory/compaction/summarizer.py +11 -0
  242. autobyteus/memory/compaction_snapshot_builder.py +84 -0
  243. autobyteus/memory/memory_manager.py +183 -0
  244. autobyteus/memory/models/__init__.py +14 -0
  245. autobyteus/memory/models/episodic_item.py +41 -0
  246. autobyteus/memory/models/memory_types.py +7 -0
  247. autobyteus/memory/models/raw_trace_item.py +79 -0
  248. autobyteus/memory/models/semantic_item.py +41 -0
  249. autobyteus/memory/models/tool_interaction.py +20 -0
  250. autobyteus/memory/policies/__init__.py +5 -0
  251. autobyteus/memory/policies/compaction_policy.py +16 -0
  252. autobyteus/memory/retrieval/__init__.py +7 -0
  253. autobyteus/memory/retrieval/memory_bundle.py +11 -0
  254. autobyteus/memory/retrieval/retriever.py +13 -0
  255. autobyteus/memory/store/__init__.py +7 -0
  256. autobyteus/memory/store/base_store.py +14 -0
  257. autobyteus/memory/store/file_store.py +98 -0
  258. autobyteus/memory/tool_interaction_builder.py +46 -0
  259. autobyteus/memory/turn_tracker.py +9 -0
  260. autobyteus/multimedia/audio/api/__init__.py +3 -2
  261. autobyteus/multimedia/audio/api/autobyteus_audio_client.py +19 -5
  262. autobyteus/multimedia/audio/api/gemini_audio_client.py +108 -16
  263. autobyteus/multimedia/audio/api/openai_audio_client.py +112 -0
  264. autobyteus/multimedia/audio/audio_client_factory.py +84 -9
  265. autobyteus/multimedia/audio/audio_model.py +2 -1
  266. autobyteus/multimedia/image/api/autobyteus_image_client.py +19 -5
  267. autobyteus/multimedia/image/api/gemini_image_client.py +38 -17
  268. autobyteus/multimedia/image/api/openai_image_client.py +125 -43
  269. autobyteus/multimedia/image/autobyteus_image_provider.py +2 -1
  270. autobyteus/multimedia/image/image_client_factory.py +47 -15
  271. autobyteus/multimedia/image/image_model.py +5 -2
  272. autobyteus/multimedia/providers.py +3 -2
  273. autobyteus/skills/loader.py +71 -0
  274. autobyteus/skills/model.py +11 -0
  275. autobyteus/skills/registry.py +70 -0
  276. autobyteus/task_management/__init__.py +43 -20
  277. autobyteus/task_management/{base_task_board.py → base_task_plan.py} +16 -13
  278. autobyteus/task_management/converters/__init__.py +2 -2
  279. autobyteus/task_management/converters/{task_board_converter.py → task_plan_converter.py} +13 -13
  280. autobyteus/task_management/events.py +7 -7
  281. autobyteus/task_management/{in_memory_task_board.py → in_memory_task_plan.py} +34 -22
  282. autobyteus/task_management/schemas/__init__.py +3 -0
  283. autobyteus/task_management/schemas/task_status_report.py +2 -2
  284. autobyteus/task_management/schemas/todo_definition.py +15 -0
  285. autobyteus/task_management/todo.py +29 -0
  286. autobyteus/task_management/todo_list.py +75 -0
  287. autobyteus/task_management/tools/__init__.py +24 -8
  288. autobyteus/task_management/tools/task_tools/__init__.py +19 -0
  289. autobyteus/task_management/tools/{assign_task_to.py → task_tools/assign_task_to.py} +18 -18
  290. autobyteus/task_management/tools/{publish_task.py → task_tools/create_task.py} +16 -18
  291. autobyteus/task_management/tools/{publish_tasks.py → task_tools/create_tasks.py} +19 -19
  292. autobyteus/task_management/tools/{get_my_tasks.py → task_tools/get_my_tasks.py} +15 -15
  293. autobyteus/task_management/tools/{get_task_board_status.py → task_tools/get_task_plan_status.py} +16 -16
  294. autobyteus/task_management/tools/{update_task_status.py → task_tools/update_task_status.py} +16 -16
  295. autobyteus/task_management/tools/todo_tools/__init__.py +18 -0
  296. autobyteus/task_management/tools/todo_tools/add_todo.py +78 -0
  297. autobyteus/task_management/tools/todo_tools/create_todo_list.py +79 -0
  298. autobyteus/task_management/tools/todo_tools/get_todo_list.py +55 -0
  299. autobyteus/task_management/tools/todo_tools/update_todo_status.py +85 -0
  300. autobyteus/tools/__init__.py +43 -52
  301. autobyteus/tools/base_tool.py +7 -0
  302. autobyteus/tools/file/__init__.py +9 -0
  303. autobyteus/tools/file/patch_file.py +149 -0
  304. autobyteus/tools/file/{file_reader.py → read_file.py} +38 -7
  305. autobyteus/tools/file/{file_writer.py → write_file.py} +7 -4
  306. autobyteus/tools/functional_tool.py +53 -14
  307. autobyteus/tools/mcp/__init__.py +2 -0
  308. autobyteus/tools/mcp/config_service.py +5 -1
  309. autobyteus/tools/mcp/server/__init__.py +2 -0
  310. autobyteus/tools/mcp/server/http_managed_mcp_server.py +1 -1
  311. autobyteus/tools/mcp/server/websocket_managed_mcp_server.py +141 -0
  312. autobyteus/tools/mcp/server_instance_manager.py +8 -1
  313. autobyteus/tools/mcp/tool.py +3 -3
  314. autobyteus/tools/mcp/tool_registrar.py +5 -2
  315. autobyteus/tools/mcp/types.py +61 -0
  316. autobyteus/tools/multimedia/__init__.py +2 -1
  317. autobyteus/tools/multimedia/audio_tools.py +72 -19
  318. autobyteus/tools/{download_media_tool.py → multimedia/download_media_tool.py} +21 -7
  319. autobyteus/tools/multimedia/image_tools.py +248 -64
  320. autobyteus/tools/multimedia/media_reader_tool.py +1 -1
  321. autobyteus/tools/operation_executor/journal_manager.py +107 -0
  322. autobyteus/tools/operation_executor/operation_event_buffer.py +57 -0
  323. autobyteus/tools/operation_executor/operation_event_producer.py +29 -0
  324. autobyteus/tools/operation_executor/operation_executor.py +58 -0
  325. autobyteus/tools/registry/tool_definition.py +108 -14
  326. autobyteus/tools/registry/tool_registry.py +29 -0
  327. autobyteus/tools/search/__init__.py +17 -0
  328. autobyteus/tools/search/base_strategy.py +35 -0
  329. autobyteus/tools/search/client.py +24 -0
  330. autobyteus/tools/search/factory.py +81 -0
  331. autobyteus/tools/search/google_cse_strategy.py +68 -0
  332. autobyteus/tools/search/providers.py +10 -0
  333. autobyteus/tools/search/serpapi_strategy.py +65 -0
  334. autobyteus/tools/search/serper_strategy.py +87 -0
  335. autobyteus/tools/search_tool.py +83 -0
  336. autobyteus/tools/skill/load_skill.py +50 -0
  337. autobyteus/tools/terminal/__init__.py +45 -0
  338. autobyteus/tools/terminal/ansi_utils.py +32 -0
  339. autobyteus/tools/terminal/background_process_manager.py +233 -0
  340. autobyteus/tools/terminal/output_buffer.py +105 -0
  341. autobyteus/tools/terminal/prompt_detector.py +63 -0
  342. autobyteus/tools/terminal/pty_session.py +241 -0
  343. autobyteus/tools/terminal/session_factory.py +20 -0
  344. autobyteus/tools/terminal/terminal_session_manager.py +226 -0
  345. autobyteus/tools/terminal/tools/__init__.py +13 -0
  346. autobyteus/tools/terminal/tools/get_process_output.py +81 -0
  347. autobyteus/tools/terminal/tools/run_bash.py +109 -0
  348. autobyteus/tools/terminal/tools/start_background_process.py +104 -0
  349. autobyteus/tools/terminal/tools/stop_background_process.py +67 -0
  350. autobyteus/tools/terminal/types.py +54 -0
  351. autobyteus/tools/terminal/wsl_tmux_session.py +221 -0
  352. autobyteus/tools/terminal/wsl_utils.py +156 -0
  353. autobyteus/tools/tool_meta.py +4 -24
  354. autobyteus/tools/transaction_management/backup_handler.py +48 -0
  355. autobyteus/tools/transaction_management/operation_lifecycle_manager.py +62 -0
  356. autobyteus/tools/usage/__init__.py +1 -2
  357. autobyteus/tools/usage/formatters/__init__.py +17 -1
  358. autobyteus/tools/usage/formatters/base_formatter.py +8 -0
  359. autobyteus/tools/usage/formatters/default_xml_schema_formatter.py +2 -2
  360. autobyteus/tools/usage/formatters/mistral_json_schema_formatter.py +18 -0
  361. autobyteus/tools/usage/formatters/patch_file_xml_example_formatter.py +64 -0
  362. autobyteus/tools/usage/formatters/patch_file_xml_schema_formatter.py +31 -0
  363. autobyteus/tools/usage/formatters/run_bash_xml_example_formatter.py +32 -0
  364. autobyteus/tools/usage/formatters/run_bash_xml_schema_formatter.py +36 -0
  365. autobyteus/tools/usage/formatters/write_file_xml_example_formatter.py +53 -0
  366. autobyteus/tools/usage/formatters/write_file_xml_schema_formatter.py +31 -0
  367. autobyteus/tools/usage/providers/tool_manifest_provider.py +10 -10
  368. autobyteus/tools/usage/registries/__init__.py +1 -3
  369. autobyteus/tools/usage/registries/tool_formatting_registry.py +115 -8
  370. autobyteus/tools/usage/tool_schema_provider.py +51 -0
  371. autobyteus/tools/web/__init__.py +4 -0
  372. autobyteus/tools/web/read_url_tool.py +80 -0
  373. autobyteus/utils/diff_utils.py +271 -0
  374. autobyteus/utils/download_utils.py +109 -0
  375. autobyteus/utils/file_utils.py +57 -2
  376. autobyteus/utils/gemini_helper.py +56 -0
  377. autobyteus/utils/gemini_model_mapping.py +71 -0
  378. autobyteus/utils/llm_output_formatter.py +75 -0
  379. autobyteus/utils/tool_call_format.py +36 -0
  380. autobyteus/workflow/agentic_workflow.py +3 -3
  381. autobyteus/workflow/bootstrap_steps/agent_tool_injection_step.py +2 -2
  382. autobyteus/workflow/bootstrap_steps/base_workflow_bootstrap_step.py +2 -2
  383. autobyteus/workflow/bootstrap_steps/coordinator_initialization_step.py +2 -2
  384. autobyteus/workflow/bootstrap_steps/coordinator_prompt_preparation_step.py +4 -11
  385. autobyteus/workflow/bootstrap_steps/workflow_bootstrapper.py +6 -6
  386. autobyteus/workflow/bootstrap_steps/workflow_runtime_queue_initialization_step.py +2 -2
  387. autobyteus/workflow/context/workflow_context.py +3 -3
  388. autobyteus/workflow/context/workflow_runtime_state.py +5 -5
  389. autobyteus/workflow/events/workflow_event_dispatcher.py +5 -5
  390. autobyteus/workflow/handlers/lifecycle_workflow_event_handler.py +3 -3
  391. autobyteus/workflow/handlers/process_user_message_event_handler.py +5 -5
  392. autobyteus/workflow/handlers/tool_approval_workflow_event_handler.py +2 -2
  393. autobyteus/workflow/runtime/workflow_runtime.py +8 -8
  394. autobyteus/workflow/runtime/workflow_worker.py +3 -3
  395. autobyteus/workflow/status/__init__.py +11 -0
  396. autobyteus/workflow/status/workflow_status.py +19 -0
  397. autobyteus/workflow/status/workflow_status_manager.py +48 -0
  398. autobyteus/workflow/streaming/__init__.py +2 -2
  399. autobyteus/workflow/streaming/workflow_event_notifier.py +7 -7
  400. autobyteus/workflow/streaming/workflow_stream_event_payloads.py +4 -4
  401. autobyteus/workflow/streaming/workflow_stream_events.py +3 -3
  402. autobyteus/workflow/utils/wait_for_idle.py +4 -4
  403. autobyteus-1.2.3.dist-info/METADATA +293 -0
  404. autobyteus-1.2.3.dist-info/RECORD +600 -0
  405. {autobyteus-1.2.0.dist-info → autobyteus-1.2.3.dist-info}/WHEEL +1 -1
  406. {autobyteus-1.2.0.dist-info → autobyteus-1.2.3.dist-info}/top_level.txt +0 -1
  407. autobyteus/agent/bootstrap_steps/agent_runtime_queue_initialization_step.py +0 -57
  408. autobyteus/agent/hooks/__init__.py +0 -16
  409. autobyteus/agent/hooks/base_phase_hook.py +0 -78
  410. autobyteus/agent/hooks/hook_definition.py +0 -36
  411. autobyteus/agent/hooks/hook_meta.py +0 -37
  412. autobyteus/agent/hooks/hook_registry.py +0 -106
  413. autobyteus/agent/llm_response_processor/provider_aware_tool_usage_processor.py +0 -103
  414. autobyteus/agent/phases/__init__.py +0 -18
  415. autobyteus/agent/phases/discover.py +0 -53
  416. autobyteus/agent/phases/manager.py +0 -265
  417. autobyteus/agent/phases/transition_decorator.py +0 -40
  418. autobyteus/agent/phases/transition_info.py +0 -33
  419. autobyteus/agent/remote_agent.py +0 -244
  420. autobyteus/agent/workspace/workspace_definition.py +0 -36
  421. autobyteus/agent/workspace/workspace_meta.py +0 -37
  422. autobyteus/agent/workspace/workspace_registry.py +0 -72
  423. autobyteus/agent_team/bootstrap_steps/agent_team_runtime_queue_initialization_step.py +0 -25
  424. autobyteus/agent_team/bootstrap_steps/coordinator_prompt_preparation_step.py +0 -85
  425. autobyteus/agent_team/phases/__init__.py +0 -11
  426. autobyteus/agent_team/phases/agent_team_operational_phase.py +0 -19
  427. autobyteus/agent_team/phases/agent_team_phase_manager.py +0 -48
  428. autobyteus/llm/api/bedrock_llm.py +0 -92
  429. autobyteus/llm/api/groq_llm.py +0 -94
  430. autobyteus/llm/api/nvidia_llm.py +0 -108
  431. autobyteus/llm/utils/token_pricing_config.py +0 -87
  432. autobyteus/person/examples/sample_persons.py +0 -14
  433. autobyteus/person/examples/sample_roles.py +0 -14
  434. autobyteus/person/person.py +0 -29
  435. autobyteus/person/role.py +0 -14
  436. autobyteus/rpc/__init__.py +0 -73
  437. autobyteus/rpc/client/__init__.py +0 -17
  438. autobyteus/rpc/client/abstract_client_connection.py +0 -124
  439. autobyteus/rpc/client/client_connection_manager.py +0 -153
  440. autobyteus/rpc/client/sse_client_connection.py +0 -306
  441. autobyteus/rpc/client/stdio_client_connection.py +0 -280
  442. autobyteus/rpc/config/__init__.py +0 -13
  443. autobyteus/rpc/config/agent_server_config.py +0 -153
  444. autobyteus/rpc/config/agent_server_registry.py +0 -152
  445. autobyteus/rpc/hosting.py +0 -244
  446. autobyteus/rpc/protocol.py +0 -244
  447. autobyteus/rpc/server/__init__.py +0 -20
  448. autobyteus/rpc/server/agent_server_endpoint.py +0 -181
  449. autobyteus/rpc/server/base_method_handler.py +0 -40
  450. autobyteus/rpc/server/method_handlers.py +0 -259
  451. autobyteus/rpc/server/sse_server_handler.py +0 -182
  452. autobyteus/rpc/server/stdio_server_handler.py +0 -151
  453. autobyteus/rpc/server_main.py +0 -198
  454. autobyteus/rpc/transport_type.py +0 -13
  455. autobyteus/tools/bash/__init__.py +0 -2
  456. autobyteus/tools/bash/bash_executor.py +0 -100
  457. autobyteus/tools/browser/__init__.py +0 -2
  458. autobyteus/tools/browser/session_aware/__init__.py +0 -0
  459. autobyteus/tools/browser/session_aware/browser_session_aware_navigate_to.py +0 -75
  460. autobyteus/tools/browser/session_aware/browser_session_aware_tool.py +0 -30
  461. autobyteus/tools/browser/session_aware/browser_session_aware_web_element_trigger.py +0 -154
  462. autobyteus/tools/browser/session_aware/browser_session_aware_webpage_reader.py +0 -89
  463. autobyteus/tools/browser/session_aware/browser_session_aware_webpage_screenshot_taker.py +0 -107
  464. autobyteus/tools/browser/session_aware/factory/__init__.py +0 -0
  465. autobyteus/tools/browser/session_aware/factory/browser_session_aware_web_element_trigger_factory.py +0 -14
  466. autobyteus/tools/browser/session_aware/factory/browser_session_aware_webpage_reader_factory.py +0 -26
  467. autobyteus/tools/browser/session_aware/factory/browser_session_aware_webpage_screenshot_taker_factory.py +0 -14
  468. autobyteus/tools/browser/session_aware/shared_browser_session.py +0 -11
  469. autobyteus/tools/browser/session_aware/shared_browser_session_manager.py +0 -25
  470. autobyteus/tools/browser/session_aware/web_element_action.py +0 -20
  471. autobyteus/tools/browser/standalone/__init__.py +0 -6
  472. autobyteus/tools/browser/standalone/factory/__init__.py +0 -0
  473. autobyteus/tools/browser/standalone/factory/webpage_reader_factory.py +0 -25
  474. autobyteus/tools/browser/standalone/factory/webpage_screenshot_taker_factory.py +0 -14
  475. autobyteus/tools/browser/standalone/navigate_to.py +0 -80
  476. autobyteus/tools/browser/standalone/web_page_pdf_generator.py +0 -97
  477. autobyteus/tools/browser/standalone/webpage_image_downloader.py +0 -165
  478. autobyteus/tools/browser/standalone/webpage_reader.py +0 -101
  479. autobyteus/tools/browser/standalone/webpage_screenshot_taker.py +0 -101
  480. autobyteus/tools/file/file_editor.py +0 -200
  481. autobyteus/tools/google_search.py +0 -149
  482. autobyteus/tools/timer.py +0 -171
  483. autobyteus/tools/usage/parsers/__init__.py +0 -22
  484. autobyteus/tools/usage/parsers/_json_extractor.py +0 -99
  485. autobyteus/tools/usage/parsers/_string_decoders.py +0 -18
  486. autobyteus/tools/usage/parsers/anthropic_xml_tool_usage_parser.py +0 -10
  487. autobyteus/tools/usage/parsers/base_parser.py +0 -41
  488. autobyteus/tools/usage/parsers/default_json_tool_usage_parser.py +0 -83
  489. autobyteus/tools/usage/parsers/default_xml_tool_usage_parser.py +0 -316
  490. autobyteus/tools/usage/parsers/exceptions.py +0 -13
  491. autobyteus/tools/usage/parsers/gemini_json_tool_usage_parser.py +0 -77
  492. autobyteus/tools/usage/parsers/openai_json_tool_usage_parser.py +0 -149
  493. autobyteus/tools/usage/parsers/provider_aware_tool_usage_parser.py +0 -59
  494. autobyteus/tools/usage/registries/tool_usage_parser_registry.py +0 -62
  495. autobyteus/workflow/phases/__init__.py +0 -11
  496. autobyteus/workflow/phases/workflow_operational_phase.py +0 -19
  497. autobyteus/workflow/phases/workflow_phase_manager.py +0 -48
  498. autobyteus-1.2.0.dist-info/METADATA +0 -205
  499. autobyteus-1.2.0.dist-info/RECORD +0 -496
  500. examples/__init__.py +0 -1
  501. examples/agent_team/__init__.py +0 -1
  502. examples/discover_phase_transitions.py +0 -104
  503. examples/run_browser_agent.py +0 -262
  504. examples/run_google_slides_agent.py +0 -287
  505. examples/run_mcp_browser_client.py +0 -174
  506. examples/run_mcp_google_slides_client.py +0 -270
  507. examples/run_mcp_list_tools.py +0 -189
  508. examples/run_poem_writer.py +0 -284
  509. examples/run_sqlite_agent.py +0 -295
  510. /autobyteus/{person → skills}/__init__.py +0 -0
  511. /autobyteus/{person/examples → tools/skill}/__init__.py +0 -0
  512. {autobyteus-1.2.0.dist-info → autobyteus-1.2.3.dist-info}/licenses/LICENSE +0 -0
@@ -1,496 +0,0 @@
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/processor_option.py,sha256=kQhrp2AfwTWMVYPwq0Dg_vvlPDGBdcmO12IecCw4rEI,472
7
- autobyteus/agent/remote_agent.py,sha256=DPhAWobptj82HZaACbtLkXQBYIotgr3yZ6u4D9TJmeE,14458
8
- autobyteus/agent/sender_type.py,sha256=kCtm9BnJoXv3Ab6wBOToFliqGHQy9HEkIhP0GsXhyZI,641
9
- autobyteus/agent/tool_invocation.py,sha256=oEtzk5g2T2mRLatebkSYcUbyz1JwF2ybBxd92yTKb28,3217
10
- autobyteus/agent/bootstrap_steps/__init__.py,sha256=k3_J4MXu7PaTuUXK-D2Uax8kh4BnSNm22sDlQw6GFA4,906
11
- autobyteus/agent/bootstrap_steps/agent_bootstrapper.py,sha256=tPxD4yQ_i3-rl9XOGaKrLMdpymBqrzHkkkzRW0xhPBw,4336
12
- autobyteus/agent/bootstrap_steps/agent_runtime_queue_initialization_step.py,sha256=wulFdVAwR4jTZtJgHwLYf07r76KKCKpwa1Cho2AqjSw,3265
13
- autobyteus/agent/bootstrap_steps/base_bootstrap_step.py,sha256=8XaGHJva2Fo4T3fACK36FbEcrblj105oVhffYFEQO1A,1349
14
- autobyteus/agent/bootstrap_steps/mcp_server_prewarming_step.py,sha256=M_OnynyLRmyQsfEeGQ8aH-NIhbBgmXhEBRHopvkNXJc,3432
15
- autobyteus/agent/bootstrap_steps/system_prompt_processing_step.py,sha256=C95rbKikJtBD0LdVqSYECJp6Xrtm2impAvOGKPQB-d8,5955
16
- autobyteus/agent/bootstrap_steps/workspace_context_initialization_step.py,sha256=FMF9fhD6Wgas4TpQbSwKiL43OZBmwh_cAA3G_5jRJhM,2112
17
- autobyteus/agent/context/__init__.py,sha256=1an2L4sKJ1tYbJKAhCLSw-oYzt5_lmUwh1SYClA5c3M,447
18
- autobyteus/agent/context/agent_config.py,sha256=q04ohaBP8Wq2V0nK96YngFSLWCX7R02aAYfbIMRzAJc,6726
19
- autobyteus/agent/context/agent_context.py,sha256=3Vd1c4EF6JY7rOKar7TQSXNNSNnpB-hYuhGqVQdi52g,5726
20
- autobyteus/agent/context/agent_context_registry.py,sha256=GqwKn0EKKTRv6Vwwrb5kMRrwD9uH5NCh_Nvtmw82QTo,2748
21
- autobyteus/agent/context/agent_runtime_state.py,sha256=H4b3gGJkPW7DUgtFrnRcnp8yIg1HkzzHx5U5HQ6ddJ4,5523
22
- autobyteus/agent/events/__init__.py,sha256=8AL83PBRLkEptTzPznn_XpGXq2-S56Yxx3WarNcsc3U,1507
23
- autobyteus/agent/events/agent_events.py,sha256=plrBY3Cr_nUhrwvkpED_2qyPq2Slc0ciiupsWdPvmwo,3821
24
- autobyteus/agent/events/agent_input_event_queue_manager.py,sha256=VfynrdVSPkKEH94yg9p1WBOoV52JQX8MRJhJ-GU7fcY,10461
25
- autobyteus/agent/events/notifiers.py,sha256=--U1DMKwSdOyV0wWuWqzxykG6wgq0la6VHiVx62Twcs,7771
26
- autobyteus/agent/events/worker_event_dispatcher.py,sha256=wE63Qq4gw0JhkxvpuvbxUJHhbjzKSfhinjuF6epfR04,6165
27
- autobyteus/agent/factory/__init__.py,sha256=4_PxMM-S_BRuYoQBHIffY6bXpBdEv-zFyuB6YaK93Yw,204
28
- autobyteus/agent/factory/agent_factory.py,sha256=8vrsGTvZi0XIVZxpB3CHiiSLIv9Rdar9SaQ8Y5v5gLo,6673
29
- autobyteus/agent/handlers/__init__.py,sha256=UFIEqdaET3zTYnHJAJpjiSVS9euWqQuaVMlVTN6dyAY,1510
30
- autobyteus/agent/handlers/approved_tool_invocation_event_handler.py,sha256=ND9XzSXIQOaj16AOs37gaPGGSgU1BXRK7CrWK_-wL8Y,7857
31
- autobyteus/agent/handlers/base_event_handler.py,sha256=G2vtFJT_vyObWTgrgwIgRwOssBQ-6A3gxHtc7S4SEuQ,1264
32
- autobyteus/agent/handlers/event_handler_registry.py,sha256=95BCsKtxKFFSsliSJOCb6nw10TMbiRK2qM366DDuZKM,3474
33
- autobyteus/agent/handlers/generic_event_handler.py,sha256=759BrDJI-sesY74YN3CX3OfTM44vLGyj6Sg1gd8eJ_w,1888
34
- autobyteus/agent/handlers/inter_agent_message_event_handler.py,sha256=K6i-Ivp14IWPRmSc6Cek9LNC2i5PBK6S1ApYpgFg6rQ,3507
35
- autobyteus/agent/handlers/lifecycle_event_logger.py,sha256=-j5GhlCPauPwJMUOMUL53__wweZTsamhYXNbvQklnoY,2656
36
- autobyteus/agent/handlers/llm_complete_response_received_event_handler.py,sha256=75X_7Ge4TwWz32aZHi9PjWMWJZ87Fo2Mq2U-z06-6Hw,7959
37
- autobyteus/agent/handlers/llm_user_message_ready_event_handler.py,sha256=4WgDXUY4rmjpP44X2THKMAt2NpAZ5GukPqVNmLt6XJM,9064
38
- autobyteus/agent/handlers/tool_execution_approval_event_handler.py,sha256=Tda_LrlIPbEwVzf1I6u4Vb9sPmAbGQRqT_2-Q9ukLhw,4489
39
- autobyteus/agent/handlers/tool_invocation_request_event_handler.py,sha256=AjNGQgRCQkjXvYThd_AaPj0Lzh1adEkhYJO83alxVAY,10957
40
- autobyteus/agent/handlers/tool_result_event_handler.py,sha256=JJJVcmg6g12molgNfMmbypjaT1s8Bu74Af2hEmqrT4U,10699
41
- autobyteus/agent/handlers/user_input_message_event_handler.py,sha256=_9H69xZNv2HR0MnIbcZ7k64NJmKUxe-Old_rI16ZhQE,5585
42
- autobyteus/agent/hooks/__init__.py,sha256=a1do0Ribb2Hpf9t0Xqxhf3Ls7R6EQuWJtfTGQK7VjUM,495
43
- autobyteus/agent/hooks/base_phase_hook.py,sha256=H5wDej9QOw9gJmy63tWB6mapNSdy6NP0w5dduP-YohI,2540
44
- autobyteus/agent/hooks/hook_definition.py,sha256=4aA4iZnxMnw9n6sGThD-kCt3JPQSjPQDCd5D7Q7uzQs,1273
45
- autobyteus/agent/hooks/hook_meta.py,sha256=QHqEDug46EgDHrZYyacdXkFhnE39Zq2oPbgBgB27E6I,1590
46
- autobyteus/agent/hooks/hook_registry.py,sha256=1lXHqIN6J7jfVXjFv8i7nuGQbGj5HEXRCTAtc5MrSIA,4103
47
- autobyteus/agent/input_processor/__init__.py,sha256=uyxNlVWQXkHshNFp-9MkjRjMK0f7Ve0Mjx_d-q8C8Ic,330
48
- autobyteus/agent/input_processor/base_user_input_processor.py,sha256=7y11eGo4gT25nt1F-c3cNqkyBQwq1sCOkDkQ5SPhg2A,2650
49
- autobyteus/agent/input_processor/processor_definition.py,sha256=ISRHvjbBhlG2DYdgSK4hN3i8w1DJkgPOvCDY06TuslQ,2101
50
- autobyteus/agent/input_processor/processor_meta.py,sha256=Ns_VcPbK4-xLlpbdFIC_xWfgoXDHVduVTNN7EUCUPgU,2241
51
- autobyteus/agent/input_processor/processor_registry.py,sha256=GMTw-XAeHvNaHcWEOpSQ9mCDeb4iT94slQa-pNH44M0,4651
52
- autobyteus/agent/llm_response_processor/__init__.py,sha256=IeN_Bd0t46V3NYrviWzrLiM6IJBjhpf3lxX-ZQOfzUU,617
53
- autobyteus/agent/llm_response_processor/base_processor.py,sha256=7NcvEwc-HXZD7otv9hzSvFseuZ7xOviZjtTTHGFQeuI,2846
54
- autobyteus/agent/llm_response_processor/processor_definition.py,sha256=AMLmiL8dMlTpmBKmQrqrfNTfwJLyL6kLHYGqJ-Ly8bE,1464
55
- autobyteus/agent/llm_response_processor/processor_meta.py,sha256=RC32R5SVTSpBEOdexVh_SOTIydv0_ElWGP7PsXB-q_Q,1813
56
- autobyteus/agent/llm_response_processor/processor_registry.py,sha256=j9IK0ZLeXxOaX9L3YtmprwYNgWHqtMt_lEOZqgP675k,4536
57
- autobyteus/agent/llm_response_processor/provider_aware_tool_usage_processor.py,sha256=nuFFYZa7qsqalXBPYhyQ1SuFtEXxLTjLvBi6-0jtRus,4458
58
- autobyteus/agent/message/__init__.py,sha256=vIgKdHwCaRsaJNdi9jmGnenUZjrOhHq8hO0eZsi48hE,759
59
- autobyteus/agent/message/agent_input_user_message.py,sha256=ntjK0kP3kw2o4NjQ2o2XuCv_rwqs3tjJD1s_fBHg6aE,4794
60
- autobyteus/agent/message/context_file.py,sha256=161HOu_m7923GU9kI_EDEWtVckb2nuTyqDunBq8H2kg,3311
61
- autobyteus/agent/message/context_file_type.py,sha256=PXGBxFKRa2ocFS09-UagPzrYAHpMi_ozS0DbQmZokZw,3192
62
- autobyteus/agent/message/inter_agent_message.py,sha256=302oAt5PdrAqS1Cz80o7G6Kk3Ur1D9JNxze7Q0NI3dM,2436
63
- autobyteus/agent/message/inter_agent_message_type.py,sha256=l-j0WB4F6yRXSSnHRKzNfmwnL4wX3usPN0JIrQthyEA,1130
64
- autobyteus/agent/message/multimodal_message_builder.py,sha256=rPyfdqphWKMOeV5GImveR3__8yuDXIMbHx9cAypZGLU,2017
65
- autobyteus/agent/message/send_message_to.py,sha256=FprnEUQO2RSYIU8MydoPVbT3tapHgWbr97-J9Itw1dQ,5879
66
- autobyteus/agent/phases/__init__.py,sha256=OC0T294mOGUk6pudSVLslHtfziBJEYd_VoA-LgWo9oE,558
67
- autobyteus/agent/phases/discover.py,sha256=YuW0I8PyGysiyAf3jfR-cVesgSH5zi78uYZKqnM6dGU,1993
68
- autobyteus/agent/phases/manager.py,sha256=-K3trAbDyXweGUxtgKPuUjQh7Cr2oFswR9KwhisT128,15604
69
- autobyteus/agent/phases/phase_enum.py,sha256=Ubd_fraZxYRJUM7DdeLEjL0Vvm1RzBcCuOUgVKHBELE,2882
70
- autobyteus/agent/phases/transition_decorator.py,sha256=jiby_dzeytKGQFjnTQYQ1gziYh7F-2RnShajpHWWhFQ,1553
71
- autobyteus/agent/phases/transition_info.py,sha256=wqA_ANUbDzjsgESUtgH4svVczPA6-LUdAtZm1MonoFA,1251
72
- autobyteus/agent/runtime/__init__.py,sha256=VQLu_-t86WkvLKEnGmbPksP53CrqgchqY8eB-DS-SsI,457
73
- autobyteus/agent/runtime/agent_runtime.py,sha256=Ibsl9o_Pnj_Vatd-eO0s_mzoantbIEo5M9zXw4vwn_I,6903
74
- autobyteus/agent/runtime/agent_thread_pool_manager.py,sha256=-dyo3LQ4Mi1upUyyp-8EmQuRXWamIcESc1-WCVSS0dM,3607
75
- autobyteus/agent/runtime/agent_worker.py,sha256=xGHjMMgDjTykIm5yBfIc1x0ylCGh8UQ1ITmoWyCKyZQ,11264
76
- autobyteus/agent/shutdown_steps/__init__.py,sha256=583P5F3eBdqkmwBlnqua0PBZjHpnsfNEZgGxFw3x-4o,574
77
- autobyteus/agent/shutdown_steps/agent_shutdown_orchestrator.py,sha256=5y8Ynm0zDbV00NkiJ4XNoM9U7T0vEp5E_fkUt4pTAVI,2475
78
- autobyteus/agent/shutdown_steps/base_shutdown_step.py,sha256=YqHMD4opVvjCHHZdD38SxxJLhfAHL5523DNymUNHiD4,1083
79
- autobyteus/agent/shutdown_steps/llm_instance_cleanup_step.py,sha256=f0zfOLNA_Ksp4Q0kBvikNlvoTXCnN-erQzSPMtmK44c,1863
80
- autobyteus/agent/shutdown_steps/mcp_server_cleanup_step.py,sha256=_Ra9Fsf2KnPJAoGK0YdMH1wd0GdMonc9-MYY1GQookQ,1274
81
- autobyteus/agent/streaming/__init__.py,sha256=ul7QUIjv5q1nYwzrU1nsVBsKZwpthdmUGsP3UPWmJ34,447
82
- autobyteus/agent/streaming/agent_event_stream.py,sha256=lwpWy28flvtvERjycFpsdDIiInhZzDP73sG-LTBN8uI,10113
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
86
- autobyteus/agent/system_prompt_processor/__init__.py,sha256=5CuF47Y6DKwOWNBQQ-WRQpIxH6Iww-1V0KPok3GCGq0,446
87
- autobyteus/agent/system_prompt_processor/base_processor.py,sha256=1j-__ZFVKEfWgy7MsaxCUJHR9rkqpbZehnacE-WJ2UU,2170
88
- autobyteus/agent/system_prompt_processor/processor_definition.py,sha256=r2ry7igUxaVrpAVmzAtR-O1ssFIhQEry-2PBs6YIZog,1767
89
- autobyteus/agent/system_prompt_processor/processor_meta.py,sha256=aQLo0WE58HVQf4lkDxej2Lz4XFLWddUd24ZPWscnsyo,2356
90
- autobyteus/agent/system_prompt_processor/processor_registry.py,sha256=ErRcf5LoxmvqNe3jATCFZyaQdtEuLEErIyfsuzwJ2sA,4639
91
- autobyteus/agent/system_prompt_processor/tool_manifest_injector_processor.py,sha256=z3y17ELrjH1lo9-lc_Ptna4E1Y0SU5LXbsiemwkmyzA,4736
92
- autobyteus/agent/tool_execution_result_processor/__init__.py,sha256=GKiNSMvVvwuBce0z1wEUaf48NOzOqugzvB5Utxt8w7w,286
93
- autobyteus/agent/tool_execution_result_processor/base_processor.py,sha256=ivbHPOk-Da0M1FbGdtnN_OWZoRBTR9GYTdFNDLW9wN0,1999
94
- autobyteus/agent/tool_execution_result_processor/processor_definition.py,sha256=Zr5a-DwKNdYuSO-UAD2R6Rg686YQAin5FhA6pWnxUVQ,1555
95
- autobyteus/agent/tool_execution_result_processor/processor_meta.py,sha256=uUSvKeVVg6lq8aTCTvkKQjWlEOB2l0cn4FheC4s2hp8,1772
96
- autobyteus/agent/tool_execution_result_processor/processor_registry.py,sha256=klCuVvgPIERqhPlIjvCrPnPGTNAHKsp8wS6Zw5jOk_o,3545
97
- autobyteus/agent/utils/__init__.py,sha256=vau-Zjww0qxPyo9SetL7aLUEw-99PX8Nv8TEDngUlKs,210
98
- autobyteus/agent/utils/wait_for_idle.py,sha256=S0jQ9-GyfXymTkv_VTG9tVmMQXSsLAU4hsfuAxspTp4,2464
99
- autobyteus/agent/workspace/__init__.py,sha256=7a16HpWxic9zxxsmZeICnBGHK_Z2K9yJUv4z9YELKfw,277
100
- autobyteus/agent/workspace/base_workspace.py,sha256=_-e88pRYrqpSbOBRj2V-zCubzmwiluI9KFXG2hadNJA,3569
101
- autobyteus/agent/workspace/workspace_config.py,sha256=UfDpOkCH5B7ddt227zoQdmq8bCvI0wTL9vPAB6tOH24,5571
102
- autobyteus/agent/workspace/workspace_definition.py,sha256=O8xKLkilE-C9D8DJ56ymfkTd4-5PtSD5pmm5rMocjlo,1476
103
- autobyteus/agent/workspace/workspace_meta.py,sha256=xuw1-lYQiK5YyyDDc_5uT3uOGL0FfwLC8zCQiSyyQro,1680
104
- autobyteus/agent/workspace/workspace_registry.py,sha256=A_wADwvZOm1XutBgkn_-FBkqb4tS1fRtALrKe2XRDhw,3182
105
- autobyteus/agent_team/__init__.py,sha256=JzL7W4KLKQdFpV3WLAZJp0dM5DQWgD3xAqLr-iRoEas,53
106
- autobyteus/agent_team/agent_team.py,sha256=M3GNiBgCTiYbbaGB4VquRHhPoLN8D9Hladv6hLJ_IrA,3722
107
- autobyteus/agent_team/agent_team_builder.py,sha256=E4zDq9ZozHVwcm_ZXZQY0F5GcfXI9sMVrd0CL5RdQj0,9275
108
- autobyteus/agent_team/base_agent_team.py,sha256=AtTCt0upZjbV5Jj-2wFI54lzUsYHkstErttIZXQOJL0,3199
109
- autobyteus/agent_team/exceptions.py,sha256=24kOHkJoyW1AKF7KQPuy8HIEpqzcYm3N_kl7W5CluSc,389
110
- autobyteus/agent_team/bootstrap_steps/__init__.py,sha256=Gw7ohC8lTB1h2IMKZkxn2Sp7eEjmr_BC0kwpIjn-xKg,1398
111
- autobyteus/agent_team/bootstrap_steps/agent_configuration_preparation_step.py,sha256=eWXnqsJWwFTCkgr-yjoGszldNH1PWs9U4OkNkFafb-A,4471
112
- autobyteus/agent_team/bootstrap_steps/agent_team_bootstrapper.py,sha256=gwrG-iRr4-fw5gMnw69V39s7eLzIsIMY-LGDKyzHBpE,3093
113
- autobyteus/agent_team/bootstrap_steps/agent_team_runtime_queue_initialization_step.py,sha256=YWg297DapsF_6cjuu8DFooBWTiOvU-N-RxK1MGPemwY,1370
114
- autobyteus/agent_team/bootstrap_steps/base_agent_team_bootstrap_step.py,sha256=gRkmv8XwghAbWAS-jMKgCpaky0VPGyWi-QFR9uYDnBA,899
115
- autobyteus/agent_team/bootstrap_steps/coordinator_initialization_step.py,sha256=lWiGMC7XOsDEZ0W_qo2GFtuKDl7ZVKGOfS3ENsGp1Zw,1913
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
119
- autobyteus/agent_team/context/__init__.py,sha256=drrtG4m5HFNxJgtpucBmTA81TlbQaSgNXww38ChgwzE,667
120
- autobyteus/agent_team/context/agent_team_config.py,sha256=kA7BTHiPeM9iyN1Gg6acZP9WBhb7VHOvBnaCDA8juaY,1589
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
123
- autobyteus/agent_team/context/team_manager.py,sha256=m5_cjIwznicSHTq0HHquZrsn14DmvrTR94xzuaaC7NM,7287
124
- autobyteus/agent_team/context/team_node_config.py,sha256=V_Ng_YoOcAXkujW6Y1STg39YKzcmMrZvgAgBDORO38Y,3186
125
- autobyteus/agent_team/events/__init__.py,sha256=H2JMNRxeEmzIpbUFWmNR2IaIPXgcz301UIEQ8Yn0AuY,971
126
- autobyteus/agent_team/events/agent_team_event_dispatcher.py,sha256=DlNOsYxGxsR5iOjWyf8p1dAyUitnbUq0_RQtelCX06s,1738
127
- autobyteus/agent_team/events/agent_team_events.py,sha256=zql7P5-hpl2bkrY3HuQy5tHKHnDjs5XxjG06_KiD8Ys,1764
128
- autobyteus/agent_team/events/agent_team_input_event_queue_manager.py,sha256=ZMz9eudtXR8OXcWwPmJs9oN2r4Ycf4VdgR32Yaf0-S4,953
129
- autobyteus/agent_team/factory/__init__.py,sha256=52XlrxJp_1jb9VT9GS2IT0w4cI-ojlsQtGHm3unidCs,239
130
- autobyteus/agent_team/factory/agent_team_factory.py,sha256=fsm7kz7rLS26X6NCh6vhfKf6_Px2wceDG2Wkx--6QE8,4704
131
- autobyteus/agent_team/handlers/__init__.py,sha256=05n2SOnVOUWip4cZrpuN2q-q6AW2d2weribC9e99Gfg,1005
132
- autobyteus/agent_team/handlers/agent_team_event_handler_registry.py,sha256=vTyhRwK6nW_92U76tc3-6wD2Yj4hLGEFRR6uiV2k93Q,1233
133
- autobyteus/agent_team/handlers/base_agent_team_event_handler.py,sha256=C79gvVxSwE06D6qVJ1bnCxmT-lbAF4GrtiyIUFS0xOs,593
134
- autobyteus/agent_team/handlers/inter_agent_message_request_event_handler.py,sha256=OGHJ6WxdNjLfggZDO6P8rr6xyfzJyLwKjOnv9A1q3FU,3335
135
- autobyteus/agent_team/handlers/lifecycle_agent_team_event_handler.py,sha256=4-YR2GZkmJe_fZPYucvgpHEL-M5-XfBPDz8upvONeuI,1357
136
- autobyteus/agent_team/handlers/process_user_message_event_handler.py,sha256=ig7ij2i5xwRV1OtQ3tJBiC7TBFasyd4NxVjX2ca-HJE,2573
137
- autobyteus/agent_team/handlers/tool_approval_team_event_handler.py,sha256=PH6aTO_8KUtCHNKftiidN2yh-ln3d2S1A7rfCR4PXUY,2272
138
- autobyteus/agent_team/phases/__init__.py,sha256=qxOrh0O1iWoluRQCkKaiBISEqW7D7vleYlueEje4QYs,419
139
- autobyteus/agent_team/phases/agent_team_operational_phase.py,sha256=QsSNvCntqUIsJ0_f_7Tk-aMn5yVOo_W-CLWfvtAjQIU,675
140
- autobyteus/agent_team/phases/agent_team_phase_manager.py,sha256=3NiHiSTowNcCQowWBZMTXsZy3dOzLaAKAa90E7XDe9M,2365
141
- autobyteus/agent_team/runtime/__init__.py,sha256=6pQrzl2DXfnp3dn2fRSiMAfM3VSmKddJcYy5L1yWaW8,465
142
- autobyteus/agent_team/runtime/agent_team_runtime.py,sha256=m-YqgAUJx3kvfHtwC9zY3eWZmB0Snkjk0Emo84Cp44M,3909
143
- autobyteus/agent_team/runtime/agent_team_worker.py,sha256=Kha4l8Q7kxc3Kd3EWAC-e4yHYhUZwr05zHtcoqGL8ik,5595
144
- autobyteus/agent_team/shutdown_steps/__init__.py,sha256=wfAEB3_o3Imk6Y9rPBUascqP_3T4cFx4-BBp4zcsXX8,812
145
- autobyteus/agent_team/shutdown_steps/agent_team_shutdown_orchestrator.py,sha256=VNtKf3lmYRhO5mcsdfBKnrDhw3ucTB7yY8C8tO0Te1w,1561
146
- autobyteus/agent_team/shutdown_steps/agent_team_shutdown_step.py,sha256=iACb44vQVOka99NZnZdgnFdAsXHL08I5R6hsAUcgqyI,1845
147
- autobyteus/agent_team/shutdown_steps/base_agent_team_shutdown_step.py,sha256=CVzU4mMjU4FagEk_Q0ncENMCGzGSJ7I6YF_2YqJqsEc,651
148
- autobyteus/agent_team/shutdown_steps/bridge_cleanup_step.py,sha256=uEJt4RuNIt7WiO25Wnowtg_TqOgd9l_fja88bXXLzIo,1165
149
- autobyteus/agent_team/shutdown_steps/sub_team_shutdown_step.py,sha256=suPLoXXtPJx6FfXp_RH8Eev5d4Xd2iY_hMRM6wICcAo,1771
150
- autobyteus/agent_team/streaming/__init__.py,sha256=wE3dZJ8b73h979nKPietRQXmImwvNrb2oyFossdPF00,891
151
- autobyteus/agent_team/streaming/agent_event_bridge.py,sha256=hGJvLUK39-bBYxpq7pvpKs7Y68c07xtG4d4Ebp5GwtI,2130
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
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
157
- autobyteus/agent_team/streaming/team_event_bridge.py,sha256=C6VVJM4xJnOl37AY60qGT9k7VMVj63bkXOxYWICBgAs,2347
158
- autobyteus/agent_team/task_notification/__init__.py,sha256=USOq10z0IMfwIz2cNiq6_0qbvRqsLa4mvezWURiTMMo,531
159
- autobyteus/agent_team/task_notification/activation_policy.py,sha256=4RBIW5vKeENZHzhaMBAHHtkugKtpYxg-EhIbkkmosnM,2822
160
- autobyteus/agent_team/task_notification/system_event_driven_agent_task_notifier.py,sha256=wbBLYxFbHonT3Ipm1ZTDD2r8m6ni0rK4wJBnfVJaXww,4791
161
- autobyteus/agent_team/task_notification/task_activator.py,sha256=_7oijK61gupUCm_Z2oxQF2vojXmYlTuram8XvuJaT7Q,2728
162
- autobyteus/agent_team/task_notification/task_notification_mode.py,sha256=BbtFyrMgeGMKC4WKG3QgIVNy0m2wLH4H5YszVXOvrMI,846
163
- autobyteus/agent_team/utils/__init__.py,sha256=Sa5TBbhq9N41ONlMhoLlCrtyxSiDjoR2Zu5C21OAig0,218
164
- autobyteus/agent_team/utils/wait_for_idle.py,sha256=wrfo_t1T6DSXeHU-SWwsuxPJToNsr0Ol1TwqpoRxZ8I,1931
165
- autobyteus/cli/__init__.py,sha256=FpcugZofPrQzll16-OFcDypbven0J2mBPxNVgQ3eAxY,266
166
- autobyteus/cli/agent_cli.py,sha256=Ua6MnuVHmNgelnZQ8B8ZMFk2nyN-VNPijNzyucVVPis,4818
167
- autobyteus/cli/cli_display.py,sha256=F0mBDnaqmQJCfhqO-ccVxd_UGklCRuNoGZ4aa8ApMKs,9493
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
171
- autobyteus/cli/agent_team_tui/widgets/__init__.py,sha256=gWVULR5J-2Ra3m2hvUhO1jF1IX9uqk0bQhWL0t25Z4E,173
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
174
- autobyteus/cli/agent_team_tui/widgets/logo.py,sha256=okzS4mG8Z1-dZDIGQ5F8XP9y6WwwRDVHmMmPz3oN9TM,780
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
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
179
- autobyteus/cli/workflow_tui/__init__.py,sha256=xbWMXwK_a-IX-dM3m1TJkm9SHT--bqiHVgkS5XCA6vM,127
180
- autobyteus/cli/workflow_tui/app.py,sha256=DZPHPIrjz5-YBxwybDylokemtzqO9Ac49hdhkBdXCwQ,9681
181
- autobyteus/cli/workflow_tui/state.py,sha256=JA3MOGpV25yin6dMO8AWRLSOgCEcd5oKtfNROU8RavM,9477
182
- autobyteus/cli/workflow_tui/widgets/__init__.py,sha256=CsygQhYM_MoTURsJ9PpkZi_yXy-9g7Z8WQdNZ3BfD9E,169
183
- autobyteus/cli/workflow_tui/widgets/agent_list_sidebar.py,sha256=qL3jZGsQuc-76fMESpsixD32dwOt5RH0Z0mS0QNECps,6626
184
- autobyteus/cli/workflow_tui/widgets/focus_pane.py,sha256=ynqALGeViHqF2ZadidzStf1jnixdyqRAEw7A3YrQTbg,16756
185
- autobyteus/cli/workflow_tui/widgets/logo.py,sha256=TvfxdBvDXknf7-2vD3xkHuZkiymhMDFaJaCLl2y7msI,906
186
- autobyteus/cli/workflow_tui/widgets/renderables.py,sha256=hkRTjwz5DPSqaO8_8Zuvt1XxxAePZ9vGp582b3UMF18,3030
187
- autobyteus/cli/workflow_tui/widgets/shared.py,sha256=vXUrJ0vU7gMLzi7j8mAdhSMgPMno1LanhHxkeyMOQtA,1732
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
193
- autobyteus/events/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
194
- autobyteus/events/event_emitter.py,sha256=WKKwISFo2yDx0OpLjGFtXEl3DVV1siB0lXdndIAHhBg,2522
195
- autobyteus/events/event_manager.py,sha256=c5RMlCtKzkHgQZkePBvqxPAxxOu-NapUrl8c2oRDkT8,5841
196
- autobyteus/events/event_types.py,sha256=5CEMe2VmZ1L5ksKzMPqLRgPjXhxF31BD3ehrGJWfRJQ,3016
197
- autobyteus/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
198
- autobyteus/llm/autobyteus_provider.py,sha256=TuEXpiTkCN6V-hBc4ss8vR-4lA83VEmdlFDDmcooCzw,8387
199
- autobyteus/llm/base_llm.py,sha256=OCiInGSNApZ-bcrdEMt3siOFwNkB9UwFGfqVNYImzEo,8036
200
- autobyteus/llm/llm_factory.py,sha256=9UyZ9KqWNH-fVRaicIabicbxMHlQdWM59nrXyy8Y4hc,20081
201
- autobyteus/llm/lmstudio_provider.py,sha256=RkM_drORSZ2zcSxN2Th5Upiva2oesIPw-6viqe2w9dY,4315
202
- autobyteus/llm/models.py,sha256=ownBklNZrtJ_HWeMexa2T3s9TjWG0xggOt7wYrRs2l4,6963
203
- autobyteus/llm/ollama_provider.py,sha256=CfcgC-DEWULjTwJiWazB5IXjErEyy1zZ41glrWhpj0g,4427
204
- autobyteus/llm/ollama_provider_resolver.py,sha256=tH7kg2LbVjVVi3Y7veKXY0k2yEIqqOpfPUBAQvDwCYE,1889
205
- autobyteus/llm/providers.py,sha256=q9olzK1SRlsgJVbkwQH9jqVDCu3wK1-Ta6aNm4Zg8pM,392
206
- autobyteus/llm/runtimes.py,sha256=MzFNo3R1U3uWYAkuk-uuaba01Y0dDKQgVY_ElH_0dxU,315
207
- autobyteus/llm/user_message.py,sha256=2hmICY_W7lwjYco3qT4zY1ELsBkpyxR2CjOgh33NMq0,3546
208
- autobyteus/llm/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
209
- autobyteus/llm/api/autobyteus_llm.py,sha256=xwby9QELHFgrg1GoDSd66huY7kJ280dbxSdT2OZAGyQ,4919
210
- autobyteus/llm/api/bedrock_llm.py,sha256=8B7dNSkQPRfRi8GAPEB31A2pZLZfTIQUtxXjQ_E4rAE,3768
211
- autobyteus/llm/api/claude_llm.py,sha256=quPfUmg3oASRKVer01_tIcBxrqNP-xIenCU-tWbfTlU,5286
212
- autobyteus/llm/api/deepseek_llm.py,sha256=TEWtXAqM4OuKH1etj5kknzkbPsRGvEpWzTq_CoAU6po,894
213
- autobyteus/llm/api/gemini_llm.py,sha256=273psG-IlDR4dAbzTjUDmcjbrRC8Fhc6BCHn19sVKRQ,5540
214
- autobyteus/llm/api/grok_llm.py,sha256=oZIkJrRhbvcKSrho5hLWqqRxO5SUfbwutKW1g-mPQC0,875
215
- autobyteus/llm/api/groq_llm.py,sha256=btkyeVPjke-fWxuC42r7p8DXYuAVJy3gfYpnTLmZoHU,3485
216
- autobyteus/llm/api/kimi_llm.py,sha256=oUgmP_D0ppr0zKhgRVyjxRMP8cEMGXB2DFUgXYqRlCg,873
217
- autobyteus/llm/api/lmstudio_llm.py,sha256=7A7BokUKj-kioTaSuEw_MKofd7d5BnmxK6pyTFGOgSk,1281
218
- autobyteus/llm/api/mistral_llm.py,sha256=ijPrtCir2vW3EPxsLIdOCjB_56_r7yf28ZKMc7GDxF8,7036
219
- autobyteus/llm/api/nvidia_llm.py,sha256=zHRuhJjS4KedRAb1hpb9jxO3Pnw0Eu8Dc9mKrotMsOE,3990
220
- autobyteus/llm/api/ollama_llm.py,sha256=PmrgxOS-RU59DxUAw4aAvKeJHghpWcb3PKgsZk-wZTo,6971
221
- autobyteus/llm/api/openai_compatible_llm.py,sha256=TFEem7RLpqtB9-ExHYBDk9dC0iJe2fAeLLJRE6sGciM,9108
222
- autobyteus/llm/api/openai_llm.py,sha256=414fWDFvTm7IkG3STfYCWT4mz1FQwEGnD4N5MpTyf6M,905
223
- autobyteus/llm/api/qwen_llm.py,sha256=wN4fHEfjpuece0xd19elwknBeRKJnhj--btNQl3_e_o,877
224
- autobyteus/llm/api/zhipu_llm.py,sha256=RrwWaSTvmQ1dF-fMK0QAxrlbB4PmLlcd9_1zXL67D4I,892
225
- autobyteus/llm/extensions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
226
- autobyteus/llm/extensions/base_extension.py,sha256=ZqwmwNKBURFseAeRec53tpC4v1mnRTubdifk575eqlo,1273
227
- autobyteus/llm/extensions/extension_registry.py,sha256=b4b3U5cQB9kZpJpqmT_e1lviLzjGQBsp7gJuYppjpjU,1254
228
- autobyteus/llm/extensions/token_usage_tracking_extension.py,sha256=ZBdMoRXwura4v49suQiedDk-wQDKqxdW2tXZmxBQYu4,3793
229
- autobyteus/llm/token_counter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
230
- autobyteus/llm/token_counter/base_token_counter.py,sha256=NSY6rdSmBNn9MEAY4vSdnuB2BRRRwoP3rDp9ulBTAWA,2019
231
- autobyteus/llm/token_counter/claude_token_counter.py,sha256=-gIB8uafY3fVy5Fefk0NTVH2NAFy0gfT8znHlpLQSwo,2620
232
- autobyteus/llm/token_counter/deepseek_token_counter.py,sha256=YWCng71H6h5ZQX0DrjqfMua-SeCH1ATizWLvxxr591s,859
233
- autobyteus/llm/token_counter/kimi_token_counter.py,sha256=KuzgcbSWiqybCKHaukd-n917zEgUFebGXMAxlkZxue8,854
234
- autobyteus/llm/token_counter/mistral_token_counter.py,sha256=YAUPqksnonTQRd1C7NjjFUPsjEDq_AKWxTc5GNTVGqU,4760
235
- autobyteus/llm/token_counter/openai_token_counter.py,sha256=hGpKSo52NjtLKU8ZMHr76243wglFkfM9-ycSXJW-cwE,2811
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
238
- autobyteus/llm/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
239
- autobyteus/llm/utils/llm_config.py,sha256=yzRlUmeyGkKvb-jfywGaR3tWGeQ2l6f8GZ8KdFzHNDk,9911
240
- autobyteus/llm/utils/media_payload_formatter.py,sha256=S-pZxIlGHuKzzrHbqv7SUx99BfYlZ7dVUGcUrGDShF0,3676
241
- autobyteus/llm/utils/messages.py,sha256=YH9diNwRu-vua72HDZJnwsfpDNK6i69Uw805nkjv0zY,1740
242
- autobyteus/llm/utils/rate_limiter.py,sha256=VxGw3AImu0V6BDRiL3ICsLQ8iMT3zszGrAeOKaazbn0,1295
243
- autobyteus/llm/utils/response_types.py,sha256=UWSDvxhaot2ad4c6NSM-A46J8ruGs1qMShWpYBczMB0,1004
244
- autobyteus/llm/utils/token_pricing_config.py,sha256=6oRkG6R-BrP54sTI5Btjpy4s2c7bSAP7uZpzXldxx3E,4509
245
- autobyteus/llm/utils/token_usage.py,sha256=C8YJH_-sYKJHVcE47hwwk-p0VTAFF0ezFGjSbc0mbzI,601
246
- autobyteus/llm/utils/token_usage_tracker.py,sha256=RC4zL5k343-wLm0jXc-rwAOMhpxs_1klnrh-xi2J7W8,4220
247
- autobyteus/multimedia/__init__.py,sha256=8sssScdnrek2-1-s7wStlOc37ZilLTf0cJzMqVzW4Zw,589
248
- autobyteus/multimedia/providers.py,sha256=odBXtoEXYtFULX_lnBR9rGEcWOAzMbUD0qF2Fr_Y1Nc,133
249
- autobyteus/multimedia/runtimes.py,sha256=mgmA06Ng7Gh6UW6YNi0O5CmwV6oDw3kX2qxLssUqG0o,180
250
- autobyteus/multimedia/audio/__init__.py,sha256=RsUo63rEz8_HLJ7RonaSrYkoDKwhBmHomeseTnBX-Hg,287
251
- autobyteus/multimedia/audio/audio_client_factory.py,sha256=ivR8iM3wYFGuz7PFnM-7dDgrJM8K9xUOwbOIj7tihpk,6382
252
- autobyteus/multimedia/audio/audio_model.py,sha256=tiFRspsfrlOifjPH7wJDNxT7Rl695RkjD5VLNiJvI0Q,4069
253
- autobyteus/multimedia/audio/autobyteus_audio_provider.py,sha256=p4vfp8orsKiYGtrtNYfXyJlP95b-FKWRxiACug0GfuI,4934
254
- autobyteus/multimedia/audio/base_audio_client.py,sha256=zl12JZrvDUmKEnNhEtdY7jXK0TYmil9rUgIkU_VWbL0,1498
255
- autobyteus/multimedia/audio/api/__init__.py,sha256=_LHCfFqfwvbr0qSTLlioTcnb_EnfZtY1usY6nHegr1k,168
256
- autobyteus/multimedia/audio/api/autobyteus_audio_client.py,sha256=KhhWCWSdbmYp3rVM3pASjWr4qZHD69Xi23hUZ1mLCgU,2641
257
- autobyteus/multimedia/audio/api/gemini_audio_client.py,sha256=Mg9c7_7am8iuBNQQv1To37H8mY1Vc1xx5ZKtEfp5Sig,6410
258
- autobyteus/multimedia/image/__init__.py,sha256=YWwPtRgbTtPoZBgAmjt87P-pTREOZEpJzDbKhD9jSRg,287
259
- autobyteus/multimedia/image/autobyteus_image_provider.py,sha256=mioCkUnp-ogNAt53lpdjijd5sxmvr6piCutiA3jWih0,5044
260
- autobyteus/multimedia/image/base_image_client.py,sha256=sDm2n8yol590tWkujYc_FDf2cuyBNP0t4voRz9vuGr4,2819
261
- autobyteus/multimedia/image/image_client_factory.py,sha256=oKNmQpIY_vMjsVDDQ_ZhrAzuJXBAmCmQv3b2IKryFzY,5636
262
- autobyteus/multimedia/image/image_model.py,sha256=BxkWiQr30Fp5o6mLYMYD_6XAnElZQCU5yYe-MBN52jk,4077
263
- autobyteus/multimedia/image/api/__init__.py,sha256=Vh_FC_6rxcPhJqFpAvgv3yBqHYVmxrzjyVSSrCM7rww,255
264
- autobyteus/multimedia/image/api/autobyteus_image_client.py,sha256=MYkd-w9AMjNEEGiCaDepbMty1b0cBhyOFF3P2ybv4jc,4184
265
- autobyteus/multimedia/image/api/gemini_image_client.py,sha256=OXYd9av43VjezuiaqSNehiA28EMlGlvGR2C4FC0tDes,6108
266
- autobyteus/multimedia/image/api/openai_image_client.py,sha256=eiC2hh3y7flLQPWQQiuaesaTR-PBa9UD96go41mFEt8,6240
267
- autobyteus/multimedia/utils/__init__.py,sha256=pH2c5CB2V-QXVl6SgL6N70KKH0VShByhZHS8m7L9TCg,298
268
- autobyteus/multimedia/utils/api_utils.py,sha256=dbrIQzRnoz66CwaZOIG4353h5ccbTEIvUPUSRfgIWOQ,613
269
- autobyteus/multimedia/utils/multimedia_config.py,sha256=1CU1G0LqURt6DOrcvj2UnPUQ0Q2Mh4vzeKJEGbHoIno,953
270
- autobyteus/multimedia/utils/response_types.py,sha256=aiyGwkH4K4NryOFDM4-X4M907ZVGKtvTKMJz6QEXKTA,359
271
- autobyteus/person/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
272
- autobyteus/person/person.py,sha256=hUBLaGu2_SiClhrXIEl6b9BTXbzyBimwX6Qc08iApTU,866
273
- autobyteus/person/role.py,sha256=U7gFBtYY6IlQ2Hr1bqxlPwfXb4ixOJT5WSz3cjSpybU,511
274
- autobyteus/person/examples/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
275
- autobyteus/person/examples/sample_persons.py,sha256=dANMjmH5IVUfBoLvWeo4d1Obms5x30MBSvFgJIBa78M,368
276
- autobyteus/person/examples/sample_roles.py,sha256=rQqUGTUj0dSqTlOciRjo5AYS53hCAKl4oifpGHsrScM,430
277
- autobyteus/prompt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
278
- autobyteus/prompt/prompt_builder.py,sha256=2hStweYFSIXN9kif86G8Fj7VdjsIVceJYiCNboauEGk,1886
279
- autobyteus/prompt/prompt_template.py,sha256=taNEAUNXLt0a3WP_bNqzeNgSIIM7rgubqBBYWHRR1Kw,1539
280
- autobyteus/rpc/__init__.py,sha256=c6aEkKg5EwvIBx8oR4Or2mvv5afk4vRoM3X2n7wUBi0,2429
281
- autobyteus/rpc/hosting.py,sha256=VEPmD-LYKwp6jdjg7NzweCFHJWMHj2EoKjjOhQ2IwZw,11297
282
- autobyteus/rpc/protocol.py,sha256=U2wgIcZ2UuaEDijsjMv1-9WaeuJy027W_hgRGOkN8TA,12653
283
- autobyteus/rpc/server_main.py,sha256=PTPwGXEEyq2ezBsPqTietFLyMdOBGLiCsPUOuUdVETc,9807
284
- autobyteus/rpc/transport_type.py,sha256=Su6QmHC6wo607C5ntomsk-miJ5CxJomzkrHqmSzUlLM,319
285
- autobyteus/rpc/client/__init__.py,sha256=PsWBpoVsVgQPA6FI9jbmkRJS4TxlXX76N75PYrODKIY,717
286
- autobyteus/rpc/client/abstract_client_connection.py,sha256=Glw9YLjThFFbaWuv0AIZJ6YFBnYFuVMCe01eAe76VvQ,4681
287
- autobyteus/rpc/client/client_connection_manager.py,sha256=Pbij-1BWibBMEymPdARVMCOlwEwDLyZ51kSF-BxeNrk,7181
288
- autobyteus/rpc/client/sse_client_connection.py,sha256=rTaL3NssFDAvc7aGF7-rVzGRUwJQ5uwF2vPFEoRpIJg,17683
289
- autobyteus/rpc/client/stdio_client_connection.py,sha256=iYZaEyrAGFUty9R6ejrW6q_t9KFLKfMD5jpgZwe3d8Y,14450
290
- autobyteus/rpc/config/__init__.py,sha256=N-AfTHyplx-vLZ-5jrTD7zcODFUt1CVuVTfsrxlMtkk,362
291
- autobyteus/rpc/config/agent_server_config.py,sha256=mJfs4AuPwBNHARWrA5luXWCE3Vby3AM11y5jwU9nFnQ,7612
292
- autobyteus/rpc/config/agent_server_registry.py,sha256=MNeJmV-5K5vljUHECCdPWorPF0r99li3eeT3ceG0hks,5749
293
- autobyteus/rpc/server/__init__.py,sha256=dRJ4LulIrcbmaFptxAG1UP1F5fi3nmpHO2IuXeD96J8,806
294
- autobyteus/rpc/server/agent_server_endpoint.py,sha256=LV2EGpL56ZjOSvnaJB7l8uQS_WvUlbvvpLztVIPFWcU,10409
295
- autobyteus/rpc/server/base_method_handler.py,sha256=6sKWucR1vUYeritjJPHIX_sCQOD2cSm_QZXDXp0G7kg,1381
296
- autobyteus/rpc/server/method_handlers.py,sha256=Zqrr1R3yu_hVD0qCOPpxXm4ujkvdds9wCCneIeT3gU8,14702
297
- autobyteus/rpc/server/sse_server_handler.py,sha256=3F1LNLw6fXcB08hmWOUhGZROYhpPdk8xwz2TakiR-2M,16273
298
- autobyteus/rpc/server/stdio_server_handler.py,sha256=pSAvVtxyo0Hytzld7WINeKHvGBqEjp0Bad-xkY2Rul4,7398
299
- autobyteus/task_management/__init__.py,sha256=d8OewIpNyrBOzmYFWF-g-dV2KsjCEawP7UdmOrAUykg,1604
300
- autobyteus/task_management/base_task_board.py,sha256=w-mvFFgzeQuY0_P9VNWTID7SX623-iivfM1w9R4JYfk,2363
301
- autobyteus/task_management/deliverable.py,sha256=cXuWD7UhP_oElhUzLGGdCwE8Fn4IokURuanz4zg35Ps,490
302
- autobyteus/task_management/events.py,sha256=bDxlCW5iKtILcEF4T34AM3anQqaso8G-yDuiaAUd8zg,824
303
- autobyteus/task_management/in_memory_task_board.py,sha256=YkeLAn7WF7VGREDSrknwRAYBGj2vOM0zN6QaHxthXTg,5522
304
- autobyteus/task_management/task.py,sha256=nsxvcYavYG7I-AQo4JBHV7n6iYtZJuBJ3cOJXF4vtEs,2598
305
- autobyteus/task_management/converters/__init__.py,sha256=pB1E9lO-HjY0VUFZahTbS23VUC_0uP2L1VdF3__FnGA,233
306
- autobyteus/task_management/converters/task_board_converter.py,sha256=lm6Rkn95akWeIGJ1hv3MKR9aNRy9BGsgpPais_9WM3Y,2105
307
- autobyteus/task_management/deliverables/__init__.py,sha256=RYBzSxKgzPnh8uE0TA2hA_SiI3dv3_dgvME0K-5AvvI,150
308
- autobyteus/task_management/deliverables/file_deliverable.py,sha256=tTdpgdAtXwkZ-US0n8ilEl6CYI8dRVXhGEdBBCTay8c,425
309
- autobyteus/task_management/schemas/__init__.py,sha256=MfNFFHjosjuMKFRwLNwlQFFOqZOzmggWvWdxbJA2pw8,514
310
- autobyteus/task_management/schemas/deliverable_schema.py,sha256=8_3F93gAeTfp6NeHqhIQLWFMpVwfiDuSOk0lnHnxxFU,603
311
- autobyteus/task_management/schemas/task_definition.py,sha256=ytFK2kikLnQjPgSj6X6OTethqljvTEnZ9U-tcxubZF8,2154
312
- autobyteus/task_management/schemas/task_status_report.py,sha256=FgF7NNtK-GMfQNK610wlrWuEsbh43x4eAVk-d2ccO5I,1884
313
- autobyteus/task_management/tools/__init__.py,sha256=OHzl_sSU-VTttwga9XKD97zMPlUdpzEQeCT1v-dqUqk,523
314
- autobyteus/task_management/tools/assign_task_to.py,sha256=F1FhhEAteBdofAsUMm-g8mXhmAWJflw0L306Y1_OdYs,6245
315
- autobyteus/task_management/tools/get_my_tasks.py,sha256=2SQ7UmckvlpTZWTh5JJkvfqt7n_718NmYIHk1g_rZeA,3312
316
- autobyteus/task_management/tools/get_task_board_status.py,sha256=eglF_IWVCQwJBJ4gmHhGXjnDGFHRWYz45G0UbRzsf7o,2748
317
- autobyteus/task_management/tools/publish_task.py,sha256=0A3gEhoiAYEECeWogMDXMSb9zsWc6W8NdV8Mz9T7Em4,3366
318
- autobyteus/task_management/tools/publish_tasks.py,sha256=WkNBt6H8IQNqhCOFvp4n1H4FonbwtgqHymcVNh0xF40,3157
319
- autobyteus/task_management/tools/update_task_status.py,sha256=OtlVhe3apLTcw_0yfAIdGEz9LdL4gIEmCy4knNmgcXA,5921
320
- autobyteus/tools/__init__.py,sha256=YHODhicVhk5YOv4h83BSiKgd_LmqinLN1CLRlD7rwwE,4439
321
- autobyteus/tools/base_tool.py,sha256=s7wf06jqxWBX3pu18cgooxN9RQ8u6W3GCV8I5Zwi8UA,8738
322
- autobyteus/tools/download_media_tool.py,sha256=K42E3l1e3tb7-ujGUKTSr-LwbAEcVCeZGPj5aGTq7n8,6549
323
- autobyteus/tools/functional_tool.py,sha256=FyifQc5D0CZIpF_5GsOV72kFMrTL_nlvVuFXHvexuKY,10393
324
- autobyteus/tools/google_search.py,sha256=2x86gNHk6PGe8fQRDLw099g1KG2MXLbOW_dBex4PJB4,5890
325
- autobyteus/tools/pydantic_schema_converter.py,sha256=qDVCXDBUWuXxYzO0d_taFum1gd1Av1VvHCvTzTtilF0,3402
326
- autobyteus/tools/timer.py,sha256=1PI3fhmwQDgRjmXBDX6NbsE3zqNaXeuitXX75IdVog0,7384
327
- autobyteus/tools/tool_category.py,sha256=pSf3C4kDc5ZGRYLmlGaU0th9YgdI-3TSS_yOdqbEzLU,740
328
- autobyteus/tools/tool_config.py,sha256=gnzGweccECNmCeufkzbskHeFOt3f0431DyAmMhqNVn4,3564
329
- autobyteus/tools/tool_meta.py,sha256=K_jKes6NSzgHte-iQVzPOHTscPOFM6Uh7M0tMMECbgI,4417
330
- autobyteus/tools/tool_origin.py,sha256=X1RqyDMWg2n7v0TciJHh5eiXgDDoU86BEQL3hx975jk,269
331
- autobyteus/tools/tool_state.py,sha256=CwmEu7GTdaE72QIsdsXQu0AmTxQTp5hMncFcY58PkGo,746
332
- autobyteus/tools/utils.py,sha256=PuHGlARmNx5HA2YFVF5XA36MoeAyFL6voK10S12AYS0,546
333
- autobyteus/tools/bash/__init__.py,sha256=X38g3OVhlr-6aLIYfcSyh8DzqHAEh8dSzfEH1NEH7aw,99
334
- autobyteus/tools/bash/bash_executor.py,sha256=3VqilVSuzomMpqv7WWy6ukqhLJyiBy1tALRcDql8h8w,4502
335
- autobyteus/tools/browser/__init__.py,sha256=fNt3qo9ykOIhfG7CmbelCabMydhPTWL-5timHXBa8ZI,91
336
- autobyteus/tools/browser/session_aware/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
337
- autobyteus/tools/browser/session_aware/browser_session_aware_navigate_to.py,sha256=zc-xFSc5VqreUfTWiDX2jvK9TuI5d2nB4zUY8MxydhM,3099
338
- autobyteus/tools/browser/session_aware/browser_session_aware_tool.py,sha256=Jw3z_KY0h-hcheav9cWmTPoKGth69DePfBs-SshxUAQ,1525
339
- autobyteus/tools/browser/session_aware/browser_session_aware_web_element_trigger.py,sha256=eowahKEabb63L_lgo1ZkO33fs2oikdKsaoeJ0hnvp14,7014
340
- autobyteus/tools/browser/session_aware/browser_session_aware_webpage_reader.py,sha256=zyey2FslycuZaIoK2KTnFzIY3ZM0hKVOWOyNsn0doX4,3996
341
- autobyteus/tools/browser/session_aware/browser_session_aware_webpage_screenshot_taker.py,sha256=fzN1IdlpQREBkCWxdIDRT-2xbg5Nx6VViM-Rirg5RII,4711
342
- autobyteus/tools/browser/session_aware/shared_browser_session.py,sha256=WjdkY6vrE96hluwHQS8U0K5z3XE8QMw2-fDRv5VFhXA,326
343
- autobyteus/tools/browser/session_aware/shared_browser_session_manager.py,sha256=OAFzqLHWWxtVnU-zYGYFPLwiVTzhW7C6UA3y70-lBQU,1103
344
- autobyteus/tools/browser/session_aware/web_element_action.py,sha256=jPWGmqoTB7Hpk6APQOWglLUaJmf5c_nR8Hh0AbT4fkM,477
345
- autobyteus/tools/browser/session_aware/factory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
346
- autobyteus/tools/browser/session_aware/factory/browser_session_aware_web_element_trigger_factory.py,sha256=PsRjQMScKF3ceMEEFvlfr20OQ-sKdbQ6YWRrQffZF80,687
347
- autobyteus/tools/browser/session_aware/factory/browser_session_aware_webpage_reader_factory.py,sha256=WmW9yU_KVjvDNSlxWPkdXljM9h4-zZRoZH7GP6sQndA,1335
348
- autobyteus/tools/browser/session_aware/factory/browser_session_aware_webpage_screenshot_taker_factory.py,sha256=uxv7cLtlXg9Vdl82_r1K-wEHKfXzrmngGwT8rd5u4JQ,717
349
- autobyteus/tools/browser/standalone/__init__.py,sha256=0J-_GM5vmp3iaHBDZXXRaj5gB3EGE0cRHJyJ3N-RDQg,324
350
- autobyteus/tools/browser/standalone/navigate_to.py,sha256=hiIpy4hhpfU5RQcyeqty2bnbCYietcPGC_Tx74PODws,3458
351
- autobyteus/tools/browser/standalone/web_page_pdf_generator.py,sha256=-Z9RFX1-2MH-XXhftIeUJJucxZdD5hwsvQ8zjc2FdQ8,4041
352
- autobyteus/tools/browser/standalone/webpage_image_downloader.py,sha256=1s6UbfG9Gu04L8piOUukjKHA6N2BdiZTT2xAA8i6jhs,7159
353
- autobyteus/tools/browser/standalone/webpage_reader.py,sha256=3zl4CfxieGXvwgxqDAZn-3Ka0GhWvdZMwEUdSRjVZnw,4254
354
- autobyteus/tools/browser/standalone/webpage_screenshot_taker.py,sha256=dlPaJLqnNSnRGGxBxzWnmNRJAmoCBoWwXETuZPi4-oA,4424
355
- autobyteus/tools/browser/standalone/factory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
356
- autobyteus/tools/browser/standalone/factory/webpage_reader_factory.py,sha256=R9PJPf7MF3cP8q8ffMKU5-ihPJWHJkVDYXZswZNdGS0,1131
357
- autobyteus/tools/browser/standalone/factory/webpage_screenshot_taker_factory.py,sha256=NMS2laBlZAJiXPPub4YRhz1pXtZkfAeMhfRcSAfqu4M,597
358
- autobyteus/tools/factory/__init__.py,sha256=EQXbTH6BcqK2SM3JEq2PkLwzZSczExv3KDvlhWHlsGQ,275
359
- autobyteus/tools/factory/tool_factory.py,sha256=-gUhcBwiQu1FQiR0nAKJp1aUZ2sXbcz-pIn4f4heFbE,1066
360
- autobyteus/tools/file/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
361
- autobyteus/tools/file/file_editor.py,sha256=VTJv4RscYjrh9u0uO_b0qGQArTHVoqeUkgJMOFZQ-70,8994
362
- autobyteus/tools/file/file_reader.py,sha256=U8xtPXDkm-UHqizzHpTgq56-QuDLxhz8WhjlGgsseBU,2557
363
- autobyteus/tools/file/file_writer.py,sha256=LQgd9arr3jLFEzpjv6WnTP9XhsD44wxBVphgznqf7O4,2681
364
- autobyteus/tools/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
365
- autobyteus/tools/handlers/shell_handler.py,sha256=ClTXqFR45iyD0gcoOPpKRX5p6g_6BI4a5JOLuKuQOIA,1065
366
- autobyteus/tools/mcp/__init__.py,sha256=gwT34UgJe2rU5y4bYNOLI-PyAmRQTMWKz_WC4f2LcyE,1553
367
- autobyteus/tools/mcp/config_service.py,sha256=7OoqZGVxBob4IeeBjChFCpwyI9IJIxlOQDh-OjCffrY,11466
368
- autobyteus/tools/mcp/factory.py,sha256=vNQ719v1hMo0s98OWKKylHhO_cynyghWRejzot4RWSE,2204
369
- autobyteus/tools/mcp/schema_mapper.py,sha256=DDCPN_BJ1twe-9VIGVZaksmrQZVVNnL0uuD9-AeToTw,4413
370
- autobyteus/tools/mcp/server_instance_manager.py,sha256=pGZZCH9Qp7n6jefwyDsvoo0Pxe7AWCcqIqnXgWt8hyg,6289
371
- autobyteus/tools/mcp/tool.py,sha256=OdP2A2Xj3F2Ob6v_r4ZmtF6UtiBIn8FeD9g1KTuMiz0,3380
372
- autobyteus/tools/mcp/tool_registrar.py,sha256=RugX4TdiD6IfXF8S6cy2Ae-ZobT6RdRKdx7NLbcBMyI,11028
373
- autobyteus/tools/mcp/types.py,sha256=KiQUPhqzro5VW7piA-eOXkBcE0FThOUgr9Pw_7iV6Us,4171
374
- autobyteus/tools/mcp/server/__init__.py,sha256=yfCMAtVlfy1x8aKEnRz9_CHnco2zVSdepwIPSjywSNw,523
375
- autobyteus/tools/mcp/server/base_managed_mcp_server.py,sha256=ep-EKh4uqorrNYvv7D27Kh4fxR1f-E3hYMclFcWq0p4,5512
376
- autobyteus/tools/mcp/server/http_managed_mcp_server.py,sha256=Kit7zcJxaRXfAXMxYqCKVcl4MfNsgRfXK9kjDaQFkMA,1969
377
- autobyteus/tools/mcp/server/proxy.py,sha256=08F3m1I_IH2wrRXK29R_NPDB6ITHpo982Mq9G53hbUo,1660
378
- autobyteus/tools/mcp/server/stdio_managed_mcp_server.py,sha256=a84GOnhWLg4vx6yo5dI8BlqUA_fdi0M5eNo2a-tGWwM,2085
379
- autobyteus/tools/multimedia/__init__.py,sha256=D1DYekb40ziohmX0Jn7H3dI16AuMYFrTBQp5sT5llU8,255
380
- autobyteus/tools/multimedia/audio_tools.py,sha256=CDh6Zwd04Rl1v6zgfcCGt9VCyObAUlG0u_1_uv0veZY,4318
381
- autobyteus/tools/multimedia/image_tools.py,sha256=llWpp0lMBNaWNtfQ3LVA36-iQ2f4pIQ1oE71PK5W6nk,7686
382
- autobyteus/tools/multimedia/media_reader_tool.py,sha256=iu2mo1nitPriOgK49fe9lNhPg4oLrFro3yUsSZ0z4qE,5829
383
- autobyteus/tools/operation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
384
- autobyteus/tools/operation/file_operation.py,sha256=bAehQ9PfHoCDpk9Wa7vx9h3ohzVuaGzzBUogxleTwq8,2375
385
- autobyteus/tools/operation/file_rename_operation.py,sha256=pExiC69HUzYbKihlVumlGHMGxmmrsKQB0JfAM5x4JH0,1710
386
- autobyteus/tools/operation/operation.py,sha256=9sIZnlrPct5CwkCKuwbspVKvjF4KumP6twmXRo1blwo,1702
387
- autobyteus/tools/operation/shell_operation.py,sha256=_BiGIRGWCzzwPVtbqFwXpHOvnqH68YqJujQI-gWeKx0,1860
388
- autobyteus/tools/registry/__init__.py,sha256=39TSHm7mD6NXhsrczsX5Mdr32US0I6z3Bzad4hgcrrA,250
389
- autobyteus/tools/registry/tool_definition.py,sha256=MIhFPhgbvrL4Q5MVq8d2UybCsTE-O6kLagZQ7NujW6w,6953
390
- autobyteus/tools/registry/tool_registry.py,sha256=eekF5q3GZr3FwnwITGni-gyc46Vob5u3WoApmvEHPQ8,7564
391
- autobyteus/tools/usage/__init__.py,sha256=0kJoUH-m0d1AHTYJQyXlCjlXhMJ3e95Ykf-8J9lO2g4,224
392
- autobyteus/tools/usage/formatters/__init__.py,sha256=BThdI_R8Dkda1eHJFr1cQ7nLCgf5KfSuvWokjPrnT9U,1424
393
- autobyteus/tools/usage/formatters/anthropic_json_example_formatter.py,sha256=EVVPZ7e1tG3QRcEPjdOC0yTvnGisubfUm9geWbd9r2g,792
394
- autobyteus/tools/usage/formatters/anthropic_json_schema_formatter.py,sha256=Cwd4teoZcs64q1xemVYIW9lviH7A0t2jmg3W7TYv_Rs,869
395
- autobyteus/tools/usage/formatters/base_formatter.py,sha256=15YQHEV-uHREoi5INA6KWVrniatMbBPIGz82bVkZos8,1283
396
- autobyteus/tools/usage/formatters/default_json_example_formatter.py,sha256=vngcw6jI_tqvgzrOJ7vvhStb2I35YYpdK31EyyW_nrc,9069
397
- autobyteus/tools/usage/formatters/default_json_schema_formatter.py,sha256=mZuHp_irHco3_S-VotSBvv5BRFDlTsmdmSIH3Ut71jY,958
398
- autobyteus/tools/usage/formatters/default_xml_example_formatter.py,sha256=JRr7ksL3N_YMeFm2CY6RQxVwK4sbVKeSWQdZIy0ieiI,7185
399
- autobyteus/tools/usage/formatters/default_xml_schema_formatter.py,sha256=XsTLXKQfvJ1kshRi2jN0aIoOWn1t1oolrzl-H4wCRAE,6585
400
- autobyteus/tools/usage/formatters/gemini_json_example_formatter.py,sha256=S56Ld3xN4X0U4VL645j-ZY2IAweMf4nKny6Sy8F6__4,3866
401
- autobyteus/tools/usage/formatters/gemini_json_schema_formatter.py,sha256=za6FhkrbDUcezc9-u4w4_ytQAQyR8OpKypC_CCTYlBY,875
402
- autobyteus/tools/usage/formatters/google_json_example_formatter.py,sha256=qw3WxLDg4iBRm6r4k2qYX8IkCQVtJV3ljMjk1iTCVsM,3908
403
- autobyteus/tools/usage/formatters/google_json_schema_formatter.py,sha256=gKeuR_QhiebFGja303rg9q9CxgynJxIoCd4SrXuXRUU,868
404
- autobyteus/tools/usage/formatters/openai_json_example_formatter.py,sha256=-Ggx3VoS64Pwq035P-Gd7b8gfPTHSSU2rAdN3xTSZI8,4131
405
- autobyteus/tools/usage/formatters/openai_json_schema_formatter.py,sha256=3pN4CnmWiBJaZMhV7qnWcSKPpyZ2cEdiU-FVMRfPT1w,948
406
- autobyteus/tools/usage/parsers/__init__.py,sha256=4y235cYvUm60v30m4KCwQ4g9x9yP81QYBhSkUmjFWAU,915
407
- autobyteus/tools/usage/parsers/_json_extractor.py,sha256=Q7BJsEcFkEZJ8q-ifIl-7t4FXZgFoFEwFXAGvKFYhCk,3601
408
- autobyteus/tools/usage/parsers/_string_decoders.py,sha256=8dp5FfDIehHh5A7sKmomeEdTXqsMSJyHiuolFvipu68,638
409
- autobyteus/tools/usage/parsers/anthropic_xml_tool_usage_parser.py,sha256=xAVq7bPlyfZK5YBVsNlXyyc-1J4kyVr4-wDNI0ekl_o,433
410
- autobyteus/tools/usage/parsers/base_parser.py,sha256=iNHVUXMzAydnhYeEBgcXU0g8L_H9KTMavOEd-iwDLbk,1366
411
- autobyteus/tools/usage/parsers/default_json_tool_usage_parser.py,sha256=s5B8TT5jwBpFQyDYzxPVRUptsHT3WHsJGK9XWSAnDbg,3803
412
- autobyteus/tools/usage/parsers/default_xml_tool_usage_parser.py,sha256=esamQXffzI5-lsvRmOHwqF3WYOdMVW5zBdzPYVpBjgk,12344
413
- autobyteus/tools/usage/parsers/exceptions.py,sha256=CncCSH4IJUYPaCTilj1oPgfZWdCycIxQBrWiSKuWXtc,468
414
- autobyteus/tools/usage/parsers/gemini_json_tool_usage_parser.py,sha256=bL9i4jqWKDXK7thOblfozggLfGPKMNIpIsTcYFEYtcA,3721
415
- autobyteus/tools/usage/parsers/openai_json_tool_usage_parser.py,sha256=_p8Uyzv29yhhAG7MPgp7a5JEPZYNCx6ffUbRBb3eYwU,7111
416
- autobyteus/tools/usage/parsers/provider_aware_tool_usage_parser.py,sha256=OVPQpNlDCvAIKE5kKXFUIMdaTTK3pyJW2oCQ_bkOPBk,2829
417
- autobyteus/tools/usage/providers/__init__.py,sha256=C8GmfzYwzSS2OGv7MbvxtRe0OsIALvkC7rN7OWvA5p4,445
418
- autobyteus/tools/usage/providers/tool_manifest_provider.py,sha256=r-q9YkNYXEbNApAjufvxGuU4JPiu78x6u60wjTZcnfM,4668
419
- autobyteus/tools/usage/registries/__init__.py,sha256=S1jYYPqAjvD1rY0b8zkffBnKz8-_ptftfbgr1lqb7I8,547
420
- autobyteus/tools/usage/registries/tool_formatter_pair.py,sha256=Deki2aAEsFY0OSrMQf-4wZcyIInGI7EKQ2ZKenaFtMU,593
421
- autobyteus/tools/usage/registries/tool_formatting_registry.py,sha256=zKUDxsoo7X3fw783lpJIzETzTlkXJGoHYmO2rXU1efI,3337
422
- autobyteus/tools/usage/registries/tool_usage_parser_registry.py,sha256=kVgnq1hwTdb2C5SH5TGQLd6-bzDzfFLwk2qodrzwLWY,2667
423
- autobyteus/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
424
- autobyteus/utils/dynamic_enum.py,sha256=c_mgKtKrjb958LlCWeAApl1LMvVB7U_0SWl-8XFhRag,1339
425
- autobyteus/utils/file_utils.py,sha256=QK0LvrwA5c9FDjpSrfPPEQbu_AirteJNiLad9yRahDY,512
426
- autobyteus/utils/html_cleaner.py,sha256=mI2V83yFRfQe8NnN6fr6Ujpa0bPlq25NW5tTKaz2WGk,8672
427
- autobyteus/utils/parameter_schema.py,sha256=WoBXXdUIA6zBwMIr5CIO1lVkNN8m1c0gV6sIcCsSNSI,13010
428
- autobyteus/utils/singleton.py,sha256=YVURj5nRcMtzwFPxgy6ic4MSe3IUXNf6XWYuiXyhDOg,814
429
- autobyteus/workflow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
430
- autobyteus/workflow/agentic_workflow.py,sha256=u1A_HkgNlPmKn2nXz_0u_l9_DSyt4hxRJSyojGonvAA,3765
431
- autobyteus/workflow/base_agentic_workflow.py,sha256=fb7JZZ58p7HL-jQdzHybrMSEMSGgenoJ3D4prnWIBtk,3602
432
- autobyteus/workflow/exceptions.py,sha256=mIHDol7s6bQX_LP8y00zDAnpjDXlAL4-3P8rX2nxA-Q,407
433
- autobyteus/workflow/workflow_builder.py,sha256=_e3hlCTclQLN81XyJjbZ8uHSvKe6sgpeKA_8yL51e9c,6889
434
- autobyteus/workflow/bootstrap_steps/__init__.py,sha256=9C9HvkXHNYJfI-OfXvMWOyerA1r6j1n3gLX2nE4fAKU,1034
435
- autobyteus/workflow/bootstrap_steps/agent_tool_injection_step.py,sha256=LLPCKwzh0tQI6aUrWWrWNsU92uK-YdP0xDCkv1LWgTU,1942
436
- autobyteus/workflow/bootstrap_steps/base_workflow_bootstrap_step.py,sha256=mj6SvAbKVL_HFygRh5QkuEhOhDhi4djU8opBARLa8fM,880
437
- autobyteus/workflow/bootstrap_steps/coordinator_initialization_step.py,sha256=zZqc2fxOwy1Crll6VEXt2a8UC7ROSG_jmXC5Kjs7fhk,1927
438
- autobyteus/workflow/bootstrap_steps/coordinator_prompt_preparation_step.py,sha256=aOHjTg-Ch9J2Eo_qPhHTblzmeKpeU6etWaVbde-Wjwk,5533
439
- autobyteus/workflow/bootstrap_steps/workflow_bootstrapper.py,sha256=0fz-eN5DCtWPsYZLMUeFh-OOKQSBpwhN6ry3tAB5AM8,2746
440
- autobyteus/workflow/bootstrap_steps/workflow_runtime_queue_initialization_step.py,sha256=uE8Ixgv66BMpzkBR_ohXY5i3A4CsaKdFmod514dzYj4,1369
441
- autobyteus/workflow/context/__init__.py,sha256=aOkJMgX6bo7Cq1UBC4oENgb7lZYhMdJJSLJ-3uUhnA0,653
442
- autobyteus/workflow/context/team_manager.py,sha256=EfWBdVsjnT9FJOhEFDZhlrdsJ9-qshDBq5sm7gkX5kA,7659
443
- autobyteus/workflow/context/workflow_config.py,sha256=E3ylRyeC8WO37qHri9TmyShXht6-UqpMZIixBjucG7o,1174
444
- autobyteus/workflow/context/workflow_context.py,sha256=JwFZr6Mof0tqLRndlgrQEz9iAkpie1i_URNUtUCSDJ0,2695
445
- autobyteus/workflow/context/workflow_node_config.py,sha256=ka_ku03tKOwU-q9Is1lCt-Bpfj39gZk9KEE3lfEtNe8,3212
446
- autobyteus/workflow/context/workflow_runtime_state.py,sha256=zEfPSXL6rSVib7hQrUFCRvI1MX85P7g2RUsLC2FF6ok,2810
447
- autobyteus/workflow/events/__init__.py,sha256=7qNll9W8bpJRg63bzvZDdLLXwKQfoxsLFd-RLFPDGpA,949
448
- autobyteus/workflow/events/workflow_event_dispatcher.py,sha256=aRn-R32AkS0Z38QJmHxRMX1msqdy25almwjbD6-zcls,1729
449
- autobyteus/workflow/events/workflow_events.py,sha256=5IeDgjkImXZMMkpBn3u4d3PiKiLDHuDndb3FA1I_ycs,1744
450
- autobyteus/workflow/events/workflow_input_event_queue_manager.py,sha256=JtTicSrEBXT6gQcUo5XLxuZ78NIDl2A1GtwRI44MONU,942
451
- autobyteus/workflow/factory/__init__.py,sha256=W9Hq6EaVlpvHNj3I_6MpWluuLOxdPvpibH4AXlFX1f0,235
452
- autobyteus/workflow/factory/workflow_factory.py,sha256=VpxDguKhG7ng3Z8-2Equqd6ligIn3FsXjeGDyP8ppjQ,4829
453
- autobyteus/workflow/handlers/__init__.py,sha256=kgTir-RKwzsuUpODMcNjIzqFrw2LU4KQ8vWRcz-2ZCg,989
454
- autobyteus/workflow/handlers/base_workflow_event_handler.py,sha256=1nA02qJuK4bk6gH3lyVCS85nfQtAO5tOifUp31FHfYk,580
455
- autobyteus/workflow/handlers/inter_agent_message_request_event_handler.py,sha256=w9cq_GWZHp2996hh4tbgM598BpCTcdFfXx5dyGf39Q8,3388
456
- autobyteus/workflow/handlers/lifecycle_workflow_event_handler.py,sha256=AtP1BZahYgbe-WV423bzZRPgvcGqh-I3mv5YqqYHwFI,1348
457
- autobyteus/workflow/handlers/process_user_message_event_handler.py,sha256=TDEFwfONgNyHXOFtC56FEcxkRLr9FDmtXXONIcYC2lY,2602
458
- autobyteus/workflow/handlers/tool_approval_workflow_event_handler.py,sha256=2nw4FhhjYSfHyYoeXW4v2s9ziy-Cb0sR-YrYHZg-8bM,1881
459
- autobyteus/workflow/handlers/workflow_event_handler_registry.py,sha256=o-qXbg9VY4Ce8EtOGdbAhRXleQsWVjVE_idPK5rQTU8,1207
460
- autobyteus/workflow/phases/__init__.py,sha256=GLqzLOHeiWXnUYTSrG8kRVqARU-litYdnwcGoGs5u-Q,403
461
- autobyteus/workflow/phases/workflow_operational_phase.py,sha256=Do7YTKQ-NFCaqXyXf2HnMDoT6_WK1S5Td7K8CI-nsHk,674
462
- autobyteus/workflow/phases/workflow_phase_manager.py,sha256=rJ90brGy0NoWRktAPkFuOVL4vZwJ1wBBPxdcLamSXLs,2346
463
- autobyteus/workflow/runtime/__init__.py,sha256=WYLVQfP2zwgg8GtJSInTJZyVdr1mxRfvQRtSERmQfQQ,451
464
- autobyteus/workflow/runtime/workflow_runtime.py,sha256=hZCVk7D4nsdjUAEQIMsprbWUi1mDrASx3hDfnSOt4IM,3894
465
- autobyteus/workflow/runtime/workflow_worker.py,sha256=3QgyoZ7ahPmXcKEBSvTD29mmv4VPU4LBfD0xnJ_26zk,5598
466
- autobyteus/workflow/shutdown_steps/__init__.py,sha256=6_d81qvsu5ViWi5BIjQ2pxIYjVKOnhmdtI5v031KXv8,802
467
- autobyteus/workflow/shutdown_steps/agent_team_shutdown_step.py,sha256=27pJ0ysP1PzGcuU3mkwPorPenypN7jlZb18gh4MUDmI,1883
468
- autobyteus/workflow/shutdown_steps/base_workflow_shutdown_step.py,sha256=c4fRHV56aTEOEVya5cvVEu15dgCjq4h3V93IKqrk4Ho,638
469
- autobyteus/workflow/shutdown_steps/bridge_cleanup_step.py,sha256=rCDKe-Wdm4SY7ua0NRlp9i7wnIlmwqh-Nqze-qeGYcw,1183
470
- autobyteus/workflow/shutdown_steps/sub_workflow_shutdown_step.py,sha256=odjGy3p3ikk2c713Iopsfe9vEX6RWa-4ZqjnKfry7kY,1861
471
- autobyteus/workflow/shutdown_steps/workflow_shutdown_orchestrator.py,sha256=uZ77Ajnt5rzICXcjgyv19ckXEXi_pFnFNCyl-5MXMME,1580
472
- autobyteus/workflow/streaming/__init__.py,sha256=-MFvSEtsgOpjABgrzHwugiauasE_eCK9Z7n99ldLZDg,877
473
- autobyteus/workflow/streaming/agent_event_bridge.py,sha256=pT8tgXfQhdGb4LQ286tZcwmQZFrIbCBlIy_d7v1HGNE,2126
474
- autobyteus/workflow/streaming/agent_event_multiplexer.py,sha256=VlBucqJJNHO7uwPAD7u5-0zTvmAkkqouaRyihJW5A6g,3765
475
- autobyteus/workflow/streaming/workflow_event_bridge.py,sha256=BBgMQw1gruW-EgtK3SM-O21GG2qjaRem3BIWtsSlu_c,2461
476
- autobyteus/workflow/streaming/workflow_event_notifier.py,sha256=GA1XPqWTEvdljYAJpifxrQtILORAGGuxWNldARmdVKA,3654
477
- autobyteus/workflow/streaming/workflow_event_stream.py,sha256=XTOvbx1EWIh2x_-Nl5UcY6jCPnsgdS4GvoHjfRKj8yM,1540
478
- autobyteus/workflow/streaming/workflow_stream_event_payloads.py,sha256=jv1bVYg-75Fa93gcK6Apavxu-crpeJ0w4QMmEa4Csno,1470
479
- autobyteus/workflow/streaming/workflow_stream_events.py,sha256=75P29jNgcL7Go7D9wVz236KTwPfmqc5K7hUvVnc94K0,2221
480
- autobyteus/workflow/utils/__init__.py,sha256=SzaMZHnJBIJKcT_r-HOeyIcuxzRu2bGeFkOcMLJaalk,222
481
- autobyteus/workflow/utils/wait_for_idle.py,sha256=FgHtz59DN0eg8Na1PkkVR55Ihdd2e5Gn_mr7RVHl4qI,2001
482
- autobyteus-1.2.0.dist-info/licenses/LICENSE,sha256=Ompok_c8HRsXRwmax-pGR9OZRRxZC9RPp4JB6eTJd0M,1360
483
- examples/__init__.py,sha256=BtTQJ6yeHyksK5GC3kfN6RFR6Gcrwq1TBmp6FIIj3Z8,40
484
- examples/discover_phase_transitions.py,sha256=NiFK_XzDCpWwmNsQqf0Ou2w6L5bofKIKODq7sH5uPzk,3679
485
- examples/run_browser_agent.py,sha256=tpBJGIYYvVsNZAUo_WsZbhV_8fdeORUoHlQ8uQvnXPM,11737
486
- examples/run_google_slides_agent.py,sha256=R3skoCO7gxNKCdqm_Px3YVlzSh5WzJc7KAxqO-x7sJc,13105
487
- examples/run_mcp_browser_client.py,sha256=6vEBxGtAuGffkFk-gr3NvqetO84IdhNzip5Jp7V1tSc,6772
488
- examples/run_mcp_google_slides_client.py,sha256=l5B4sgDyyVEfL52WUiZw9mJjL5vOuD5ZJlnzIJbA-iw,11824
489
- examples/run_mcp_list_tools.py,sha256=-dOM-7xyyDM2gp5e_8KZVGbX5ZxWqFQB9l-fHfR8XxY,7367
490
- examples/run_poem_writer.py,sha256=cHOy-EoLG01cHTeX0Xf8a-Mti4CCoeDEqzw0mYG1QOU,13145
491
- examples/run_sqlite_agent.py,sha256=wy1Mp_F7RR0WmvfmxsPLG9JFPi6SpTVd0x_Ep76bUQ8,13159
492
- examples/agent_team/__init__.py,sha256=WIg0HENp1TUClJ3p2gIRn0C-VW9Qr7Ttqtedr4xQ3Jo,51
493
- autobyteus-1.2.0.dist-info/METADATA,sha256=tRkJzpfqgU4lqbrzIEZUMbBc0fKerbI-HcrmyNJIzaM,10179
494
- autobyteus-1.2.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
495
- autobyteus-1.2.0.dist-info/top_level.txt,sha256=vNmK1Y8Irbc0iDPdRtr9gIx5eLM-c2v1ntItkzICzHU,20
496
- autobyteus-1.2.0.dist-info/RECORD,,
examples/__init__.py DELETED
@@ -1 +0,0 @@
1
- # file: autobyteus/examples/__init__.py
@@ -1 +0,0 @@
1
- # file: autobyteus/examples/agent_team/__init__.py