autobyteus 1.2.1__tar.gz → 1.3.0__tar.gz

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 (890) hide show
  1. autobyteus-1.3.0/PKG-INFO +293 -0
  2. autobyteus-1.3.0/README.md +219 -0
  3. autobyteus-1.3.0/autobyteus/agent/agent.py +116 -0
  4. autobyteus-1.3.0/autobyteus/agent/bootstrap_steps/__init__.py +21 -0
  5. autobyteus-1.3.0/autobyteus/agent/bootstrap_steps/agent_bootstrapper.py +36 -0
  6. autobyteus-1.3.0/autobyteus/agent/bootstrap_steps/base_bootstrap_step.py +35 -0
  7. autobyteus-1.3.0/autobyteus/agent/bootstrap_steps/mcp_server_prewarming_step.py +69 -0
  8. autobyteus-1.3.0/autobyteus/agent/bootstrap_steps/system_prompt_processing_step.py +102 -0
  9. autobyteus-1.3.0/autobyteus/agent/bootstrap_steps/working_context_snapshot_restore_step.py +38 -0
  10. autobyteus-1.3.0/autobyteus/agent/bootstrap_steps/workspace_context_initialization_step.py +45 -0
  11. autobyteus-1.3.0/autobyteus/agent/context/agent_config.py +143 -0
  12. autobyteus-1.3.0/autobyteus/agent/context/agent_context.py +134 -0
  13. autobyteus-1.3.0/autobyteus/agent/context/agent_runtime_state.py +101 -0
  14. autobyteus-1.3.0/autobyteus/agent/events/__init__.py +67 -0
  15. autobyteus-1.3.0/autobyteus/agent/events/agent_events.py +150 -0
  16. autobyteus-1.3.0/autobyteus/agent/events/agent_input_event_queue_manager.py +227 -0
  17. autobyteus-1.3.0/autobyteus/agent/events/event_store.py +57 -0
  18. autobyteus-1.3.0/autobyteus/agent/events/notifiers.py +140 -0
  19. autobyteus-1.3.0/autobyteus/agent/events/worker_event_dispatcher.py +74 -0
  20. autobyteus-1.3.0/autobyteus/agent/factory/agent_factory.py +222 -0
  21. autobyteus-1.3.0/autobyteus/agent/handlers/__init__.py +38 -0
  22. autobyteus-1.3.0/autobyteus/agent/handlers/approved_tool_invocation_event_handler.py +165 -0
  23. autobyteus-1.3.0/autobyteus/agent/handlers/bootstrap_event_handler.py +155 -0
  24. autobyteus-1.3.0/autobyteus/agent/handlers/inter_agent_message_event_handler.py +89 -0
  25. autobyteus-1.3.0/autobyteus/agent/handlers/lifecycle_event_logger.py +72 -0
  26. autobyteus-1.3.0/autobyteus/agent/handlers/llm_complete_response_received_event_handler.py +136 -0
  27. autobyteus-1.3.0/autobyteus/agent/handlers/llm_user_message_ready_event_handler.py +303 -0
  28. autobyteus-1.3.0/autobyteus/agent/handlers/tool_execution_approval_event_handler.py +75 -0
  29. autobyteus-1.3.0/autobyteus/agent/handlers/tool_invocation_request_event_handler.py +216 -0
  30. autobyteus-1.3.0/autobyteus/agent/handlers/tool_result_event_handler.py +203 -0
  31. autobyteus-1.3.0/autobyteus/agent/handlers/user_input_message_event_handler.py +105 -0
  32. autobyteus-1.3.0/autobyteus/agent/input_processor/memory_ingest_input_processor.py +44 -0
  33. autobyteus-1.3.0/autobyteus/agent/lifecycle/__init__.py +12 -0
  34. autobyteus-1.3.0/autobyteus/agent/lifecycle/base_processor.py +109 -0
  35. autobyteus-1.3.0/autobyteus/agent/lifecycle/events.py +35 -0
  36. autobyteus-1.3.0/autobyteus/agent/lifecycle/processor_definition.py +36 -0
  37. autobyteus-1.3.0/autobyteus/agent/lifecycle/processor_registry.py +106 -0
  38. autobyteus-1.3.0/autobyteus/agent/llm_request_assembler.py +98 -0
  39. autobyteus-1.3.0/autobyteus/agent/llm_response_processor/__init__.py +9 -0
  40. autobyteus-1.3.0/autobyteus/agent/message/context_file_type.py +90 -0
  41. autobyteus-1.3.0/autobyteus/agent/runtime/agent_runtime.py +150 -0
  42. autobyteus-1.3.0/autobyteus/agent/runtime/agent_worker.py +313 -0
  43. autobyteus-1.3.0/autobyteus/agent/shutdown_steps/__init__.py +19 -0
  44. autobyteus-1.3.0/autobyteus/agent/shutdown_steps/agent_shutdown_orchestrator.py +65 -0
  45. autobyteus-1.3.0/autobyteus/agent/shutdown_steps/tool_cleanup_step.py +58 -0
  46. autobyteus-1.3.0/autobyteus/agent/status/__init__.py +14 -0
  47. autobyteus-1.3.0/autobyteus/agent/status/manager.py +93 -0
  48. autobyteus-1.3.0/autobyteus/agent/status/status_deriver.py +96 -0
  49. autobyteus-1.3.0/autobyteus/agent/status/status_enum.py +49 -0
  50. autobyteus-1.3.0/autobyteus/agent/status/status_update_utils.py +73 -0
  51. autobyteus-1.3.0/autobyteus/agent/streaming/__init__.py +62 -0
  52. autobyteus-1.3.0/autobyteus/agent/streaming/adapters/__init__.py +18 -0
  53. autobyteus-1.3.0/autobyteus/agent/streaming/adapters/invocation_adapter.py +184 -0
  54. autobyteus-1.3.0/autobyteus/agent/streaming/adapters/tool_call_parsing.py +163 -0
  55. autobyteus-1.3.0/autobyteus/agent/streaming/adapters/tool_syntax_registry.py +67 -0
  56. autobyteus-1.3.0/autobyteus/agent/streaming/agent_event_stream.py +4 -0
  57. autobyteus-1.3.0/autobyteus/agent/streaming/api_tool_call/__init__.py +16 -0
  58. autobyteus-1.3.0/autobyteus/agent/streaming/api_tool_call/file_content_streamer.py +56 -0
  59. autobyteus-1.3.0/autobyteus/agent/streaming/api_tool_call/json_string_field_extractor.py +175 -0
  60. autobyteus-1.3.0/autobyteus/agent/streaming/api_tool_call_streaming_response_handler.py +4 -0
  61. autobyteus-1.3.0/autobyteus/agent/streaming/events/__init__.py +6 -0
  62. autobyteus-1.3.0/autobyteus/agent/streaming/events/stream_event_payloads.py +284 -0
  63. autobyteus-1.3.0/autobyteus/agent/streaming/events/stream_events.py +141 -0
  64. autobyteus-1.3.0/autobyteus/agent/streaming/handlers/__init__.py +15 -0
  65. autobyteus-1.3.0/autobyteus/agent/streaming/handlers/api_tool_call_streaming_response_handler.py +303 -0
  66. autobyteus-1.3.0/autobyteus/agent/streaming/handlers/parsing_streaming_response_handler.py +107 -0
  67. autobyteus-1.3.0/autobyteus/agent/streaming/handlers/pass_through_streaming_response_handler.py +107 -0
  68. autobyteus-1.3.0/autobyteus/agent/streaming/handlers/streaming_handler_factory.py +177 -0
  69. autobyteus-1.3.0/autobyteus/agent/streaming/handlers/streaming_response_handler.py +58 -0
  70. autobyteus-1.3.0/autobyteus/agent/streaming/parser/__init__.py +61 -0
  71. autobyteus-1.3.0/autobyteus/agent/streaming/parser/event_emitter.py +181 -0
  72. autobyteus-1.3.0/autobyteus/agent/streaming/parser/events.py +4 -0
  73. autobyteus-1.3.0/autobyteus/agent/streaming/parser/invocation_adapter.py +4 -0
  74. autobyteus-1.3.0/autobyteus/agent/streaming/parser/json_parsing_strategies/__init__.py +19 -0
  75. autobyteus-1.3.0/autobyteus/agent/streaming/parser/json_parsing_strategies/base.py +32 -0
  76. autobyteus-1.3.0/autobyteus/agent/streaming/parser/json_parsing_strategies/default.py +34 -0
  77. autobyteus-1.3.0/autobyteus/agent/streaming/parser/json_parsing_strategies/gemini.py +31 -0
  78. autobyteus-1.3.0/autobyteus/agent/streaming/parser/json_parsing_strategies/openai.py +64 -0
  79. autobyteus-1.3.0/autobyteus/agent/streaming/parser/json_parsing_strategies/registry.py +75 -0
  80. autobyteus-1.3.0/autobyteus/agent/streaming/parser/parser_context.py +227 -0
  81. autobyteus-1.3.0/autobyteus/agent/streaming/parser/parser_factory.py +132 -0
  82. autobyteus-1.3.0/autobyteus/agent/streaming/parser/sentinel_format.py +7 -0
  83. autobyteus-1.3.0/autobyteus/agent/streaming/parser/state_factory.py +62 -0
  84. autobyteus-1.3.0/autobyteus/agent/streaming/parser/states/__init__.py +1 -0
  85. autobyteus-1.3.0/autobyteus/agent/streaming/parser/states/base_state.py +60 -0
  86. autobyteus-1.3.0/autobyteus/agent/streaming/parser/states/custom_xml_tag_run_bash_parsing_state.py +38 -0
  87. autobyteus-1.3.0/autobyteus/agent/streaming/parser/states/custom_xml_tag_write_file_parsing_state.py +55 -0
  88. autobyteus-1.3.0/autobyteus/agent/streaming/parser/states/delimited_content_state.py +146 -0
  89. autobyteus-1.3.0/autobyteus/agent/streaming/parser/states/json_initialization_state.py +144 -0
  90. autobyteus-1.3.0/autobyteus/agent/streaming/parser/states/json_tool_parsing_state.py +137 -0
  91. autobyteus-1.3.0/autobyteus/agent/streaming/parser/states/sentinel_content_state.py +30 -0
  92. autobyteus-1.3.0/autobyteus/agent/streaming/parser/states/sentinel_initialization_state.py +117 -0
  93. autobyteus-1.3.0/autobyteus/agent/streaming/parser/states/text_state.py +78 -0
  94. autobyteus-1.3.0/autobyteus/agent/streaming/parser/states/xml_patch_file_tool_parsing_state.py +328 -0
  95. autobyteus-1.3.0/autobyteus/agent/streaming/parser/states/xml_run_bash_tool_parsing_state.py +129 -0
  96. autobyteus-1.3.0/autobyteus/agent/streaming/parser/states/xml_tag_initialization_state.py +151 -0
  97. autobyteus-1.3.0/autobyteus/agent/streaming/parser/states/xml_tool_parsing_state.py +63 -0
  98. autobyteus-1.3.0/autobyteus/agent/streaming/parser/states/xml_write_file_tool_parsing_state.py +343 -0
  99. autobyteus-1.3.0/autobyteus/agent/streaming/parser/strategies/__init__.py +17 -0
  100. autobyteus-1.3.0/autobyteus/agent/streaming/parser/strategies/base.py +24 -0
  101. autobyteus-1.3.0/autobyteus/agent/streaming/parser/strategies/json_tool_strategy.py +26 -0
  102. autobyteus-1.3.0/autobyteus/agent/streaming/parser/strategies/registry.py +28 -0
  103. autobyteus-1.3.0/autobyteus/agent/streaming/parser/strategies/sentinel_strategy.py +23 -0
  104. autobyteus-1.3.0/autobyteus/agent/streaming/parser/strategies/xml_tag_strategy.py +21 -0
  105. autobyteus-1.3.0/autobyteus/agent/streaming/parser/stream_scanner.py +167 -0
  106. autobyteus-1.3.0/autobyteus/agent/streaming/parser/streaming_parser.py +212 -0
  107. autobyteus-1.3.0/autobyteus/agent/streaming/parser/tool_call_parsing.py +4 -0
  108. autobyteus-1.3.0/autobyteus/agent/streaming/parser/tool_constants.py +7 -0
  109. autobyteus-1.3.0/autobyteus/agent/streaming/parser/tool_syntax_registry.py +4 -0
  110. autobyteus-1.3.0/autobyteus/agent/streaming/parser/xml_tool_parsing_state_registry.py +55 -0
  111. autobyteus-1.3.0/autobyteus/agent/streaming/parsing_streaming_response_handler.py +4 -0
  112. autobyteus-1.3.0/autobyteus/agent/streaming/pass_through_streaming_response_handler.py +4 -0
  113. autobyteus-1.3.0/autobyteus/agent/streaming/queue_streamer.py +4 -0
  114. autobyteus-1.3.0/autobyteus/agent/streaming/segments/__init__.py +5 -0
  115. autobyteus-1.3.0/autobyteus/agent/streaming/segments/segment_events.py +82 -0
  116. autobyteus-1.3.0/autobyteus/agent/streaming/stream_event_payloads.py +2 -0
  117. autobyteus-1.3.0/autobyteus/agent/streaming/stream_events.py +4 -0
  118. autobyteus-1.3.0/autobyteus/agent/streaming/streaming_handler_factory.py +4 -0
  119. autobyteus-1.3.0/autobyteus/agent/streaming/streaming_response_handler.py +4 -0
  120. autobyteus-1.3.0/autobyteus/agent/streaming/streams/__init__.py +5 -0
  121. autobyteus-1.3.0/autobyteus/agent/streaming/streams/agent_event_stream.py +197 -0
  122. autobyteus-1.3.0/autobyteus/agent/streaming/utils/__init__.py +5 -0
  123. autobyteus-1.3.0/autobyteus/agent/streaming/utils/queue_streamer.py +59 -0
  124. autobyteus-1.3.0/autobyteus/agent/system_prompt_processor/__init__.py +16 -0
  125. autobyteus-1.3.0/autobyteus/agent/system_prompt_processor/available_skills_processor.py +96 -0
  126. autobyteus-1.3.0/autobyteus/agent/system_prompt_processor/base_processor.py +64 -0
  127. autobyteus-1.3.0/autobyteus/agent/system_prompt_processor/processor_meta.py +60 -0
  128. autobyteus-1.3.0/autobyteus/agent/system_prompt_processor/tool_manifest_injector_processor.py +77 -0
  129. autobyteus-1.3.0/autobyteus/agent/token_budget.py +56 -0
  130. autobyteus-1.3.0/autobyteus/agent/tool_execution_result_processor/memory_ingest_tool_result_processor.py +29 -0
  131. autobyteus-1.3.0/autobyteus/agent/tool_invocation.py +57 -0
  132. autobyteus-1.3.0/autobyteus/agent/tool_invocation_preprocessor/__init__.py +9 -0
  133. autobyteus-1.3.0/autobyteus/agent/tool_invocation_preprocessor/base_preprocessor.py +45 -0
  134. autobyteus-1.3.0/autobyteus/agent/tool_invocation_preprocessor/processor_definition.py +15 -0
  135. autobyteus-1.3.0/autobyteus/agent/tool_invocation_preprocessor/processor_meta.py +33 -0
  136. autobyteus-1.3.0/autobyteus/agent/tool_invocation_preprocessor/processor_registry.py +60 -0
  137. autobyteus-1.3.0/autobyteus/agent/utils/wait_for_idle.py +57 -0
  138. autobyteus-1.3.0/autobyteus/agent/workspace/base_workspace.py +71 -0
  139. autobyteus-1.3.0/autobyteus/agent_team/agent_team.py +93 -0
  140. autobyteus-1.3.0/autobyteus/agent_team/agent_team_builder.py +165 -0
  141. autobyteus-1.3.0/autobyteus/agent_team/bootstrap_steps/__init__.py +20 -0
  142. autobyteus-1.3.0/autobyteus/agent_team/bootstrap_steps/agent_configuration_preparation_step.py +70 -0
  143. autobyteus-1.3.0/autobyteus/agent_team/bootstrap_steps/agent_team_bootstrapper.py +42 -0
  144. autobyteus-1.3.0/autobyteus/agent_team/bootstrap_steps/base_agent_team_bootstrap_step.py +22 -0
  145. autobyteus-1.3.0/autobyteus/agent_team/bootstrap_steps/coordinator_initialization_step.py +40 -0
  146. autobyteus-1.3.0/autobyteus/agent_team/bootstrap_steps/task_notifier_initialization_step.py +50 -0
  147. autobyteus-1.3.0/autobyteus/agent_team/bootstrap_steps/team_context_initialization_step.py +45 -0
  148. autobyteus-1.3.0/autobyteus/agent_team/context/agent_team_config.py +37 -0
  149. autobyteus-1.3.0/autobyteus/agent_team/context/agent_team_context.py +83 -0
  150. autobyteus-1.3.0/autobyteus/agent_team/context/agent_team_runtime_state.py +57 -0
  151. autobyteus-1.3.0/autobyteus/agent_team/events/__init__.py +40 -0
  152. autobyteus-1.3.0/autobyteus/agent_team/events/agent_team_event_dispatcher.py +52 -0
  153. autobyteus-1.3.0/autobyteus/agent_team/events/agent_team_events.py +69 -0
  154. autobyteus-1.3.0/autobyteus/agent_team/events/event_store.py +57 -0
  155. autobyteus-1.3.0/autobyteus/agent_team/factory/agent_team_factory.py +107 -0
  156. autobyteus-1.3.0/autobyteus/agent_team/handlers/inter_agent_message_request_event_handler.py +77 -0
  157. autobyteus-1.3.0/autobyteus/agent_team/handlers/lifecycle_agent_team_event_handler.py +43 -0
  158. autobyteus-1.3.0/autobyteus/agent_team/handlers/process_user_message_event_handler.py +55 -0
  159. autobyteus-1.3.0/autobyteus/agent_team/handlers/tool_approval_team_event_handler.py +63 -0
  160. autobyteus-1.3.0/autobyteus/agent_team/runtime/agent_team_runtime.py +113 -0
  161. autobyteus-1.3.0/autobyteus/agent_team/runtime/agent_team_worker.py +181 -0
  162. autobyteus-1.3.0/autobyteus/agent_team/status/__init__.py +14 -0
  163. autobyteus-1.3.0/autobyteus/agent_team/status/agent_team_status.py +18 -0
  164. autobyteus-1.3.0/autobyteus/agent_team/status/agent_team_status_manager.py +33 -0
  165. autobyteus-1.3.0/autobyteus/agent_team/status/status_deriver.py +62 -0
  166. autobyteus-1.3.0/autobyteus/agent_team/status/status_update_utils.py +42 -0
  167. autobyteus-1.3.0/autobyteus/agent_team/streaming/__init__.py +26 -0
  168. autobyteus-1.3.0/autobyteus/agent_team/streaming/agent_team_event_notifier.py +64 -0
  169. autobyteus-1.3.0/autobyteus/agent_team/streaming/agent_team_stream_event_payloads.py +32 -0
  170. autobyteus-1.3.0/autobyteus/agent_team/streaming/agent_team_stream_events.py +56 -0
  171. autobyteus-1.3.0/autobyteus/agent_team/system_prompt_processor/__init__.py +6 -0
  172. autobyteus-1.3.0/autobyteus/agent_team/system_prompt_processor/team_manifest_injector_processor.py +76 -0
  173. autobyteus-1.3.0/autobyteus/agent_team/task_notification/task_notification_mode.py +43 -0
  174. autobyteus-1.3.0/autobyteus/agent_team/utils/wait_for_idle.py +46 -0
  175. autobyteus-1.3.0/autobyteus/cli/agent_cli.py +125 -0
  176. autobyteus-1.3.0/autobyteus/cli/agent_team_tui/app.css +84 -0
  177. autobyteus-1.3.0/autobyteus/cli/agent_team_tui/app.py +213 -0
  178. autobyteus-1.3.0/autobyteus/cli/agent_team_tui/state.py +175 -0
  179. autobyteus-1.3.0/autobyteus/cli/agent_team_tui/widgets/agent_list_sidebar.py +149 -0
  180. autobyteus-1.3.0/autobyteus/cli/agent_team_tui/widgets/focus_pane.py +427 -0
  181. autobyteus-1.3.0/autobyteus/cli/agent_team_tui/widgets/renderables.py +77 -0
  182. autobyteus-1.3.0/autobyteus/cli/agent_team_tui/widgets/shared.py +60 -0
  183. autobyteus-1.3.0/autobyteus/cli/cli_display.py +354 -0
  184. autobyteus-1.3.0/autobyteus/cli/workflow_tui/app.css +84 -0
  185. autobyteus-1.3.0/autobyteus/cli/workflow_tui/app.py +209 -0
  186. autobyteus-1.3.0/autobyteus/cli/workflow_tui/state.py +187 -0
  187. autobyteus-1.3.0/autobyteus/cli/workflow_tui/widgets/agent_list_sidebar.py +149 -0
  188. autobyteus-1.3.0/autobyteus/cli/workflow_tui/widgets/focus_pane.py +437 -0
  189. autobyteus-1.3.0/autobyteus/cli/workflow_tui/widgets/renderables.py +70 -0
  190. autobyteus-1.3.0/autobyteus/cli/workflow_tui/widgets/shared.py +51 -0
  191. autobyteus-1.3.0/autobyteus/clients/autobyteus_client.py +411 -0
  192. autobyteus-1.3.0/autobyteus/config.toml.template +3 -0
  193. autobyteus-1.3.0/autobyteus/events/event_types.py +48 -0
  194. autobyteus-1.3.0/autobyteus/llm/api/autobyteus_llm.py +127 -0
  195. autobyteus-1.3.0/autobyteus/llm/api/claude_llm.py +235 -0
  196. autobyteus-1.3.0/autobyteus/llm/api/gemini_llm.py +246 -0
  197. autobyteus-1.3.0/autobyteus/llm/api/grok_llm.py +26 -0
  198. autobyteus-1.3.0/autobyteus/llm/api/minimax_llm.py +26 -0
  199. autobyteus-1.3.0/autobyteus/llm/api/mistral_llm.py +197 -0
  200. autobyteus-1.3.0/autobyteus/llm/api/ollama_llm.py +125 -0
  201. autobyteus-1.3.0/autobyteus/llm/api/openai_compatible_llm.py +246 -0
  202. autobyteus-1.3.0/autobyteus/llm/api/openai_llm.py +26 -0
  203. autobyteus-1.3.0/autobyteus/llm/api/openai_responses_llm.py +324 -0
  204. autobyteus-1.3.0/autobyteus/llm/api/zhipu_llm.py +45 -0
  205. autobyteus-1.3.0/autobyteus/llm/autobyteus_provider.py +216 -0
  206. autobyteus-1.3.0/autobyteus/llm/base_llm.py +190 -0
  207. autobyteus-1.3.0/autobyteus/llm/converters/__init__.py +14 -0
  208. autobyteus-1.3.0/autobyteus/llm/converters/anthropic_tool_call_converter.py +37 -0
  209. autobyteus-1.3.0/autobyteus/llm/converters/gemini_tool_call_converter.py +57 -0
  210. autobyteus-1.3.0/autobyteus/llm/converters/mistral_tool_call_converter.py +37 -0
  211. autobyteus-1.3.0/autobyteus/llm/converters/openai_tool_call_converter.py +38 -0
  212. autobyteus-1.3.0/autobyteus/llm/extensions/base_extension.py +38 -0
  213. autobyteus-1.3.0/autobyteus/llm/extensions/token_usage_tracking_extension.py +116 -0
  214. autobyteus-1.3.0/autobyteus/llm/llm_factory.py +588 -0
  215. autobyteus-1.3.0/autobyteus/llm/lmstudio_provider.py +115 -0
  216. autobyteus-1.3.0/autobyteus/llm/models.py +223 -0
  217. autobyteus-1.3.0/autobyteus/llm/ollama_provider.py +122 -0
  218. autobyteus-1.3.0/autobyteus/llm/ollama_provider_resolver.py +46 -0
  219. autobyteus-1.3.0/autobyteus/llm/prompt_renderers/__init__.py +19 -0
  220. autobyteus-1.3.0/autobyteus/llm/prompt_renderers/anthropic_prompt_renderer.py +104 -0
  221. autobyteus-1.3.0/autobyteus/llm/prompt_renderers/autobyteus_prompt_renderer.py +19 -0
  222. autobyteus-1.3.0/autobyteus/llm/prompt_renderers/base_prompt_renderer.py +10 -0
  223. autobyteus-1.3.0/autobyteus/llm/prompt_renderers/gemini_prompt_renderer.py +63 -0
  224. autobyteus-1.3.0/autobyteus/llm/prompt_renderers/mistral_prompt_renderer.py +87 -0
  225. autobyteus-1.3.0/autobyteus/llm/prompt_renderers/ollama_prompt_renderer.py +51 -0
  226. autobyteus-1.3.0/autobyteus/llm/prompt_renderers/openai_chat_renderer.py +97 -0
  227. autobyteus-1.3.0/autobyteus/llm/prompt_renderers/openai_responses_renderer.py +101 -0
  228. autobyteus-1.3.0/autobyteus/llm/providers.py +16 -0
  229. autobyteus-1.3.0/autobyteus/llm/token_counter/claude_token_counter.py +108 -0
  230. autobyteus-1.3.0/autobyteus/llm/token_counter/mistral_token_counter.py +119 -0
  231. autobyteus-1.3.0/autobyteus/llm/token_counter/openai_token_counter.py +103 -0
  232. autobyteus-1.3.0/autobyteus/llm/token_counter/token_counter_factory.py +57 -0
  233. autobyteus-1.3.0/autobyteus/llm/utils/llm_config.py +197 -0
  234. autobyteus-1.3.0/autobyteus/llm/utils/media_payload_formatter.py +106 -0
  235. autobyteus-1.3.0/autobyteus/llm/utils/messages.py +99 -0
  236. autobyteus-1.3.0/autobyteus/llm/utils/response_types.py +29 -0
  237. autobyteus-1.3.0/autobyteus/llm/utils/tool_call_delta.py +31 -0
  238. autobyteus-1.3.0/autobyteus/memory/__init__.py +35 -0
  239. autobyteus-1.3.0/autobyteus/memory/compaction/__init__.py +9 -0
  240. autobyteus-1.3.0/autobyteus/memory/compaction/compaction_result.py +8 -0
  241. autobyteus-1.3.0/autobyteus/memory/compaction/compactor.py +89 -0
  242. autobyteus-1.3.0/autobyteus/memory/compaction/summarizer.py +11 -0
  243. autobyteus-1.3.0/autobyteus/memory/compaction_snapshot_builder.py +84 -0
  244. autobyteus-1.3.0/autobyteus/memory/memory_manager.py +205 -0
  245. autobyteus-1.3.0/autobyteus/memory/models/__init__.py +14 -0
  246. autobyteus-1.3.0/autobyteus/memory/models/episodic_item.py +41 -0
  247. autobyteus-1.3.0/autobyteus/memory/models/memory_types.py +7 -0
  248. autobyteus-1.3.0/autobyteus/memory/models/raw_trace_item.py +79 -0
  249. autobyteus-1.3.0/autobyteus/memory/models/semantic_item.py +41 -0
  250. autobyteus-1.3.0/autobyteus/memory/models/tool_interaction.py +20 -0
  251. autobyteus-1.3.0/autobyteus/memory/path_resolver.py +27 -0
  252. autobyteus-1.3.0/autobyteus/memory/policies/__init__.py +5 -0
  253. autobyteus-1.3.0/autobyteus/memory/policies/compaction_policy.py +16 -0
  254. autobyteus-1.3.0/autobyteus/memory/restore/__init__.py +1 -0
  255. autobyteus-1.3.0/autobyteus/memory/restore/working_context_snapshot_bootstrapper.py +61 -0
  256. autobyteus-1.3.0/autobyteus/memory/retrieval/__init__.py +7 -0
  257. autobyteus-1.3.0/autobyteus/memory/retrieval/memory_bundle.py +11 -0
  258. autobyteus-1.3.0/autobyteus/memory/retrieval/retriever.py +13 -0
  259. autobyteus-1.3.0/autobyteus/memory/store/__init__.py +9 -0
  260. autobyteus-1.3.0/autobyteus/memory/store/base_store.py +14 -0
  261. autobyteus-1.3.0/autobyteus/memory/store/file_store.py +98 -0
  262. autobyteus-1.3.0/autobyteus/memory/store/working_context_snapshot_store.py +28 -0
  263. autobyteus-1.3.0/autobyteus/memory/tool_interaction_builder.py +46 -0
  264. autobyteus-1.3.0/autobyteus/memory/turn_tracker.py +9 -0
  265. autobyteus-1.3.0/autobyteus/memory/working_context_snapshot.py +69 -0
  266. autobyteus-1.3.0/autobyteus/memory/working_context_snapshot_serializer.py +135 -0
  267. autobyteus-1.3.0/autobyteus/multimedia/audio/api/autobyteus_audio_client.py +76 -0
  268. autobyteus-1.3.0/autobyteus/multimedia/audio/api/gemini_audio_client.py +243 -0
  269. autobyteus-1.3.0/autobyteus/multimedia/audio/audio_client_factory.py +220 -0
  270. autobyteus-1.3.0/autobyteus/multimedia/audio/audio_model.py +105 -0
  271. autobyteus-1.3.0/autobyteus/multimedia/image/api/autobyteus_image_client.py +118 -0
  272. autobyteus-1.3.0/autobyteus/multimedia/image/api/gemini_image_client.py +152 -0
  273. autobyteus-1.3.0/autobyteus/multimedia/image/api/openai_image_client.py +226 -0
  274. autobyteus-1.3.0/autobyteus/multimedia/image/autobyteus_image_provider.py +116 -0
  275. autobyteus-1.3.0/autobyteus/multimedia/image/image_client_factory.py +151 -0
  276. autobyteus-1.3.0/autobyteus/multimedia/image/image_model.py +107 -0
  277. autobyteus-1.3.0/autobyteus/multimedia/providers.py +7 -0
  278. autobyteus-1.3.0/autobyteus/skills/loader.py +71 -0
  279. autobyteus-1.3.0/autobyteus/skills/model.py +11 -0
  280. autobyteus-1.3.0/autobyteus/skills/registry.py +70 -0
  281. autobyteus-1.3.0/autobyteus/task_management/tools/todo_tools/add_todo.py +78 -0
  282. autobyteus-1.3.0/autobyteus/task_management/tools/todo_tools/create_todo_list.py +79 -0
  283. autobyteus-1.3.0/autobyteus/task_management/tools/todo_tools/update_todo_status.py +85 -0
  284. autobyteus-1.3.0/autobyteus/tools/__init__.py +109 -0
  285. autobyteus-1.3.0/autobyteus/tools/base_tool.py +190 -0
  286. autobyteus-1.3.0/autobyteus/tools/file/__init__.py +9 -0
  287. autobyteus-1.3.0/autobyteus/tools/file/patch_file.py +149 -0
  288. autobyteus-1.3.0/autobyteus/tools/file/read_file.py +87 -0
  289. autobyteus-1.3.0/autobyteus/tools/file/write_file.py +62 -0
  290. autobyteus-1.3.0/autobyteus/tools/functional_tool.py +289 -0
  291. autobyteus-1.3.0/autobyteus/tools/mcp/__init__.py +52 -0
  292. autobyteus-1.3.0/autobyteus/tools/mcp/config_service.py +241 -0
  293. autobyteus-1.3.0/autobyteus/tools/mcp/server/__init__.py +18 -0
  294. autobyteus-1.3.0/autobyteus/tools/mcp/server/http_managed_mcp_server.py +41 -0
  295. autobyteus-1.3.0/autobyteus/tools/mcp/server/websocket_managed_mcp_server.py +141 -0
  296. autobyteus-1.3.0/autobyteus/tools/mcp/server_instance_manager.py +126 -0
  297. autobyteus-1.3.0/autobyteus/tools/mcp/types.py +148 -0
  298. autobyteus-1.3.0/autobyteus/tools/multimedia/audio_tools.py +159 -0
  299. autobyteus-1.3.0/autobyteus/tools/multimedia/download_media_tool.py +150 -0
  300. autobyteus-1.3.0/autobyteus/tools/multimedia/image_tools.py +369 -0
  301. autobyteus-1.3.0/autobyteus/tools/operation_executor/journal_manager.py +107 -0
  302. autobyteus-1.3.0/autobyteus/tools/operation_executor/operation_event_buffer.py +57 -0
  303. autobyteus-1.3.0/autobyteus/tools/operation_executor/operation_event_producer.py +29 -0
  304. autobyteus-1.3.0/autobyteus/tools/operation_executor/operation_executor.py +58 -0
  305. autobyteus-1.3.0/autobyteus/tools/registry/tool_definition.py +241 -0
  306. autobyteus-1.3.0/autobyteus/tools/skill/load_skill.py +50 -0
  307. autobyteus-1.3.0/autobyteus/tools/terminal/__init__.py +45 -0
  308. autobyteus-1.3.0/autobyteus/tools/terminal/ansi_utils.py +32 -0
  309. autobyteus-1.3.0/autobyteus/tools/terminal/background_process_manager.py +233 -0
  310. autobyteus-1.3.0/autobyteus/tools/terminal/output_buffer.py +105 -0
  311. autobyteus-1.3.0/autobyteus/tools/terminal/prompt_detector.py +63 -0
  312. autobyteus-1.3.0/autobyteus/tools/terminal/pty_session.py +241 -0
  313. autobyteus-1.3.0/autobyteus/tools/terminal/session_factory.py +20 -0
  314. autobyteus-1.3.0/autobyteus/tools/terminal/terminal_session_manager.py +226 -0
  315. autobyteus-1.3.0/autobyteus/tools/terminal/tools/__init__.py +13 -0
  316. autobyteus-1.3.0/autobyteus/tools/terminal/tools/get_process_output.py +81 -0
  317. autobyteus-1.3.0/autobyteus/tools/terminal/tools/run_bash.py +109 -0
  318. autobyteus-1.3.0/autobyteus/tools/terminal/tools/start_background_process.py +104 -0
  319. autobyteus-1.3.0/autobyteus/tools/terminal/tools/stop_background_process.py +67 -0
  320. autobyteus-1.3.0/autobyteus/tools/terminal/types.py +54 -0
  321. autobyteus-1.3.0/autobyteus/tools/terminal/wsl_tmux_session.py +221 -0
  322. autobyteus-1.3.0/autobyteus/tools/terminal/wsl_utils.py +156 -0
  323. autobyteus-1.3.0/autobyteus/tools/transaction_management/backup_handler.py +48 -0
  324. autobyteus-1.3.0/autobyteus/tools/transaction_management/operation_lifecycle_manager.py +62 -0
  325. autobyteus-1.3.0/autobyteus/tools/usage/__init__.py +5 -0
  326. autobyteus-1.3.0/autobyteus/tools/usage/formatters/__init__.py +47 -0
  327. autobyteus-1.3.0/autobyteus/tools/usage/formatters/base_formatter.py +50 -0
  328. autobyteus-1.3.0/autobyteus/tools/usage/formatters/default_xml_schema_formatter.py +132 -0
  329. autobyteus-1.3.0/autobyteus/tools/usage/formatters/mistral_json_schema_formatter.py +18 -0
  330. autobyteus-1.3.0/autobyteus/tools/usage/formatters/patch_file_xml_example_formatter.py +64 -0
  331. autobyteus-1.3.0/autobyteus/tools/usage/formatters/patch_file_xml_schema_formatter.py +31 -0
  332. autobyteus-1.3.0/autobyteus/tools/usage/formatters/run_bash_xml_example_formatter.py +32 -0
  333. autobyteus-1.3.0/autobyteus/tools/usage/formatters/run_bash_xml_schema_formatter.py +36 -0
  334. autobyteus-1.3.0/autobyteus/tools/usage/formatters/write_file_xml_example_formatter.py +53 -0
  335. autobyteus-1.3.0/autobyteus/tools/usage/formatters/write_file_xml_schema_formatter.py +31 -0
  336. autobyteus-1.3.0/autobyteus/tools/usage/providers/tool_manifest_provider.py +102 -0
  337. autobyteus-1.3.0/autobyteus/tools/usage/registries/__init__.py +13 -0
  338. autobyteus-1.3.0/autobyteus/tools/usage/registries/tool_formatting_registry.py +172 -0
  339. autobyteus-1.3.0/autobyteus/tools/usage/tool_schema_provider.py +51 -0
  340. autobyteus-1.3.0/autobyteus/tools/web/__init__.py +4 -0
  341. autobyteus-1.3.0/autobyteus/tools/web/read_url_tool.py +80 -0
  342. autobyteus-1.3.0/autobyteus/utils/diff_utils.py +271 -0
  343. autobyteus-1.3.0/autobyteus/utils/download_utils.py +109 -0
  344. autobyteus-1.3.0/autobyteus/utils/file_utils.py +70 -0
  345. autobyteus-1.3.0/autobyteus/utils/gemini_helper.py +64 -0
  346. autobyteus-1.3.0/autobyteus/utils/gemini_model_mapping.py +71 -0
  347. autobyteus-1.3.0/autobyteus/utils/llm_output_formatter.py +75 -0
  348. autobyteus-1.3.0/autobyteus/utils/tool_call_format.py +36 -0
  349. autobyteus-1.3.0/autobyteus/workflow/agentic_workflow.py +93 -0
  350. autobyteus-1.3.0/autobyteus/workflow/bootstrap_steps/agent_tool_injection_step.py +34 -0
  351. autobyteus-1.3.0/autobyteus/workflow/bootstrap_steps/base_workflow_bootstrap_step.py +23 -0
  352. autobyteus-1.3.0/autobyteus/workflow/bootstrap_steps/coordinator_initialization_step.py +41 -0
  353. autobyteus-1.3.0/autobyteus/workflow/bootstrap_steps/coordinator_prompt_preparation_step.py +101 -0
  354. autobyteus-1.3.0/autobyteus/workflow/bootstrap_steps/workflow_bootstrapper.py +50 -0
  355. autobyteus-1.3.0/autobyteus/workflow/bootstrap_steps/workflow_runtime_queue_initialization_step.py +25 -0
  356. autobyteus-1.3.0/autobyteus/workflow/context/workflow_context.py +61 -0
  357. autobyteus-1.3.0/autobyteus/workflow/context/workflow_runtime_state.py +53 -0
  358. autobyteus-1.3.0/autobyteus/workflow/events/workflow_event_dispatcher.py +39 -0
  359. autobyteus-1.3.0/autobyteus/workflow/handlers/lifecycle_workflow_event_handler.py +27 -0
  360. autobyteus-1.3.0/autobyteus/workflow/handlers/process_user_message_event_handler.py +46 -0
  361. autobyteus-1.3.0/autobyteus/workflow/handlers/tool_approval_workflow_event_handler.py +39 -0
  362. autobyteus-1.3.0/autobyteus/workflow/runtime/workflow_runtime.py +82 -0
  363. autobyteus-1.3.0/autobyteus/workflow/runtime/workflow_worker.py +117 -0
  364. autobyteus-1.3.0/autobyteus/workflow/status/__init__.py +11 -0
  365. autobyteus-1.3.0/autobyteus/workflow/status/workflow_status.py +19 -0
  366. autobyteus-1.3.0/autobyteus/workflow/status/workflow_status_manager.py +48 -0
  367. autobyteus-1.3.0/autobyteus/workflow/streaming/__init__.py +26 -0
  368. autobyteus-1.3.0/autobyteus/workflow/streaming/workflow_event_notifier.py +83 -0
  369. autobyteus-1.3.0/autobyteus/workflow/streaming/workflow_stream_event_payloads.py +28 -0
  370. autobyteus-1.3.0/autobyteus/workflow/streaming/workflow_stream_events.py +45 -0
  371. autobyteus-1.3.0/autobyteus/workflow/utils/wait_for_idle.py +46 -0
  372. autobyteus-1.3.0/autobyteus.egg-info/SOURCES.txt +607 -0
  373. autobyteus-1.3.0/pyproject.toml +93 -0
  374. autobyteus-1.2.1/PKG-INFO +0 -205
  375. autobyteus-1.2.1/README.md +0 -134
  376. autobyteus-1.2.1/autobyteus/agent/agent.py +0 -106
  377. autobyteus-1.2.1/autobyteus/agent/bootstrap_steps/__init__.py +0 -21
  378. autobyteus-1.2.1/autobyteus/agent/bootstrap_steps/agent_bootstrapper.py +0 -90
  379. autobyteus-1.2.1/autobyteus/agent/bootstrap_steps/agent_runtime_queue_initialization_step.py +0 -57
  380. autobyteus-1.2.1/autobyteus/agent/bootstrap_steps/base_bootstrap_step.py +0 -38
  381. autobyteus-1.2.1/autobyteus/agent/bootstrap_steps/mcp_server_prewarming_step.py +0 -71
  382. autobyteus-1.2.1/autobyteus/agent/bootstrap_steps/system_prompt_processing_step.py +0 -99
  383. autobyteus-1.2.1/autobyteus/agent/bootstrap_steps/workspace_context_initialization_step.py +0 -47
  384. autobyteus-1.2.1/autobyteus/agent/context/agent_config.py +0 -116
  385. autobyteus-1.2.1/autobyteus/agent/context/agent_context.py +0 -129
  386. autobyteus-1.2.1/autobyteus/agent/context/agent_runtime_state.py +0 -99
  387. autobyteus-1.2.1/autobyteus/agent/events/__init__.py +0 -52
  388. autobyteus-1.2.1/autobyteus/agent/events/agent_events.py +0 -110
  389. autobyteus-1.2.1/autobyteus/agent/events/agent_input_event_queue_manager.py +0 -174
  390. autobyteus-1.2.1/autobyteus/agent/events/notifiers.py +0 -130
  391. autobyteus-1.2.1/autobyteus/agent/events/worker_event_dispatcher.py +0 -117
  392. autobyteus-1.2.1/autobyteus/agent/factory/agent_factory.py +0 -145
  393. autobyteus-1.2.1/autobyteus/agent/handlers/__init__.py +0 -36
  394. autobyteus-1.2.1/autobyteus/agent/handlers/approved_tool_invocation_event_handler.py +0 -148
  395. autobyteus-1.2.1/autobyteus/agent/handlers/inter_agent_message_event_handler.py +0 -79
  396. autobyteus-1.2.1/autobyteus/agent/handlers/lifecycle_event_logger.py +0 -64
  397. autobyteus-1.2.1/autobyteus/agent/handlers/llm_complete_response_received_event_handler.py +0 -141
  398. autobyteus-1.2.1/autobyteus/agent/handlers/llm_user_message_ready_event_handler.py +0 -163
  399. autobyteus-1.2.1/autobyteus/agent/handlers/tool_execution_approval_event_handler.py +0 -85
  400. autobyteus-1.2.1/autobyteus/agent/handlers/tool_invocation_request_event_handler.py +0 -211
  401. autobyteus-1.2.1/autobyteus/agent/handlers/tool_result_event_handler.py +0 -204
  402. autobyteus-1.2.1/autobyteus/agent/handlers/user_input_message_event_handler.py +0 -98
  403. autobyteus-1.2.1/autobyteus/agent/hooks/__init__.py +0 -16
  404. autobyteus-1.2.1/autobyteus/agent/hooks/base_phase_hook.py +0 -78
  405. autobyteus-1.2.1/autobyteus/agent/hooks/hook_definition.py +0 -36
  406. autobyteus-1.2.1/autobyteus/agent/hooks/hook_meta.py +0 -37
  407. autobyteus-1.2.1/autobyteus/agent/hooks/hook_registry.py +0 -106
  408. autobyteus-1.2.1/autobyteus/agent/llm_response_processor/__init__.py +0 -16
  409. autobyteus-1.2.1/autobyteus/agent/llm_response_processor/provider_aware_tool_usage_processor.py +0 -103
  410. autobyteus-1.2.1/autobyteus/agent/message/context_file_type.py +0 -90
  411. autobyteus-1.2.1/autobyteus/agent/phases/__init__.py +0 -18
  412. autobyteus-1.2.1/autobyteus/agent/phases/discover.py +0 -53
  413. autobyteus-1.2.1/autobyteus/agent/phases/manager.py +0 -265
  414. autobyteus-1.2.1/autobyteus/agent/phases/phase_enum.py +0 -49
  415. autobyteus-1.2.1/autobyteus/agent/phases/transition_decorator.py +0 -40
  416. autobyteus-1.2.1/autobyteus/agent/phases/transition_info.py +0 -33
  417. autobyteus-1.2.1/autobyteus/agent/remote_agent.py +0 -244
  418. autobyteus-1.2.1/autobyteus/agent/runtime/agent_runtime.py +0 -142
  419. autobyteus-1.2.1/autobyteus/agent/runtime/agent_worker.py +0 -234
  420. autobyteus-1.2.1/autobyteus/agent/shutdown_steps/__init__.py +0 -17
  421. autobyteus-1.2.1/autobyteus/agent/shutdown_steps/agent_shutdown_orchestrator.py +0 -63
  422. autobyteus-1.2.1/autobyteus/agent/streaming/__init__.py +0 -15
  423. autobyteus-1.2.1/autobyteus/agent/streaming/agent_event_stream.py +0 -184
  424. autobyteus-1.2.1/autobyteus/agent/streaming/queue_streamer.py +0 -58
  425. autobyteus-1.2.1/autobyteus/agent/streaming/stream_event_payloads.py +0 -223
  426. autobyteus-1.2.1/autobyteus/agent/streaming/stream_events.py +0 -141
  427. autobyteus-1.2.1/autobyteus/agent/system_prompt_processor/__init__.py +0 -14
  428. autobyteus-1.2.1/autobyteus/agent/system_prompt_processor/base_processor.py +0 -64
  429. autobyteus-1.2.1/autobyteus/agent/system_prompt_processor/processor_meta.py +0 -47
  430. autobyteus-1.2.1/autobyteus/agent/system_prompt_processor/tool_manifest_injector_processor.py +0 -96
  431. autobyteus-1.2.1/autobyteus/agent/tool_invocation.py +0 -81
  432. autobyteus-1.2.1/autobyteus/agent/utils/wait_for_idle.py +0 -59
  433. autobyteus-1.2.1/autobyteus/agent/workspace/base_workspace.py +0 -92
  434. autobyteus-1.2.1/autobyteus/agent/workspace/workspace_definition.py +0 -36
  435. autobyteus-1.2.1/autobyteus/agent/workspace/workspace_meta.py +0 -37
  436. autobyteus-1.2.1/autobyteus/agent/workspace/workspace_registry.py +0 -72
  437. autobyteus-1.2.1/autobyteus/agent_team/agent_team.py +0 -93
  438. autobyteus-1.2.1/autobyteus/agent_team/agent_team_builder.py +0 -205
  439. autobyteus-1.2.1/autobyteus/agent_team/bootstrap_steps/__init__.py +0 -24
  440. autobyteus-1.2.1/autobyteus/agent_team/bootstrap_steps/agent_configuration_preparation_step.py +0 -80
  441. autobyteus-1.2.1/autobyteus/agent_team/bootstrap_steps/agent_team_bootstrapper.py +0 -54
  442. autobyteus-1.2.1/autobyteus/agent_team/bootstrap_steps/agent_team_runtime_queue_initialization_step.py +0 -25
  443. autobyteus-1.2.1/autobyteus/agent_team/bootstrap_steps/base_agent_team_bootstrap_step.py +0 -23
  444. autobyteus-1.2.1/autobyteus/agent_team/bootstrap_steps/coordinator_initialization_step.py +0 -41
  445. autobyteus-1.2.1/autobyteus/agent_team/bootstrap_steps/coordinator_prompt_preparation_step.py +0 -85
  446. autobyteus-1.2.1/autobyteus/agent_team/bootstrap_steps/task_notifier_initialization_step.py +0 -51
  447. autobyteus-1.2.1/autobyteus/agent_team/bootstrap_steps/team_context_initialization_step.py +0 -45
  448. autobyteus-1.2.1/autobyteus/agent_team/context/agent_team_config.py +0 -34
  449. autobyteus-1.2.1/autobyteus/agent_team/context/agent_team_context.py +0 -61
  450. autobyteus-1.2.1/autobyteus/agent_team/context/agent_team_runtime_state.py +0 -54
  451. autobyteus-1.2.1/autobyteus/agent_team/events/__init__.py +0 -29
  452. autobyteus-1.2.1/autobyteus/agent_team/events/agent_team_event_dispatcher.py +0 -39
  453. autobyteus-1.2.1/autobyteus/agent_team/events/agent_team_events.py +0 -53
  454. autobyteus-1.2.1/autobyteus/agent_team/factory/agent_team_factory.py +0 -99
  455. autobyteus-1.2.1/autobyteus/agent_team/handlers/inter_agent_message_request_event_handler.py +0 -61
  456. autobyteus-1.2.1/autobyteus/agent_team/handlers/lifecycle_agent_team_event_handler.py +0 -27
  457. autobyteus-1.2.1/autobyteus/agent_team/handlers/process_user_message_event_handler.py +0 -46
  458. autobyteus-1.2.1/autobyteus/agent_team/handlers/tool_approval_team_event_handler.py +0 -48
  459. autobyteus-1.2.1/autobyteus/agent_team/phases/__init__.py +0 -11
  460. autobyteus-1.2.1/autobyteus/agent_team/phases/agent_team_operational_phase.py +0 -19
  461. autobyteus-1.2.1/autobyteus/agent_team/phases/agent_team_phase_manager.py +0 -48
  462. autobyteus-1.2.1/autobyteus/agent_team/runtime/agent_team_runtime.py +0 -82
  463. autobyteus-1.2.1/autobyteus/agent_team/runtime/agent_team_worker.py +0 -117
  464. autobyteus-1.2.1/autobyteus/agent_team/streaming/__init__.py +0 -26
  465. autobyteus-1.2.1/autobyteus/agent_team/streaming/agent_team_event_notifier.py +0 -64
  466. autobyteus-1.2.1/autobyteus/agent_team/streaming/agent_team_stream_event_payloads.py +0 -32
  467. autobyteus-1.2.1/autobyteus/agent_team/streaming/agent_team_stream_events.py +0 -56
  468. autobyteus-1.2.1/autobyteus/agent_team/task_notification/task_notification_mode.py +0 -24
  469. autobyteus-1.2.1/autobyteus/agent_team/utils/wait_for_idle.py +0 -46
  470. autobyteus-1.2.1/autobyteus/cli/agent_cli.py +0 -117
  471. autobyteus-1.2.1/autobyteus/cli/agent_team_tui/app.py +0 -210
  472. autobyteus-1.2.1/autobyteus/cli/agent_team_tui/state.py +0 -177
  473. autobyteus-1.2.1/autobyteus/cli/agent_team_tui/widgets/agent_list_sidebar.py +0 -149
  474. autobyteus-1.2.1/autobyteus/cli/agent_team_tui/widgets/focus_pane.py +0 -320
  475. autobyteus-1.2.1/autobyteus/cli/agent_team_tui/widgets/renderables.py +0 -77
  476. autobyteus-1.2.1/autobyteus/cli/agent_team_tui/widgets/shared.py +0 -60
  477. autobyteus-1.2.1/autobyteus/cli/cli_display.py +0 -205
  478. autobyteus-1.2.1/autobyteus/cli/workflow_tui/app.py +0 -210
  479. autobyteus-1.2.1/autobyteus/cli/workflow_tui/state.py +0 -189
  480. autobyteus-1.2.1/autobyteus/cli/workflow_tui/widgets/agent_list_sidebar.py +0 -149
  481. autobyteus-1.2.1/autobyteus/cli/workflow_tui/widgets/focus_pane.py +0 -335
  482. autobyteus-1.2.1/autobyteus/cli/workflow_tui/widgets/renderables.py +0 -70
  483. autobyteus-1.2.1/autobyteus/cli/workflow_tui/widgets/shared.py +0 -51
  484. autobyteus-1.2.1/autobyteus/clients/autobyteus_client.py +0 -318
  485. autobyteus-1.2.1/autobyteus/events/event_types.py +0 -55
  486. autobyteus-1.2.1/autobyteus/llm/api/autobyteus_llm.py +0 -123
  487. autobyteus-1.2.1/autobyteus/llm/api/bedrock_llm.py +0 -92
  488. autobyteus-1.2.1/autobyteus/llm/api/claude_llm.py +0 -129
  489. autobyteus-1.2.1/autobyteus/llm/api/gemini_llm.py +0 -142
  490. autobyteus-1.2.1/autobyteus/llm/api/grok_llm.py +0 -26
  491. autobyteus-1.2.1/autobyteus/llm/api/groq_llm.py +0 -94
  492. autobyteus-1.2.1/autobyteus/llm/api/mistral_llm.py +0 -171
  493. autobyteus-1.2.1/autobyteus/llm/api/nvidia_llm.py +0 -108
  494. autobyteus-1.2.1/autobyteus/llm/api/ollama_llm.py +0 -158
  495. autobyteus-1.2.1/autobyteus/llm/api/openai_compatible_llm.py +0 -210
  496. autobyteus-1.2.1/autobyteus/llm/api/openai_llm.py +0 -26
  497. autobyteus-1.2.1/autobyteus/llm/api/zhipu_llm.py +0 -26
  498. autobyteus-1.2.1/autobyteus/llm/autobyteus_provider.py +0 -206
  499. autobyteus-1.2.1/autobyteus/llm/base_llm.py +0 -186
  500. autobyteus-1.2.1/autobyteus/llm/extensions/base_extension.py +0 -44
  501. autobyteus-1.2.1/autobyteus/llm/extensions/token_usage_tracking_extension.py +0 -89
  502. autobyteus-1.2.1/autobyteus/llm/llm_factory.py +0 -510
  503. autobyteus-1.2.1/autobyteus/llm/lmstudio_provider.py +0 -104
  504. autobyteus-1.2.1/autobyteus/llm/models.py +0 -190
  505. autobyteus-1.2.1/autobyteus/llm/ollama_provider.py +0 -111
  506. autobyteus-1.2.1/autobyteus/llm/ollama_provider_resolver.py +0 -47
  507. autobyteus-1.2.1/autobyteus/llm/providers.py +0 -18
  508. autobyteus-1.2.1/autobyteus/llm/token_counter/claude_token_counter.py +0 -77
  509. autobyteus-1.2.1/autobyteus/llm/token_counter/mistral_token_counter.py +0 -115
  510. autobyteus-1.2.1/autobyteus/llm/token_counter/openai_token_counter.py +0 -84
  511. autobyteus-1.2.1/autobyteus/llm/token_counter/token_counter_factory.py +0 -50
  512. autobyteus-1.2.1/autobyteus/llm/utils/llm_config.py +0 -203
  513. autobyteus-1.2.1/autobyteus/llm/utils/media_payload_formatter.py +0 -99
  514. autobyteus-1.2.1/autobyteus/llm/utils/messages.py +0 -47
  515. autobyteus-1.2.1/autobyteus/llm/utils/response_types.py +0 -26
  516. autobyteus-1.2.1/autobyteus/llm/utils/token_pricing_config.py +0 -87
  517. autobyteus-1.2.1/autobyteus/multimedia/audio/api/autobyteus_audio_client.py +0 -62
  518. autobyteus-1.2.1/autobyteus/multimedia/audio/api/gemini_audio_client.py +0 -150
  519. autobyteus-1.2.1/autobyteus/multimedia/audio/audio_client_factory.py +0 -182
  520. autobyteus-1.2.1/autobyteus/multimedia/audio/audio_model.py +0 -104
  521. autobyteus-1.2.1/autobyteus/multimedia/image/api/autobyteus_image_client.py +0 -104
  522. autobyteus-1.2.1/autobyteus/multimedia/image/api/gemini_image_client.py +0 -130
  523. autobyteus-1.2.1/autobyteus/multimedia/image/api/openai_image_client.py +0 -144
  524. autobyteus-1.2.1/autobyteus/multimedia/image/autobyteus_image_provider.py +0 -115
  525. autobyteus-1.2.1/autobyteus/multimedia/image/image_client_factory.py +0 -119
  526. autobyteus-1.2.1/autobyteus/multimedia/image/image_model.py +0 -104
  527. autobyteus-1.2.1/autobyteus/multimedia/providers.py +0 -6
  528. autobyteus-1.2.1/autobyteus/rpc/__init__.py +0 -73
  529. autobyteus-1.2.1/autobyteus/rpc/client/__init__.py +0 -17
  530. autobyteus-1.2.1/autobyteus/rpc/client/abstract_client_connection.py +0 -124
  531. autobyteus-1.2.1/autobyteus/rpc/client/client_connection_manager.py +0 -153
  532. autobyteus-1.2.1/autobyteus/rpc/client/sse_client_connection.py +0 -306
  533. autobyteus-1.2.1/autobyteus/rpc/client/stdio_client_connection.py +0 -280
  534. autobyteus-1.2.1/autobyteus/rpc/config/__init__.py +0 -13
  535. autobyteus-1.2.1/autobyteus/rpc/config/agent_server_config.py +0 -153
  536. autobyteus-1.2.1/autobyteus/rpc/config/agent_server_registry.py +0 -152
  537. autobyteus-1.2.1/autobyteus/rpc/hosting.py +0 -244
  538. autobyteus-1.2.1/autobyteus/rpc/protocol.py +0 -244
  539. autobyteus-1.2.1/autobyteus/rpc/server/__init__.py +0 -20
  540. autobyteus-1.2.1/autobyteus/rpc/server/agent_server_endpoint.py +0 -181
  541. autobyteus-1.2.1/autobyteus/rpc/server/base_method_handler.py +0 -40
  542. autobyteus-1.2.1/autobyteus/rpc/server/method_handlers.py +0 -259
  543. autobyteus-1.2.1/autobyteus/rpc/server/sse_server_handler.py +0 -182
  544. autobyteus-1.2.1/autobyteus/rpc/server/stdio_server_handler.py +0 -151
  545. autobyteus-1.2.1/autobyteus/rpc/server_main.py +0 -198
  546. autobyteus-1.2.1/autobyteus/rpc/transport_type.py +0 -13
  547. autobyteus-1.2.1/autobyteus/task_management/tools/todo_tools/add_todo.py +0 -78
  548. autobyteus-1.2.1/autobyteus/task_management/tools/todo_tools/create_todo_list.py +0 -79
  549. autobyteus-1.2.1/autobyteus/task_management/tools/todo_tools/update_todo_status.py +0 -85
  550. autobyteus-1.2.1/autobyteus/tools/__init__.py +0 -122
  551. autobyteus-1.2.1/autobyteus/tools/base_tool.py +0 -183
  552. autobyteus-1.2.1/autobyteus/tools/bash/__init__.py +0 -2
  553. autobyteus-1.2.1/autobyteus/tools/bash/bash_executor.py +0 -100
  554. autobyteus-1.2.1/autobyteus/tools/browser/__init__.py +0 -2
  555. autobyteus-1.2.1/autobyteus/tools/browser/session_aware/browser_session_aware_navigate_to.py +0 -75
  556. autobyteus-1.2.1/autobyteus/tools/browser/session_aware/browser_session_aware_tool.py +0 -30
  557. autobyteus-1.2.1/autobyteus/tools/browser/session_aware/browser_session_aware_web_element_trigger.py +0 -154
  558. autobyteus-1.2.1/autobyteus/tools/browser/session_aware/browser_session_aware_webpage_reader.py +0 -89
  559. autobyteus-1.2.1/autobyteus/tools/browser/session_aware/browser_session_aware_webpage_screenshot_taker.py +0 -107
  560. autobyteus-1.2.1/autobyteus/tools/browser/session_aware/factory/browser_session_aware_web_element_trigger_factory.py +0 -14
  561. autobyteus-1.2.1/autobyteus/tools/browser/session_aware/factory/browser_session_aware_webpage_reader_factory.py +0 -26
  562. autobyteus-1.2.1/autobyteus/tools/browser/session_aware/factory/browser_session_aware_webpage_screenshot_taker_factory.py +0 -14
  563. autobyteus-1.2.1/autobyteus/tools/browser/session_aware/shared_browser_session.py +0 -11
  564. autobyteus-1.2.1/autobyteus/tools/browser/session_aware/shared_browser_session_manager.py +0 -25
  565. autobyteus-1.2.1/autobyteus/tools/browser/session_aware/web_element_action.py +0 -20
  566. autobyteus-1.2.1/autobyteus/tools/browser/standalone/__init__.py +0 -6
  567. autobyteus-1.2.1/autobyteus/tools/browser/standalone/factory/webpage_reader_factory.py +0 -25
  568. autobyteus-1.2.1/autobyteus/tools/browser/standalone/factory/webpage_screenshot_taker_factory.py +0 -14
  569. autobyteus-1.2.1/autobyteus/tools/browser/standalone/navigate_to.py +0 -84
  570. autobyteus-1.2.1/autobyteus/tools/browser/standalone/web_page_pdf_generator.py +0 -101
  571. autobyteus-1.2.1/autobyteus/tools/browser/standalone/webpage_image_downloader.py +0 -169
  572. autobyteus-1.2.1/autobyteus/tools/browser/standalone/webpage_reader.py +0 -105
  573. autobyteus-1.2.1/autobyteus/tools/browser/standalone/webpage_screenshot_taker.py +0 -105
  574. autobyteus-1.2.1/autobyteus/tools/file/__init__.py +0 -13
  575. autobyteus-1.2.1/autobyteus/tools/file/edit_file.py +0 -200
  576. autobyteus-1.2.1/autobyteus/tools/file/list_directory.py +0 -168
  577. autobyteus-1.2.1/autobyteus/tools/file/read_file.py +0 -56
  578. autobyteus-1.2.1/autobyteus/tools/file/search_files.py +0 -188
  579. autobyteus-1.2.1/autobyteus/tools/file/write_file.py +0 -59
  580. autobyteus-1.2.1/autobyteus/tools/functional_tool.py +0 -252
  581. autobyteus-1.2.1/autobyteus/tools/mcp/__init__.py +0 -50
  582. autobyteus-1.2.1/autobyteus/tools/mcp/config_service.py +0 -237
  583. autobyteus-1.2.1/autobyteus/tools/mcp/server/__init__.py +0 -16
  584. autobyteus-1.2.1/autobyteus/tools/mcp/server/http_managed_mcp_server.py +0 -41
  585. autobyteus-1.2.1/autobyteus/tools/mcp/server_instance_manager.py +0 -119
  586. autobyteus-1.2.1/autobyteus/tools/mcp/types.py +0 -87
  587. autobyteus-1.2.1/autobyteus/tools/multimedia/audio_tools.py +0 -106
  588. autobyteus-1.2.1/autobyteus/tools/multimedia/download_media_tool.py +0 -136
  589. autobyteus-1.2.1/autobyteus/tools/multimedia/image_tools.py +0 -185
  590. autobyteus-1.2.1/autobyteus/tools/registry/tool_definition.py +0 -200
  591. autobyteus-1.2.1/autobyteus/tools/timer.py +0 -175
  592. autobyteus-1.2.1/autobyteus/tools/usage/__init__.py +0 -6
  593. autobyteus-1.2.1/autobyteus/tools/usage/formatters/__init__.py +0 -31
  594. autobyteus-1.2.1/autobyteus/tools/usage/formatters/base_formatter.py +0 -42
  595. autobyteus-1.2.1/autobyteus/tools/usage/formatters/default_xml_schema_formatter.py +0 -132
  596. autobyteus-1.2.1/autobyteus/tools/usage/parsers/__init__.py +0 -22
  597. autobyteus-1.2.1/autobyteus/tools/usage/parsers/_json_extractor.py +0 -99
  598. autobyteus-1.2.1/autobyteus/tools/usage/parsers/_string_decoders.py +0 -18
  599. autobyteus-1.2.1/autobyteus/tools/usage/parsers/anthropic_xml_tool_usage_parser.py +0 -10
  600. autobyteus-1.2.1/autobyteus/tools/usage/parsers/base_parser.py +0 -41
  601. autobyteus-1.2.1/autobyteus/tools/usage/parsers/default_json_tool_usage_parser.py +0 -83
  602. autobyteus-1.2.1/autobyteus/tools/usage/parsers/default_xml_tool_usage_parser.py +0 -316
  603. autobyteus-1.2.1/autobyteus/tools/usage/parsers/exceptions.py +0 -13
  604. autobyteus-1.2.1/autobyteus/tools/usage/parsers/gemini_json_tool_usage_parser.py +0 -77
  605. autobyteus-1.2.1/autobyteus/tools/usage/parsers/openai_json_tool_usage_parser.py +0 -149
  606. autobyteus-1.2.1/autobyteus/tools/usage/parsers/provider_aware_tool_usage_parser.py +0 -59
  607. autobyteus-1.2.1/autobyteus/tools/usage/providers/tool_manifest_provider.py +0 -102
  608. autobyteus-1.2.1/autobyteus/tools/usage/registries/__init__.py +0 -15
  609. autobyteus-1.2.1/autobyteus/tools/usage/registries/tool_formatting_registry.py +0 -65
  610. autobyteus-1.2.1/autobyteus/tools/usage/registries/tool_usage_parser_registry.py +0 -62
  611. autobyteus-1.2.1/autobyteus/utils/file_utils.py +0 -15
  612. autobyteus-1.2.1/autobyteus/workflow/__init__.py +0 -0
  613. autobyteus-1.2.1/autobyteus/workflow/agentic_workflow.py +0 -93
  614. autobyteus-1.2.1/autobyteus/workflow/bootstrap_steps/agent_tool_injection_step.py +0 -34
  615. autobyteus-1.2.1/autobyteus/workflow/bootstrap_steps/base_workflow_bootstrap_step.py +0 -23
  616. autobyteus-1.2.1/autobyteus/workflow/bootstrap_steps/coordinator_initialization_step.py +0 -41
  617. autobyteus-1.2.1/autobyteus/workflow/bootstrap_steps/coordinator_prompt_preparation_step.py +0 -107
  618. autobyteus-1.2.1/autobyteus/workflow/bootstrap_steps/workflow_bootstrapper.py +0 -50
  619. autobyteus-1.2.1/autobyteus/workflow/bootstrap_steps/workflow_runtime_queue_initialization_step.py +0 -25
  620. autobyteus-1.2.1/autobyteus/workflow/context/workflow_context.py +0 -61
  621. autobyteus-1.2.1/autobyteus/workflow/context/workflow_runtime_state.py +0 -53
  622. autobyteus-1.2.1/autobyteus/workflow/events/workflow_event_dispatcher.py +0 -39
  623. autobyteus-1.2.1/autobyteus/workflow/handlers/lifecycle_workflow_event_handler.py +0 -27
  624. autobyteus-1.2.1/autobyteus/workflow/handlers/process_user_message_event_handler.py +0 -46
  625. autobyteus-1.2.1/autobyteus/workflow/handlers/tool_approval_workflow_event_handler.py +0 -39
  626. autobyteus-1.2.1/autobyteus/workflow/phases/__init__.py +0 -11
  627. autobyteus-1.2.1/autobyteus/workflow/phases/workflow_operational_phase.py +0 -19
  628. autobyteus-1.2.1/autobyteus/workflow/phases/workflow_phase_manager.py +0 -48
  629. autobyteus-1.2.1/autobyteus/workflow/runtime/workflow_runtime.py +0 -82
  630. autobyteus-1.2.1/autobyteus/workflow/runtime/workflow_worker.py +0 -117
  631. autobyteus-1.2.1/autobyteus/workflow/streaming/__init__.py +0 -26
  632. autobyteus-1.2.1/autobyteus/workflow/streaming/workflow_event_notifier.py +0 -83
  633. autobyteus-1.2.1/autobyteus/workflow/streaming/workflow_stream_event_payloads.py +0 -28
  634. autobyteus-1.2.1/autobyteus/workflow/streaming/workflow_stream_events.py +0 -45
  635. autobyteus-1.2.1/autobyteus/workflow/utils/wait_for_idle.py +0 -46
  636. autobyteus-1.2.1/autobyteus.egg-info/PKG-INFO +0 -205
  637. autobyteus-1.2.1/autobyteus.egg-info/SOURCES.txt +0 -515
  638. autobyteus-1.2.1/autobyteus.egg-info/dependency_links.txt +0 -1
  639. autobyteus-1.2.1/autobyteus.egg-info/requires.txt +0 -44
  640. autobyteus-1.2.1/autobyteus.egg-info/top_level.txt +0 -2
  641. autobyteus-1.2.1/examples/__init__.py +0 -1
  642. autobyteus-1.2.1/examples/agent_team/__init__.py +0 -1
  643. autobyteus-1.2.1/examples/discover_phase_transitions.py +0 -104
  644. autobyteus-1.2.1/examples/run_agentic_software_engineer.py +0 -239
  645. autobyteus-1.2.1/examples/run_browser_agent.py +0 -262
  646. autobyteus-1.2.1/examples/run_google_slides_agent.py +0 -287
  647. autobyteus-1.2.1/examples/run_mcp_browser_client.py +0 -174
  648. autobyteus-1.2.1/examples/run_mcp_google_slides_client.py +0 -270
  649. autobyteus-1.2.1/examples/run_mcp_list_tools.py +0 -189
  650. autobyteus-1.2.1/examples/run_poem_writer.py +0 -284
  651. autobyteus-1.2.1/examples/run_sqlite_agent.py +0 -295
  652. autobyteus-1.2.1/pyproject.toml +0 -6
  653. autobyteus-1.2.1/setup.py +0 -79
  654. {autobyteus-1.2.1 → autobyteus-1.3.0}/LICENSE +0 -0
  655. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/__init__.py +0 -0
  656. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent/__init__.py +0 -0
  657. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent/context/__init__.py +0 -0
  658. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent/context/agent_context_registry.py +0 -0
  659. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent/exceptions.py +0 -0
  660. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent/factory/__init__.py +0 -0
  661. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent/handlers/base_event_handler.py +0 -0
  662. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent/handlers/event_handler_registry.py +0 -0
  663. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent/handlers/generic_event_handler.py +0 -0
  664. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent/input_processor/__init__.py +0 -0
  665. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent/input_processor/base_user_input_processor.py +0 -0
  666. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent/input_processor/processor_definition.py +0 -0
  667. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent/input_processor/processor_meta.py +0 -0
  668. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent/input_processor/processor_registry.py +0 -0
  669. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent/llm_response_processor/base_processor.py +0 -0
  670. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent/llm_response_processor/processor_definition.py +0 -0
  671. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent/llm_response_processor/processor_meta.py +0 -0
  672. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent/llm_response_processor/processor_registry.py +0 -0
  673. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent/message/__init__.py +0 -0
  674. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent/message/agent_input_user_message.py +0 -0
  675. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent/message/context_file.py +0 -0
  676. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent/message/inter_agent_message.py +0 -0
  677. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent/message/inter_agent_message_type.py +0 -0
  678. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent/message/multimodal_message_builder.py +0 -0
  679. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent/message/send_message_to.py +0 -0
  680. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent/processor_option.py +0 -0
  681. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent/runtime/__init__.py +0 -0
  682. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent/runtime/agent_thread_pool_manager.py +0 -0
  683. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent/sender_type.py +0 -0
  684. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent/shutdown_steps/base_shutdown_step.py +0 -0
  685. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent/shutdown_steps/llm_instance_cleanup_step.py +0 -0
  686. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent/shutdown_steps/mcp_server_cleanup_step.py +0 -0
  687. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent/system_prompt_processor/processor_definition.py +0 -0
  688. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent/system_prompt_processor/processor_registry.py +0 -0
  689. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent/tool_execution_result_processor/__init__.py +0 -0
  690. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent/tool_execution_result_processor/base_processor.py +0 -0
  691. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent/tool_execution_result_processor/processor_definition.py +0 -0
  692. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent/tool_execution_result_processor/processor_meta.py +0 -0
  693. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent/tool_execution_result_processor/processor_registry.py +0 -0
  694. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent/utils/__init__.py +0 -0
  695. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent/workspace/__init__.py +0 -0
  696. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent/workspace/workspace_config.py +0 -0
  697. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent_team/__init__.py +0 -0
  698. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent_team/base_agent_team.py +0 -0
  699. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent_team/context/__init__.py +0 -0
  700. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent_team/context/team_manager.py +0 -0
  701. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent_team/context/team_node_config.py +0 -0
  702. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent_team/events/agent_team_input_event_queue_manager.py +0 -0
  703. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent_team/exceptions.py +0 -0
  704. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent_team/factory/__init__.py +0 -0
  705. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent_team/handlers/__init__.py +0 -0
  706. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent_team/handlers/agent_team_event_handler_registry.py +0 -0
  707. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent_team/handlers/base_agent_team_event_handler.py +0 -0
  708. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent_team/runtime/__init__.py +0 -0
  709. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent_team/shutdown_steps/__init__.py +0 -0
  710. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent_team/shutdown_steps/agent_team_shutdown_orchestrator.py +0 -0
  711. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent_team/shutdown_steps/agent_team_shutdown_step.py +0 -0
  712. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent_team/shutdown_steps/base_agent_team_shutdown_step.py +0 -0
  713. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent_team/shutdown_steps/bridge_cleanup_step.py +0 -0
  714. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent_team/shutdown_steps/sub_team_shutdown_step.py +0 -0
  715. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent_team/streaming/agent_event_bridge.py +0 -0
  716. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent_team/streaming/agent_event_multiplexer.py +0 -0
  717. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent_team/streaming/agent_team_event_stream.py +0 -0
  718. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent_team/streaming/team_event_bridge.py +0 -0
  719. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent_team/task_notification/__init__.py +0 -0
  720. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent_team/task_notification/activation_policy.py +0 -0
  721. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent_team/task_notification/system_event_driven_agent_task_notifier.py +0 -0
  722. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent_team/task_notification/task_activator.py +0 -0
  723. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/agent_team/utils/__init__.py +0 -0
  724. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/check_requirements.py +0 -0
  725. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/cli/__init__.py +0 -0
  726. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/cli/agent_team_tui/__init__.py +0 -0
  727. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/cli/agent_team_tui/widgets/__init__.py +0 -0
  728. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/cli/agent_team_tui/widgets/logo.py +0 -0
  729. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/cli/agent_team_tui/widgets/status_bar.py +0 -0
  730. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/cli/agent_team_tui/widgets/task_plan_panel.py +0 -0
  731. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/cli/workflow_tui/__init__.py +0 -0
  732. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/cli/workflow_tui/widgets/__init__.py +0 -0
  733. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/cli/workflow_tui/widgets/logo.py +0 -0
  734. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/cli/workflow_tui/widgets/status_bar.py +0 -0
  735. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/clients/__init__.py +0 -0
  736. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/clients/cert_utils.py +0 -0
  737. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/clients/certificates/cert.pem +0 -0
  738. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/events/__init__.py +0 -0
  739. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/events/event_emitter.py +0 -0
  740. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/events/event_manager.py +0 -0
  741. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/llm/__init__.py +0 -0
  742. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/llm/api/__init__.py +0 -0
  743. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/llm/api/deepseek_llm.py +0 -0
  744. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/llm/api/kimi_llm.py +0 -0
  745. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/llm/api/lmstudio_llm.py +0 -0
  746. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/llm/api/qwen_llm.py +0 -0
  747. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/llm/extensions/__init__.py +0 -0
  748. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/llm/extensions/extension_registry.py +0 -0
  749. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/llm/runtimes.py +0 -0
  750. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/llm/token_counter/__init__.py +0 -0
  751. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/llm/token_counter/base_token_counter.py +0 -0
  752. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/llm/token_counter/deepseek_token_counter.py +0 -0
  753. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/llm/token_counter/kimi_token_counter.py +0 -0
  754. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/llm/token_counter/zhipu_token_counter.py +0 -0
  755. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/llm/user_message.py +0 -0
  756. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/llm/utils/__init__.py +0 -0
  757. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/llm/utils/rate_limiter.py +0 -0
  758. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/llm/utils/token_usage.py +0 -0
  759. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/llm/utils/token_usage_tracker.py +0 -0
  760. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/multimedia/__init__.py +0 -0
  761. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/multimedia/audio/__init__.py +0 -0
  762. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/multimedia/audio/api/__init__.py +0 -0
  763. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/multimedia/audio/api/openai_audio_client.py +0 -0
  764. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/multimedia/audio/autobyteus_audio_provider.py +0 -0
  765. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/multimedia/audio/base_audio_client.py +0 -0
  766. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/multimedia/image/__init__.py +0 -0
  767. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/multimedia/image/api/__init__.py +0 -0
  768. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/multimedia/image/base_image_client.py +0 -0
  769. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/multimedia/runtimes.py +0 -0
  770. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/multimedia/utils/__init__.py +0 -0
  771. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/multimedia/utils/api_utils.py +0 -0
  772. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/multimedia/utils/multimedia_config.py +0 -0
  773. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/multimedia/utils/response_types.py +0 -0
  774. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/prompt/__init__.py +0 -0
  775. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/prompt/prompt_builder.py +0 -0
  776. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/prompt/prompt_template.py +0 -0
  777. {autobyteus-1.2.1/autobyteus/tools/browser/session_aware → autobyteus-1.3.0/autobyteus/skills}/__init__.py +0 -0
  778. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/task_management/__init__.py +0 -0
  779. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/task_management/base_task_plan.py +0 -0
  780. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/task_management/converters/__init__.py +0 -0
  781. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/task_management/converters/task_plan_converter.py +0 -0
  782. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/task_management/deliverable.py +0 -0
  783. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/task_management/deliverables/__init__.py +0 -0
  784. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/task_management/deliverables/file_deliverable.py +0 -0
  785. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/task_management/events.py +0 -0
  786. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/task_management/in_memory_task_plan.py +0 -0
  787. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/task_management/schemas/__init__.py +0 -0
  788. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/task_management/schemas/deliverable_schema.py +0 -0
  789. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/task_management/schemas/task_definition.py +0 -0
  790. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/task_management/schemas/task_status_report.py +0 -0
  791. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/task_management/schemas/todo_definition.py +0 -0
  792. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/task_management/task.py +0 -0
  793. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/task_management/todo.py +0 -0
  794. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/task_management/todo_list.py +0 -0
  795. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/task_management/tools/__init__.py +0 -0
  796. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/task_management/tools/task_tools/__init__.py +0 -0
  797. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/task_management/tools/task_tools/assign_task_to.py +0 -0
  798. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/task_management/tools/task_tools/create_task.py +0 -0
  799. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/task_management/tools/task_tools/create_tasks.py +0 -0
  800. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/task_management/tools/task_tools/get_my_tasks.py +0 -0
  801. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/task_management/tools/task_tools/get_task_plan_status.py +0 -0
  802. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/task_management/tools/task_tools/update_task_status.py +0 -0
  803. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/task_management/tools/todo_tools/__init__.py +0 -0
  804. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/task_management/tools/todo_tools/get_todo_list.py +0 -0
  805. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/factory/__init__.py +0 -0
  806. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/factory/tool_factory.py +0 -0
  807. {autobyteus-1.2.1/autobyteus/tools/browser/session_aware/factory → autobyteus-1.3.0/autobyteus/tools/handlers}/__init__.py +0 -0
  808. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/handlers/shell_handler.py +0 -0
  809. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/mcp/factory.py +0 -0
  810. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/mcp/schema_mapper.py +0 -0
  811. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/mcp/server/base_managed_mcp_server.py +0 -0
  812. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/mcp/server/proxy.py +0 -0
  813. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/mcp/server/stdio_managed_mcp_server.py +0 -0
  814. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/mcp/tool.py +0 -0
  815. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/mcp/tool_registrar.py +0 -0
  816. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/multimedia/__init__.py +0 -0
  817. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/multimedia/media_reader_tool.py +0 -0
  818. {autobyteus-1.2.1/autobyteus/tools/browser/standalone/factory → autobyteus-1.3.0/autobyteus/tools/operation}/__init__.py +0 -0
  819. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/operation/file_operation.py +0 -0
  820. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/operation/file_rename_operation.py +0 -0
  821. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/operation/operation.py +0 -0
  822. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/operation/shell_operation.py +0 -0
  823. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/pydantic_schema_converter.py +0 -0
  824. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/registry/__init__.py +0 -0
  825. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/registry/tool_registry.py +0 -0
  826. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/search/__init__.py +0 -0
  827. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/search/base_strategy.py +0 -0
  828. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/search/client.py +0 -0
  829. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/search/factory.py +0 -0
  830. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/search/google_cse_strategy.py +0 -0
  831. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/search/providers.py +0 -0
  832. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/search/serpapi_strategy.py +0 -0
  833. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/search/serper_strategy.py +0 -0
  834. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/search_tool.py +0 -0
  835. {autobyteus-1.2.1/autobyteus/tools/handlers → autobyteus-1.3.0/autobyteus/tools/skill}/__init__.py +0 -0
  836. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/tool_category.py +0 -0
  837. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/tool_config.py +0 -0
  838. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/tool_meta.py +0 -0
  839. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/tool_origin.py +0 -0
  840. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/tool_state.py +0 -0
  841. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/anthropic_json_example_formatter.py +0 -0
  842. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/anthropic_json_schema_formatter.py +0 -0
  843. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/default_json_example_formatter.py +0 -0
  844. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/default_json_schema_formatter.py +0 -0
  845. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/default_xml_example_formatter.py +0 -0
  846. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/gemini_json_example_formatter.py +0 -0
  847. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/gemini_json_schema_formatter.py +0 -0
  848. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/google_json_example_formatter.py +0 -0
  849. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/google_json_schema_formatter.py +0 -0
  850. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/openai_json_example_formatter.py +0 -0
  851. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/openai_json_schema_formatter.py +0 -0
  852. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/usage/providers/__init__.py +0 -0
  853. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/usage/registries/tool_formatter_pair.py +0 -0
  854. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/tools/utils.py +0 -0
  855. {autobyteus-1.2.1/autobyteus/tools/operation → autobyteus-1.3.0/autobyteus/utils}/__init__.py +0 -0
  856. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/utils/dynamic_enum.py +0 -0
  857. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/utils/html_cleaner.py +0 -0
  858. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/utils/parameter_schema.py +0 -0
  859. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/utils/singleton.py +0 -0
  860. {autobyteus-1.2.1/autobyteus/utils → autobyteus-1.3.0/autobyteus/workflow}/__init__.py +0 -0
  861. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/workflow/base_agentic_workflow.py +0 -0
  862. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/workflow/bootstrap_steps/__init__.py +0 -0
  863. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/workflow/context/__init__.py +0 -0
  864. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/workflow/context/team_manager.py +0 -0
  865. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/workflow/context/workflow_config.py +0 -0
  866. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/workflow/context/workflow_node_config.py +0 -0
  867. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/workflow/events/__init__.py +0 -0
  868. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/workflow/events/workflow_events.py +0 -0
  869. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/workflow/events/workflow_input_event_queue_manager.py +0 -0
  870. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/workflow/exceptions.py +0 -0
  871. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/workflow/factory/__init__.py +0 -0
  872. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/workflow/factory/workflow_factory.py +0 -0
  873. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/workflow/handlers/__init__.py +0 -0
  874. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/workflow/handlers/base_workflow_event_handler.py +0 -0
  875. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/workflow/handlers/inter_agent_message_request_event_handler.py +0 -0
  876. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/workflow/handlers/workflow_event_handler_registry.py +0 -0
  877. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/workflow/runtime/__init__.py +0 -0
  878. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/workflow/shutdown_steps/__init__.py +0 -0
  879. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/workflow/shutdown_steps/agent_team_shutdown_step.py +0 -0
  880. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/workflow/shutdown_steps/base_workflow_shutdown_step.py +0 -0
  881. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/workflow/shutdown_steps/bridge_cleanup_step.py +0 -0
  882. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/workflow/shutdown_steps/sub_workflow_shutdown_step.py +0 -0
  883. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/workflow/shutdown_steps/workflow_shutdown_orchestrator.py +0 -0
  884. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/workflow/streaming/agent_event_bridge.py +0 -0
  885. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/workflow/streaming/agent_event_multiplexer.py +0 -0
  886. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/workflow/streaming/workflow_event_bridge.py +0 -0
  887. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/workflow/streaming/workflow_event_stream.py +0 -0
  888. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/workflow/utils/__init__.py +0 -0
  889. {autobyteus-1.2.1 → autobyteus-1.3.0}/autobyteus/workflow/workflow_builder.py +0 -0
  890. {autobyteus-1.2.1 → autobyteus-1.3.0}/setup.cfg +0 -0
@@ -0,0 +1,293 @@
1
+ Metadata-Version: 2.4
2
+ Name: autobyteus
3
+ Version: 1.3.0
4
+ Summary: Multi-Agent framework
5
+ Author-email: Ryan Zheng <ryan.zheng.work@gmail.com>
6
+ License: MIT License with Additional Terms for Commercial Use
7
+
8
+ Permission is hereby granted, free of charge, to any person or organization obtaining a copy of this software and associated documentation files (the "Software"), to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, subject to the following conditions:
9
+
10
+ 1. Commercial Use: The use of the Software for commercial purposes requires the payment of a licensing fee. For details regarding licensing and fees, please contact ryan.zheng at ryan.zheng.work@gmail.com.
11
+
12
+ 2. Redistributions: Redistributions of the Software in source code or other forms must include the above copyright notice, this list of conditions, and the following disclaimer.
13
+
14
+ 3. Patent Grant: The provisions of the Apache 2.0 License regarding patent grants apply to this License.
15
+
16
+ 4. No Warranty/Liability: The Software is provided "as is," without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose, and non-infringement. In no event shall the authors or copyright holders be liable for any claim, damages, or other liability, whether in an action of contract, tort, or otherwise, arising from, out of, or in connection with the Software or the use or other dealings in the Software.
17
+
18
+ AutoByteus
19
+ 17.07.2023
20
+
21
+ Project-URL: Homepage, https://github.com/AutoByteus/autobyteus
22
+ Classifier: Development Status :: 3 - Alpha
23
+ Classifier: Intended Audience :: Developers
24
+ Classifier: License :: OSI Approved :: MIT License
25
+ Classifier: Programming Language :: Python :: 3.11
26
+ Requires-Python: <3.12,>=3.11
27
+ Description-Content-Type: text/markdown
28
+ License-File: LICENSE
29
+ Requires-Dist: aiohttp
30
+ Requires-Dist: anthropic
31
+ Requires-Dist: beautifulsoup4
32
+ Requires-Dist: boto3
33
+ Requires-Dist: botocore
34
+ Requires-Dist: certifi==2025.4.26
35
+ Requires-Dist: cryptography
36
+ Requires-Dist: google-api-python-client
37
+ Requires-Dist: google-genai
38
+ Requires-Dist: httpx
39
+ Requires-Dist: Jinja2
40
+ Requires-Dist: mcp[cli]
41
+ Requires-Dist: mistral_common
42
+ Requires-Dist: mistralai==1.9.9
43
+ Requires-Dist: numpy
44
+ Requires-Dist: ollama
45
+ Requires-Dist: openai
46
+ Requires-Dist: requests
47
+ Requires-Dist: websockets>=12.0
48
+ Requires-Dist: rich
49
+ Requires-Dist: textual
50
+ Requires-Dist: tiktoken
51
+ Requires-Dist: tokenizers
52
+ Provides-Extra: dev
53
+ Requires-Dist: build; extra == "dev"
54
+ Requires-Dist: coverage; extra == "dev"
55
+ Requires-Dist: flake8; extra == "dev"
56
+ Requires-Dist: numpy; extra == "dev"
57
+ Requires-Dist: pre-commit; extra == "dev"
58
+ Requires-Dist: black; extra == "dev"
59
+ Requires-Dist: isort; extra == "dev"
60
+ Requires-Dist: gitpython==3.1.31; extra == "dev"
61
+ Requires-Dist: auto-gpt-plugin-template; extra == "dev"
62
+ Requires-Dist: mkdocs; extra == "dev"
63
+ Requires-Dist: pytest; extra == "dev"
64
+ Requires-Dist: asynctest; extra == "dev"
65
+ Requires-Dist: pytest-asyncio; extra == "dev"
66
+ Requires-Dist: pytest-benchmark; extra == "dev"
67
+ Requires-Dist: pytest-cov; extra == "dev"
68
+ Requires-Dist: pytest-integration; extra == "dev"
69
+ Requires-Dist: pytest-mock; extra == "dev"
70
+ Requires-Dist: vcrpy; extra == "dev"
71
+ Requires-Dist: pytest-vcr; extra == "dev"
72
+ Requires-Dist: load_dotenv; extra == "dev"
73
+ Dynamic: license-file
74
+
75
+ # Autobyteus
76
+
77
+ Autobyteus is an open-source, application-first agentic framework for Python. It is designed to help developers build, test, and deploy complex, stateful, and extensible AI agents by providing a robust architecture and a powerful set of tools.
78
+
79
+ ![Autobyteus TUI Dashboard](docs/images/image_1.png)
80
+
81
+ ## Architecture
82
+
83
+ Autobyteus is built with a modular, event-driven architecture designed for extensibility and clear separation of concerns. The key components are:
84
+
85
+ - **Agent Core**: The heart of the system. Each agent is a stateful, autonomous entity that runs as a background process in its own thread, managed by a dedicated `AgentWorker`. This design makes every agent a truly independent entity capable of handling long-running tasks.
86
+ - **Agent Teams**: ([Design Doc](docs/agent_team_design.md)) The framework provides powerful constructs for building hierarchical multi-agent systems. The `AgentTeam` module allows you to compose teams of individual agents and even nest teams within other teams, enabling sophisticated, real-world organizational structures and delegation patterns.
87
+ - **Context & Configuration**: Agent behavior is defined through a static configuration (`AgentConfig`) and its dynamic state is managed in `AgentRuntimeState`. These are bundled into a comprehensive `AgentContext` that is passed to all components, providing a single source of truth.
88
+ - **Event-Driven System**: ([Design Doc](docs/event_driven_core_design.md)) Agents operate on an internal `asyncio` event loop. User messages, tool results, and internal signals are handled as events, which are processed by dedicated `EventHandlers`. This decouples logic and makes the system highly extensible.
89
+ - **Pluggable Processors & Hooks**: The framework provides a chain of extension points to inject custom logic at every major step of an agent's reasoning loop. This architecture powers features like flexible tool format parsing. You can customize behavior by implementing:
90
+ - **`InputProcessors`**: To modify or enrich user messages _before_ they are sent to the LLM.
91
+ - **`LLMResponseProcessors`**: To parse the LLM's raw output and extract structured actions, such as tool calls.
92
+ - **`ToolExecutionResultProcessors` (Tool Result Processors)**: To modify the result from a tool _before_ it is sent back to the LLM for the next step of reasoning (e.g., formatting, summarization, artifact extraction).
93
+ - **Lifecycle Event Processors**: To run custom code on specific lifecycle events (e.g., `BEFORE_LLM_CALL`, `AFTER_TOOL_EXECUTE`).
94
+ - **Context-Aware Tooling**: Tools are first-class citizens that receive the agent's full `AgentContext` during execution. This allows tools to be deeply integrated with the agent's state, configuration, and workspace, enabling more intelligent and powerful actions.
95
+ - **Tool Approval Flow**: The framework has native support for human-in-the-loop workflows. By setting `auto_execute_tools=False` in the agent's configuration, the agent will pause before executing a tool, emit an event requesting permission, and wait for external approval before proceeding.
96
+ - **MCP Integration**: The framework has native support for the Model Context Protocol (MCP). This allows agents to discover and use tools from external, language-agnostic tool servers, making the ecosystem extremely flexible and ready for enterprise integration.
97
+ - **Agent Skills**: ([Design Doc](docs/skills_design.md)) A powerful mechanism for extending agent capabilities using modular, file-based skills. Each skill is a directory containing a map (`SKILL.md`) and arbitrary assets (code, docs, templates). Skills can be preloaded or dynamically fetched via the `load_skill` tool, enabling human-like, just-in-time retrieval without bloating the context window.
98
+
99
+ ## Key Features
100
+
101
+ #### Interactive TUI Dashboard
102
+
103
+ Launch and monitor your agent teams with our built-in Textual-based TUI.
104
+
105
+ - **Hierarchical View**: See the structure of your team, including sub-teams and their agents.
106
+ - **Real-Time Status**: Agent and team statuses are updated live, showing you who is idle, thinking, or executing a tool.
107
+ - **Detailed Logs**: Select any agent to view a detailed, streaming log of their thoughts, actions, and tool interactions.
108
+ - **Live Task Plan**: Watch your team's `TaskPlan` update in real-time as the coordinator publishes a plan and agents complete their tasks.
109
+
110
+ | TUI - Detailed Agent Log | TUI - Task Plan with Completed Task |
111
+ | :----------------------------------------------: | :----------------------------------------------: |
112
+ | ![Autobyteus Agent Log](docs/images/image_4.png) | ![Autobyteus Task Plan](docs/images/image_3.png) |
113
+
114
+ #### Fluent Team Building
115
+
116
+ Define complex agent and team structures with an intuitive, fluent API. The `AgentTeamBuilder` makes composing your team simple and readable.
117
+
118
+ ```python
119
+ # --- From the Multi-Researcher Team Example ---
120
+ research_team = (
121
+ AgentTeamBuilder(
122
+ name="MultiSpecialistResearchTeam",
123
+ description="A team for delegating to multiple specialists."
124
+ )
125
+ .set_coordinator(coordinator_config)
126
+ .add_agent_node(researcher_web_config)
127
+ .add_agent_node(researcher_db_config)
128
+ .build()
129
+ )
130
+ ```
131
+
132
+ #### Flexible Tool Formatting (JSON & XML)
133
+
134
+ Autobyteus intelligently handles tool communication with LLMs while giving you full control.
135
+
136
+ - **Provider-Aware by Default**: The framework automatically generates tool manifests in the optimal format for the selected LLM provider (e.g., JSON for OpenAI/Gemini, XML for Anthropic).
137
+ - **Format Override via Env**: Set `AUTOBYTEUS_STREAM_PARSER=xml` (or `json`) to force tool-call formatting to that format regardless of provider. This can be useful for consistency or for large, complex schemas.
138
+
139
+ #### Flexible Communication Protocols
140
+
141
+ Choose the collaboration pattern that best fits your use case with configurable `TaskNotificationMode`s.
142
+
143
+ - **Env Override**: Set `AUTOBYTEUS_TASK_NOTIFICATION_MODE=system_event_driven` (or `agent_manual_notification`) to pick the default for all teams.
144
+ - **`AGENT_MANUAL_NOTIFICATION` (Default)**: A traditional approach where a coordinator agent is responsible for creating a plan and then explicitly notifying other agents to begin their work via messages.
145
+ - **`SYSTEM_EVENT_DRIVEN`**: A more automated approach where the coordinator's only job is to publish a plan to the `TaskPlan`. The framework then monitors the board and automatically notifies agents when their tasks become unblocked, enabling parallel execution and reducing coordinator overhead.
146
+
147
+ ## Requirements
148
+
149
+ - **Python Version**: Python 3.11.x is the supported version for this project (>=3.11,<3.12). Using other versions may cause dependency conflicts.
150
+ - **Platform Support**:
151
+ - **Linux/macOS**: Full support for all tools.
152
+ - **Windows**: Supported via **WSL (Windows Subsystem for Linux)**.
153
+ - **WSL Required**: Terminal tools (`run_bash`, etc.) require WSL installed (`wsl --install`) and an active Linux distribution.
154
+ - **Default Distro**: If you have multiple WSL distros, set Ubuntu as the default to avoid Docker's minimal distro:
155
+ - `wsl -l -v`
156
+ - `wsl --set-default Ubuntu`
157
+ - **Dependency**: `tmux` is required inside WSL for terminal integration on Windows.
158
+ - For detailed Windows setup, see the **[Terminal Tools Documentation](docs/terminal_tools.md#platform-support)**.
159
+
160
+ ## Getting Started
161
+
162
+ ### Installation
163
+
164
+ 1. **Clone the repository:**
165
+
166
+ ```bash
167
+ git clone https://github.com/your-username/autobyteus.git
168
+ cd autobyteus
169
+ ```
170
+
171
+ 2. **Create a local `uv` environment (recommended):**
172
+
173
+ ```bash
174
+ uv venv .venv --python 3.11
175
+ ```
176
+
177
+ 3. **Install dependencies:**
178
+
179
+ - **For users:**
180
+ ```bash
181
+ uv sync
182
+ ```
183
+ - **For developers:**
184
+ ```bash
185
+ uv sync --extra dev
186
+ ```
187
+
188
+ 4. **Set up Environment Variables:**
189
+ Create a `.env` file in the root of the project and add your LLM provider API keys:
190
+ ```
191
+ # .env
192
+ OPENAI_API_KEY="sk-..."
193
+ KIMI_API_KEY="your-kimi-api-key"
194
+ # etc.
195
+ ```
196
+
197
+ ### Running the Examples
198
+
199
+ The best way to experience Autobyteus is to run one of the included examples. The event-driven software engineering team is a great showcase of the framework's capabilities.
200
+
201
+ ```bash
202
+ # Run the event-driven software engineering team example
203
+ python autobyteus/examples/agent_team/event_driven/run_software_engineering_team.py --llm-model gpt-4o
204
+
205
+ # Run the hierarchical debate team example
206
+ python autobyteus/examples/agent_team/manual_notification/run_debate_team.py --llm-model gpt-4-turbo
207
+
208
+ # Run the hierarchical skills example (modular, file-based capabilities)
209
+ python examples/run_agent_with_skill.py --llm-model gpt-4o
210
+ ```
211
+
212
+ You can see all available models and their identifiers by running an example with the `--help-models` flag.
213
+
214
+ ## Testing
215
+
216
+ ### Streamable HTTP MCP integration
217
+
218
+ Some integration tests rely on the toy streamable MCP server that lives in
219
+ `autobyteus_mcps/streamable_http_mcp_toy`. Start it in a separate terminal
220
+ before running the test, for example:
221
+
222
+ ```bash
223
+ cd autobyteus_mcps/streamable_http_mcp_toy
224
+ python src/streamable_http_mcp_toy/server.py --host 127.0.0.1 --port 8764
225
+ ```
226
+
227
+ With the server running, execute the HTTP transport test:
228
+
229
+ ```bash
230
+ uv run python -m pytest tests/integration_tests/tools/mcp/test_http_managed_server_integration.py
231
+ ```
232
+
233
+ If you bind the server elsewhere, set `STREAMABLE_HTTP_MCP_URL` to the full
234
+ `http://` or `https://` endpoint before running pytest so the test can find it.
235
+
236
+ ### Secure WebSocket (WSS) MCP integration
237
+
238
+ The toy WebSocket MCP server lives in `autobyteus_mcps/wss_mcp_toy`. It exposes
239
+ the same diagnostic tools as the HTTP toy server but requires TLS and an Origin
240
+ header. To exercise the WebSocket transport:
241
+
242
+ 1. In a separate terminal start the toy server:
243
+
244
+ ```bash
245
+ cd autobyteus_mcps/wss_mcp_toy
246
+ python3 -m venv .venv
247
+ source .venv/bin/activate
248
+ pip install -e .
249
+ ./scripts/generate-dev-cert.sh # creates certs/dev-cert.pem + certs/dev-key.pem
250
+ wss-mcp-toy --cert certs/dev-cert.pem --key certs/dev-key.pem --host 127.0.0.1 --port 8765 --allowed-origin https://localhost
251
+ ```
252
+
253
+ 2. Run the WebSocket transport test (defaults assume the process above is
254
+ listening on `wss://127.0.0.1:8765/mcp`):
255
+
256
+ ```bash
257
+ uv run python -m pytest tests/integration_tests/tools/mcp/test_websocket_managed_server_integration.py
258
+ ```
259
+
260
+ Customize the target URL or TLS behavior via environment variables when
261
+ running pytest:
262
+
263
+ - `WSS_MCP_URL` – full `ws://` or `wss://` endpoint (default `wss://127.0.0.1:8765/mcp`).
264
+ - `WSS_MCP_ORIGIN` – Origin header value (default `https://localhost`).
265
+ - `WSS_MCP_VERIFY_TLS` – set to `true`/`1` to enforce TLS verification
266
+ (default `false` for the self-signed dev cert).
267
+ - `WSS_MCP_CA_FILE`, `WSS_MCP_CLIENT_CERT`, `WSS_MCP_CLIENT_KEY` – optional
268
+ paths if you want to trust a custom CA or present a client certificate.
269
+
270
+ ### Building the Library
271
+
272
+ To build Autobyteus as a distributable package, follow these steps:
273
+
274
+ 1. Ensure dev dependencies are installed:
275
+
276
+ ```bash
277
+ uv sync --extra dev
278
+ ```
279
+
280
+ 2. Build the distribution packages defined in `pyproject.toml`:
281
+ ```
282
+ uv run python -m build
283
+ ```
284
+
285
+ This will create a `dist` directory containing the `sdist` and `wheel` artifacts.
286
+
287
+ ## Contributing
288
+
289
+ (Add guidelines for contributing to the project)
290
+
291
+ ## License
292
+
293
+ This project is licensed under the MIT License.
@@ -0,0 +1,219 @@
1
+ # Autobyteus
2
+
3
+ Autobyteus is an open-source, application-first agentic framework for Python. It is designed to help developers build, test, and deploy complex, stateful, and extensible AI agents by providing a robust architecture and a powerful set of tools.
4
+
5
+ ![Autobyteus TUI Dashboard](docs/images/image_1.png)
6
+
7
+ ## Architecture
8
+
9
+ Autobyteus is built with a modular, event-driven architecture designed for extensibility and clear separation of concerns. The key components are:
10
+
11
+ - **Agent Core**: The heart of the system. Each agent is a stateful, autonomous entity that runs as a background process in its own thread, managed by a dedicated `AgentWorker`. This design makes every agent a truly independent entity capable of handling long-running tasks.
12
+ - **Agent Teams**: ([Design Doc](docs/agent_team_design.md)) The framework provides powerful constructs for building hierarchical multi-agent systems. The `AgentTeam` module allows you to compose teams of individual agents and even nest teams within other teams, enabling sophisticated, real-world organizational structures and delegation patterns.
13
+ - **Context & Configuration**: Agent behavior is defined through a static configuration (`AgentConfig`) and its dynamic state is managed in `AgentRuntimeState`. These are bundled into a comprehensive `AgentContext` that is passed to all components, providing a single source of truth.
14
+ - **Event-Driven System**: ([Design Doc](docs/event_driven_core_design.md)) Agents operate on an internal `asyncio` event loop. User messages, tool results, and internal signals are handled as events, which are processed by dedicated `EventHandlers`. This decouples logic and makes the system highly extensible.
15
+ - **Pluggable Processors & Hooks**: The framework provides a chain of extension points to inject custom logic at every major step of an agent's reasoning loop. This architecture powers features like flexible tool format parsing. You can customize behavior by implementing:
16
+ - **`InputProcessors`**: To modify or enrich user messages _before_ they are sent to the LLM.
17
+ - **`LLMResponseProcessors`**: To parse the LLM's raw output and extract structured actions, such as tool calls.
18
+ - **`ToolExecutionResultProcessors` (Tool Result Processors)**: To modify the result from a tool _before_ it is sent back to the LLM for the next step of reasoning (e.g., formatting, summarization, artifact extraction).
19
+ - **Lifecycle Event Processors**: To run custom code on specific lifecycle events (e.g., `BEFORE_LLM_CALL`, `AFTER_TOOL_EXECUTE`).
20
+ - **Context-Aware Tooling**: Tools are first-class citizens that receive the agent's full `AgentContext` during execution. This allows tools to be deeply integrated with the agent's state, configuration, and workspace, enabling more intelligent and powerful actions.
21
+ - **Tool Approval Flow**: The framework has native support for human-in-the-loop workflows. By setting `auto_execute_tools=False` in the agent's configuration, the agent will pause before executing a tool, emit an event requesting permission, and wait for external approval before proceeding.
22
+ - **MCP Integration**: The framework has native support for the Model Context Protocol (MCP). This allows agents to discover and use tools from external, language-agnostic tool servers, making the ecosystem extremely flexible and ready for enterprise integration.
23
+ - **Agent Skills**: ([Design Doc](docs/skills_design.md)) A powerful mechanism for extending agent capabilities using modular, file-based skills. Each skill is a directory containing a map (`SKILL.md`) and arbitrary assets (code, docs, templates). Skills can be preloaded or dynamically fetched via the `load_skill` tool, enabling human-like, just-in-time retrieval without bloating the context window.
24
+
25
+ ## Key Features
26
+
27
+ #### Interactive TUI Dashboard
28
+
29
+ Launch and monitor your agent teams with our built-in Textual-based TUI.
30
+
31
+ - **Hierarchical View**: See the structure of your team, including sub-teams and their agents.
32
+ - **Real-Time Status**: Agent and team statuses are updated live, showing you who is idle, thinking, or executing a tool.
33
+ - **Detailed Logs**: Select any agent to view a detailed, streaming log of their thoughts, actions, and tool interactions.
34
+ - **Live Task Plan**: Watch your team's `TaskPlan` update in real-time as the coordinator publishes a plan and agents complete their tasks.
35
+
36
+ | TUI - Detailed Agent Log | TUI - Task Plan with Completed Task |
37
+ | :----------------------------------------------: | :----------------------------------------------: |
38
+ | ![Autobyteus Agent Log](docs/images/image_4.png) | ![Autobyteus Task Plan](docs/images/image_3.png) |
39
+
40
+ #### Fluent Team Building
41
+
42
+ Define complex agent and team structures with an intuitive, fluent API. The `AgentTeamBuilder` makes composing your team simple and readable.
43
+
44
+ ```python
45
+ # --- From the Multi-Researcher Team Example ---
46
+ research_team = (
47
+ AgentTeamBuilder(
48
+ name="MultiSpecialistResearchTeam",
49
+ description="A team for delegating to multiple specialists."
50
+ )
51
+ .set_coordinator(coordinator_config)
52
+ .add_agent_node(researcher_web_config)
53
+ .add_agent_node(researcher_db_config)
54
+ .build()
55
+ )
56
+ ```
57
+
58
+ #### Flexible Tool Formatting (JSON & XML)
59
+
60
+ Autobyteus intelligently handles tool communication with LLMs while giving you full control.
61
+
62
+ - **Provider-Aware by Default**: The framework automatically generates tool manifests in the optimal format for the selected LLM provider (e.g., JSON for OpenAI/Gemini, XML for Anthropic).
63
+ - **Format Override via Env**: Set `AUTOBYTEUS_STREAM_PARSER=xml` (or `json`) to force tool-call formatting to that format regardless of provider. This can be useful for consistency or for large, complex schemas.
64
+
65
+ #### Flexible Communication Protocols
66
+
67
+ Choose the collaboration pattern that best fits your use case with configurable `TaskNotificationMode`s.
68
+
69
+ - **Env Override**: Set `AUTOBYTEUS_TASK_NOTIFICATION_MODE=system_event_driven` (or `agent_manual_notification`) to pick the default for all teams.
70
+ - **`AGENT_MANUAL_NOTIFICATION` (Default)**: A traditional approach where a coordinator agent is responsible for creating a plan and then explicitly notifying other agents to begin their work via messages.
71
+ - **`SYSTEM_EVENT_DRIVEN`**: A more automated approach where the coordinator's only job is to publish a plan to the `TaskPlan`. The framework then monitors the board and automatically notifies agents when their tasks become unblocked, enabling parallel execution and reducing coordinator overhead.
72
+
73
+ ## Requirements
74
+
75
+ - **Python Version**: Python 3.11.x is the supported version for this project (>=3.11,<3.12). Using other versions may cause dependency conflicts.
76
+ - **Platform Support**:
77
+ - **Linux/macOS**: Full support for all tools.
78
+ - **Windows**: Supported via **WSL (Windows Subsystem for Linux)**.
79
+ - **WSL Required**: Terminal tools (`run_bash`, etc.) require WSL installed (`wsl --install`) and an active Linux distribution.
80
+ - **Default Distro**: If you have multiple WSL distros, set Ubuntu as the default to avoid Docker's minimal distro:
81
+ - `wsl -l -v`
82
+ - `wsl --set-default Ubuntu`
83
+ - **Dependency**: `tmux` is required inside WSL for terminal integration on Windows.
84
+ - For detailed Windows setup, see the **[Terminal Tools Documentation](docs/terminal_tools.md#platform-support)**.
85
+
86
+ ## Getting Started
87
+
88
+ ### Installation
89
+
90
+ 1. **Clone the repository:**
91
+
92
+ ```bash
93
+ git clone https://github.com/your-username/autobyteus.git
94
+ cd autobyteus
95
+ ```
96
+
97
+ 2. **Create a local `uv` environment (recommended):**
98
+
99
+ ```bash
100
+ uv venv .venv --python 3.11
101
+ ```
102
+
103
+ 3. **Install dependencies:**
104
+
105
+ - **For users:**
106
+ ```bash
107
+ uv sync
108
+ ```
109
+ - **For developers:**
110
+ ```bash
111
+ uv sync --extra dev
112
+ ```
113
+
114
+ 4. **Set up Environment Variables:**
115
+ Create a `.env` file in the root of the project and add your LLM provider API keys:
116
+ ```
117
+ # .env
118
+ OPENAI_API_KEY="sk-..."
119
+ KIMI_API_KEY="your-kimi-api-key"
120
+ # etc.
121
+ ```
122
+
123
+ ### Running the Examples
124
+
125
+ The best way to experience Autobyteus is to run one of the included examples. The event-driven software engineering team is a great showcase of the framework's capabilities.
126
+
127
+ ```bash
128
+ # Run the event-driven software engineering team example
129
+ python autobyteus/examples/agent_team/event_driven/run_software_engineering_team.py --llm-model gpt-4o
130
+
131
+ # Run the hierarchical debate team example
132
+ python autobyteus/examples/agent_team/manual_notification/run_debate_team.py --llm-model gpt-4-turbo
133
+
134
+ # Run the hierarchical skills example (modular, file-based capabilities)
135
+ python examples/run_agent_with_skill.py --llm-model gpt-4o
136
+ ```
137
+
138
+ You can see all available models and their identifiers by running an example with the `--help-models` flag.
139
+
140
+ ## Testing
141
+
142
+ ### Streamable HTTP MCP integration
143
+
144
+ Some integration tests rely on the toy streamable MCP server that lives in
145
+ `autobyteus_mcps/streamable_http_mcp_toy`. Start it in a separate terminal
146
+ before running the test, for example:
147
+
148
+ ```bash
149
+ cd autobyteus_mcps/streamable_http_mcp_toy
150
+ python src/streamable_http_mcp_toy/server.py --host 127.0.0.1 --port 8764
151
+ ```
152
+
153
+ With the server running, execute the HTTP transport test:
154
+
155
+ ```bash
156
+ uv run python -m pytest tests/integration_tests/tools/mcp/test_http_managed_server_integration.py
157
+ ```
158
+
159
+ If you bind the server elsewhere, set `STREAMABLE_HTTP_MCP_URL` to the full
160
+ `http://` or `https://` endpoint before running pytest so the test can find it.
161
+
162
+ ### Secure WebSocket (WSS) MCP integration
163
+
164
+ The toy WebSocket MCP server lives in `autobyteus_mcps/wss_mcp_toy`. It exposes
165
+ the same diagnostic tools as the HTTP toy server but requires TLS and an Origin
166
+ header. To exercise the WebSocket transport:
167
+
168
+ 1. In a separate terminal start the toy server:
169
+
170
+ ```bash
171
+ cd autobyteus_mcps/wss_mcp_toy
172
+ python3 -m venv .venv
173
+ source .venv/bin/activate
174
+ pip install -e .
175
+ ./scripts/generate-dev-cert.sh # creates certs/dev-cert.pem + certs/dev-key.pem
176
+ wss-mcp-toy --cert certs/dev-cert.pem --key certs/dev-key.pem --host 127.0.0.1 --port 8765 --allowed-origin https://localhost
177
+ ```
178
+
179
+ 2. Run the WebSocket transport test (defaults assume the process above is
180
+ listening on `wss://127.0.0.1:8765/mcp`):
181
+
182
+ ```bash
183
+ uv run python -m pytest tests/integration_tests/tools/mcp/test_websocket_managed_server_integration.py
184
+ ```
185
+
186
+ Customize the target URL or TLS behavior via environment variables when
187
+ running pytest:
188
+
189
+ - `WSS_MCP_URL` – full `ws://` or `wss://` endpoint (default `wss://127.0.0.1:8765/mcp`).
190
+ - `WSS_MCP_ORIGIN` – Origin header value (default `https://localhost`).
191
+ - `WSS_MCP_VERIFY_TLS` – set to `true`/`1` to enforce TLS verification
192
+ (default `false` for the self-signed dev cert).
193
+ - `WSS_MCP_CA_FILE`, `WSS_MCP_CLIENT_CERT`, `WSS_MCP_CLIENT_KEY` – optional
194
+ paths if you want to trust a custom CA or present a client certificate.
195
+
196
+ ### Building the Library
197
+
198
+ To build Autobyteus as a distributable package, follow these steps:
199
+
200
+ 1. Ensure dev dependencies are installed:
201
+
202
+ ```bash
203
+ uv sync --extra dev
204
+ ```
205
+
206
+ 2. Build the distribution packages defined in `pyproject.toml`:
207
+ ```
208
+ uv run python -m build
209
+ ```
210
+
211
+ This will create a `dist` directory containing the `sdist` and `wheel` artifacts.
212
+
213
+ ## Contributing
214
+
215
+ (Add guidelines for contributing to the project)
216
+
217
+ ## License
218
+
219
+ This project is licensed under the MIT License.
@@ -0,0 +1,116 @@
1
+ # file: autobyteus/autobyteus/agent/agent.py
2
+ import asyncio
3
+ import logging
4
+ from typing import AsyncIterator, Optional, List, Any, Dict, TYPE_CHECKING
5
+
6
+ from autobyteus.agent.runtime.agent_runtime import AgentRuntime
7
+ from autobyteus.agent.status.status_enum import AgentStatus
8
+ from autobyteus.agent.message.agent_input_user_message import AgentInputUserMessage
9
+ from autobyteus.agent.message.inter_agent_message import InterAgentMessage
10
+ from autobyteus.agent.events import UserMessageReceivedEvent, InterAgentMessageReceivedEvent, ToolExecutionApprovalEvent, BaseEvent
11
+
12
+ if TYPE_CHECKING:
13
+ from autobyteus.agent.context import AgentContext
14
+
15
+ logger = logging.getLogger(__name__)
16
+
17
+ class Agent:
18
+ """
19
+ User-facing API for interacting with an agent's runtime.
20
+ It manages an underlying AgentRuntime instance and translates user actions
21
+ into events for the agent's event processing loop by submitting them
22
+ to AgentRuntime. Output is consumed via AgentEventStream which listens
23
+ to AgentExternalEventNotifier.
24
+ """
25
+
26
+ def __init__(self, runtime: AgentRuntime):
27
+ if not isinstance(runtime, AgentRuntime): # pragma: no cover
28
+ raise TypeError(f"Agent requires an AgentRuntime instance, got {type(runtime).__name__}")
29
+
30
+ self._runtime: AgentRuntime = runtime
31
+ self.agent_id: str = self._runtime.context.agent_id
32
+
33
+ logger.info(f"Agent facade initialized for agent_id '{self.agent_id}'.")
34
+
35
+ @property
36
+ def context(self) -> 'AgentContext':
37
+ return self._runtime.context
38
+
39
+ async def _submit_event_to_runtime(self, event: BaseEvent) -> None:
40
+ """Internal helper to submit an event to the runtime and handle startup."""
41
+ if not self._runtime.is_running: # pragma: no cover
42
+ logger.info(f"Agent '{self.agent_id}' runtime is not running. Calling start() before submitting event.")
43
+ self.start()
44
+ await asyncio.sleep(0.05)
45
+
46
+ logger.debug(f"Agent '{self.agent_id}': Submitting {type(event).__name__} to runtime.")
47
+ await self._runtime.submit_event(event)
48
+
49
+ async def post_user_message(self, agent_input_user_message: AgentInputUserMessage) -> None:
50
+ if not isinstance(agent_input_user_message, AgentInputUserMessage): # pragma: no cover
51
+ raise TypeError(f"Agent for '{self.agent_id}' received invalid type for user_message. Expected AgentInputUserMessage, got {type(agent_input_user_message)}.")
52
+
53
+ event = UserMessageReceivedEvent(agent_input_user_message=agent_input_user_message)
54
+ await self._submit_event_to_runtime(event)
55
+
56
+
57
+ async def post_inter_agent_message(self, inter_agent_message: InterAgentMessage) -> None:
58
+ if not isinstance(inter_agent_message, InterAgentMessage): # pragma: no cover
59
+ raise TypeError(
60
+ f"Agent for '{self.agent_id}' received invalid type for inter_agent_message. "
61
+ f"Expected InterAgentMessage, got {type(inter_agent_message).__name__}."
62
+ )
63
+
64
+ event = InterAgentMessageReceivedEvent(inter_agent_message=inter_agent_message)
65
+ await self._submit_event_to_runtime(event)
66
+
67
+
68
+ async def post_tool_execution_approval(self,
69
+ tool_invocation_id: str,
70
+ is_approved: bool,
71
+ reason: Optional[str] = None) -> None:
72
+ if not isinstance(tool_invocation_id, str) or not tool_invocation_id: # pragma: no cover
73
+ raise ValueError("tool_invocation_id must be a non-empty string.")
74
+ if not isinstance(is_approved, bool): # pragma: no cover
75
+ raise TypeError("is_approved must be a boolean.")
76
+
77
+ approval_event = ToolExecutionApprovalEvent(
78
+ tool_invocation_id=tool_invocation_id,
79
+ is_approved=is_approved,
80
+ reason=reason
81
+ )
82
+ await self._submit_event_to_runtime(approval_event)
83
+
84
+ def get_current_status(self) -> AgentStatus:
85
+ """
86
+ Returns the current status of the agent.
87
+
88
+ Returns:
89
+ AgentStatus: The current status of the agent.
90
+ """
91
+ # If the runtime hasn't started yet, we are uninitialized.
92
+ if not self._runtime:
93
+ return AgentStatus.UNINITIALIZED
94
+
95
+ return self._runtime.current_status_property
96
+
97
+ @property
98
+ def is_running(self) -> bool:
99
+ return self._runtime.is_running
100
+
101
+ def start(self) -> None:
102
+ if self._runtime.is_running: # pragma: no cover
103
+ logger.info(f"Agent '{self.agent_id}' runtime is already running. Ignoring start command.")
104
+ return
105
+
106
+ logger.info(f"Agent '{self.agent_id}' requesting runtime to start.")
107
+ self._runtime.start()
108
+
109
+ async def stop(self, timeout: float = 10.0) -> None: # pragma: no cover
110
+ logger.info(f"Agent '{self.agent_id}' requesting runtime to stop (timeout: {timeout}s).")
111
+ await self._runtime.stop(timeout=timeout)
112
+
113
+
114
+ def __repr__(self) -> str:
115
+ status_val = self._runtime.current_status_property.value
116
+ return f"<Agent agent_id='{self.agent_id}', current_status='{status_val}'>"
@@ -0,0 +1,21 @@
1
+ # file: autobyteus/autobyteus/agent/bootstrap_steps/__init__.py
2
+ """
3
+ Defines individual, self-contained steps for the agent bootstrapping process.
4
+ These steps are orchestrated by the BootstrapEventHandler.
5
+ """
6
+
7
+ from .base_bootstrap_step import BaseBootstrapStep
8
+ from .workspace_context_initialization_step import WorkspaceContextInitializationStep
9
+ # ToolInitializationStep is no longer a bootstrap step.
10
+ from .system_prompt_processing_step import SystemPromptProcessingStep
11
+ from .mcp_server_prewarming_step import McpServerPrewarmingStep
12
+ from .working_context_snapshot_restore_step import WorkingContextSnapshotRestoreStep
13
+ # LLMConfigFinalizationStep and LLMInstanceCreationStep removed.
14
+
15
+ __all__ = [
16
+ "BaseBootstrapStep",
17
+ "WorkspaceContextInitializationStep",
18
+ "SystemPromptProcessingStep",
19
+ "McpServerPrewarmingStep",
20
+ "WorkingContextSnapshotRestoreStep",
21
+ ]