autobyteus 1.2.3__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 (610) hide show
  1. {autobyteus-1.2.3 → autobyteus-1.3.0}/PKG-INFO +2 -2
  2. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/bootstrap_steps/__init__.py +2 -0
  3. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/bootstrap_steps/agent_bootstrapper.py +2 -0
  4. autobyteus-1.3.0/autobyteus/agent/bootstrap_steps/working_context_snapshot_restore_step.py +38 -0
  5. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/context/agent_config.py +5 -1
  6. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/context/agent_runtime_state.py +2 -0
  7. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/factory/agent_factory.py +38 -13
  8. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/input_processor/memory_ingest_input_processor.py +4 -0
  9. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/llm_request_assembler.py +5 -5
  10. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/segments/segment_events.py +1 -0
  11. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/memory/__init__.py +3 -0
  12. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/memory/memory_manager.py +32 -10
  13. autobyteus-1.3.0/autobyteus/memory/path_resolver.py +27 -0
  14. autobyteus-1.3.0/autobyteus/memory/restore/__init__.py +1 -0
  15. autobyteus-1.3.0/autobyteus/memory/restore/working_context_snapshot_bootstrapper.py +61 -0
  16. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/memory/store/__init__.py +2 -0
  17. autobyteus-1.3.0/autobyteus/memory/store/working_context_snapshot_store.py +28 -0
  18. autobyteus-1.2.3/autobyteus/memory/active_transcript.py → autobyteus-1.3.0/autobyteus/memory/working_context_snapshot.py +1 -1
  19. autobyteus-1.3.0/autobyteus/memory/working_context_snapshot_serializer.py +135 -0
  20. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/audio/api/gemini_audio_client.py +2 -1
  21. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/image/api/gemini_image_client.py +2 -1
  22. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/utils/gemini_helper.py +16 -8
  23. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus.egg-info/SOURCES.txt +7 -1
  24. {autobyteus-1.2.3 → autobyteus-1.3.0}/pyproject.toml +2 -2
  25. {autobyteus-1.2.3 → autobyteus-1.3.0}/LICENSE +0 -0
  26. {autobyteus-1.2.3 → autobyteus-1.3.0}/README.md +0 -0
  27. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/__init__.py +0 -0
  28. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/__init__.py +0 -0
  29. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/agent.py +0 -0
  30. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/bootstrap_steps/base_bootstrap_step.py +0 -0
  31. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/bootstrap_steps/mcp_server_prewarming_step.py +0 -0
  32. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/bootstrap_steps/system_prompt_processing_step.py +0 -0
  33. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/bootstrap_steps/workspace_context_initialization_step.py +0 -0
  34. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/context/__init__.py +0 -0
  35. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/context/agent_context.py +0 -0
  36. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/context/agent_context_registry.py +0 -0
  37. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/events/__init__.py +0 -0
  38. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/events/agent_events.py +0 -0
  39. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/events/agent_input_event_queue_manager.py +0 -0
  40. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/events/event_store.py +0 -0
  41. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/events/notifiers.py +0 -0
  42. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/events/worker_event_dispatcher.py +0 -0
  43. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/exceptions.py +0 -0
  44. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/factory/__init__.py +0 -0
  45. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/handlers/__init__.py +0 -0
  46. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/handlers/approved_tool_invocation_event_handler.py +0 -0
  47. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/handlers/base_event_handler.py +0 -0
  48. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/handlers/bootstrap_event_handler.py +0 -0
  49. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/handlers/event_handler_registry.py +0 -0
  50. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/handlers/generic_event_handler.py +0 -0
  51. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/handlers/inter_agent_message_event_handler.py +0 -0
  52. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/handlers/lifecycle_event_logger.py +0 -0
  53. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/handlers/llm_complete_response_received_event_handler.py +0 -0
  54. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/handlers/llm_user_message_ready_event_handler.py +0 -0
  55. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/handlers/tool_execution_approval_event_handler.py +0 -0
  56. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/handlers/tool_invocation_request_event_handler.py +0 -0
  57. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/handlers/tool_result_event_handler.py +0 -0
  58. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/handlers/user_input_message_event_handler.py +0 -0
  59. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/input_processor/__init__.py +0 -0
  60. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/input_processor/base_user_input_processor.py +0 -0
  61. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/input_processor/processor_definition.py +0 -0
  62. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/input_processor/processor_meta.py +0 -0
  63. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/input_processor/processor_registry.py +0 -0
  64. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/lifecycle/__init__.py +0 -0
  65. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/lifecycle/base_processor.py +0 -0
  66. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/lifecycle/events.py +0 -0
  67. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/lifecycle/processor_definition.py +0 -0
  68. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/lifecycle/processor_registry.py +0 -0
  69. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/llm_response_processor/__init__.py +0 -0
  70. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/llm_response_processor/base_processor.py +0 -0
  71. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/llm_response_processor/processor_definition.py +0 -0
  72. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/llm_response_processor/processor_meta.py +0 -0
  73. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/llm_response_processor/processor_registry.py +0 -0
  74. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/message/__init__.py +0 -0
  75. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/message/agent_input_user_message.py +0 -0
  76. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/message/context_file.py +0 -0
  77. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/message/context_file_type.py +0 -0
  78. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/message/inter_agent_message.py +0 -0
  79. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/message/inter_agent_message_type.py +0 -0
  80. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/message/multimodal_message_builder.py +0 -0
  81. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/message/send_message_to.py +0 -0
  82. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/processor_option.py +0 -0
  83. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/runtime/__init__.py +0 -0
  84. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/runtime/agent_runtime.py +0 -0
  85. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/runtime/agent_thread_pool_manager.py +0 -0
  86. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/runtime/agent_worker.py +0 -0
  87. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/sender_type.py +0 -0
  88. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/shutdown_steps/__init__.py +0 -0
  89. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/shutdown_steps/agent_shutdown_orchestrator.py +0 -0
  90. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/shutdown_steps/base_shutdown_step.py +0 -0
  91. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/shutdown_steps/llm_instance_cleanup_step.py +0 -0
  92. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/shutdown_steps/mcp_server_cleanup_step.py +0 -0
  93. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/shutdown_steps/tool_cleanup_step.py +0 -0
  94. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/status/__init__.py +0 -0
  95. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/status/manager.py +0 -0
  96. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/status/status_deriver.py +0 -0
  97. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/status/status_enum.py +0 -0
  98. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/status/status_update_utils.py +0 -0
  99. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/__init__.py +0 -0
  100. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/adapters/__init__.py +0 -0
  101. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/adapters/invocation_adapter.py +0 -0
  102. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/adapters/tool_call_parsing.py +0 -0
  103. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/adapters/tool_syntax_registry.py +0 -0
  104. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/agent_event_stream.py +0 -0
  105. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/api_tool_call/__init__.py +0 -0
  106. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/api_tool_call/file_content_streamer.py +0 -0
  107. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/api_tool_call/json_string_field_extractor.py +0 -0
  108. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/api_tool_call_streaming_response_handler.py +0 -0
  109. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/events/__init__.py +0 -0
  110. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/events/stream_event_payloads.py +0 -0
  111. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/events/stream_events.py +0 -0
  112. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/handlers/__init__.py +0 -0
  113. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/handlers/api_tool_call_streaming_response_handler.py +0 -0
  114. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/handlers/parsing_streaming_response_handler.py +0 -0
  115. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/handlers/pass_through_streaming_response_handler.py +0 -0
  116. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/handlers/streaming_handler_factory.py +0 -0
  117. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/handlers/streaming_response_handler.py +0 -0
  118. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/__init__.py +0 -0
  119. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/event_emitter.py +0 -0
  120. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/events.py +0 -0
  121. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/invocation_adapter.py +0 -0
  122. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/json_parsing_strategies/__init__.py +0 -0
  123. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/json_parsing_strategies/base.py +0 -0
  124. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/json_parsing_strategies/default.py +0 -0
  125. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/json_parsing_strategies/gemini.py +0 -0
  126. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/json_parsing_strategies/openai.py +0 -0
  127. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/json_parsing_strategies/registry.py +0 -0
  128. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/parser_context.py +0 -0
  129. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/parser_factory.py +0 -0
  130. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/sentinel_format.py +0 -0
  131. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/state_factory.py +0 -0
  132. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/states/__init__.py +0 -0
  133. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/states/base_state.py +0 -0
  134. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/states/custom_xml_tag_run_bash_parsing_state.py +0 -0
  135. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/states/custom_xml_tag_write_file_parsing_state.py +0 -0
  136. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/states/delimited_content_state.py +0 -0
  137. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/states/json_initialization_state.py +0 -0
  138. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/states/json_tool_parsing_state.py +0 -0
  139. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/states/sentinel_content_state.py +0 -0
  140. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/states/sentinel_initialization_state.py +0 -0
  141. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/states/text_state.py +0 -0
  142. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/states/xml_patch_file_tool_parsing_state.py +0 -0
  143. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/states/xml_run_bash_tool_parsing_state.py +0 -0
  144. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/states/xml_tag_initialization_state.py +0 -0
  145. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/states/xml_tool_parsing_state.py +0 -0
  146. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/states/xml_write_file_tool_parsing_state.py +0 -0
  147. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/strategies/__init__.py +0 -0
  148. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/strategies/base.py +0 -0
  149. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/strategies/json_tool_strategy.py +0 -0
  150. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/strategies/registry.py +0 -0
  151. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/strategies/sentinel_strategy.py +0 -0
  152. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/strategies/xml_tag_strategy.py +0 -0
  153. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/stream_scanner.py +0 -0
  154. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/streaming_parser.py +0 -0
  155. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/tool_call_parsing.py +0 -0
  156. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/tool_constants.py +0 -0
  157. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/tool_syntax_registry.py +0 -0
  158. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/xml_tool_parsing_state_registry.py +0 -0
  159. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parsing_streaming_response_handler.py +0 -0
  160. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/pass_through_streaming_response_handler.py +0 -0
  161. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/queue_streamer.py +0 -0
  162. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/segments/__init__.py +0 -0
  163. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/stream_event_payloads.py +0 -0
  164. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/stream_events.py +0 -0
  165. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/streaming_handler_factory.py +0 -0
  166. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/streaming_response_handler.py +0 -0
  167. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/streams/__init__.py +0 -0
  168. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/streams/agent_event_stream.py +0 -0
  169. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/utils/__init__.py +0 -0
  170. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/utils/queue_streamer.py +0 -0
  171. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/system_prompt_processor/__init__.py +0 -0
  172. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/system_prompt_processor/available_skills_processor.py +0 -0
  173. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/system_prompt_processor/base_processor.py +0 -0
  174. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/system_prompt_processor/processor_definition.py +0 -0
  175. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/system_prompt_processor/processor_meta.py +0 -0
  176. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/system_prompt_processor/processor_registry.py +0 -0
  177. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/system_prompt_processor/tool_manifest_injector_processor.py +0 -0
  178. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/token_budget.py +0 -0
  179. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/tool_execution_result_processor/__init__.py +0 -0
  180. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/tool_execution_result_processor/base_processor.py +0 -0
  181. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/tool_execution_result_processor/memory_ingest_tool_result_processor.py +0 -0
  182. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/tool_execution_result_processor/processor_definition.py +0 -0
  183. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/tool_execution_result_processor/processor_meta.py +0 -0
  184. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/tool_execution_result_processor/processor_registry.py +0 -0
  185. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/tool_invocation.py +0 -0
  186. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/tool_invocation_preprocessor/__init__.py +0 -0
  187. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/tool_invocation_preprocessor/base_preprocessor.py +0 -0
  188. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/tool_invocation_preprocessor/processor_definition.py +0 -0
  189. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/tool_invocation_preprocessor/processor_meta.py +0 -0
  190. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/tool_invocation_preprocessor/processor_registry.py +0 -0
  191. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/utils/__init__.py +0 -0
  192. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/utils/wait_for_idle.py +0 -0
  193. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/workspace/__init__.py +0 -0
  194. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/workspace/base_workspace.py +0 -0
  195. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/workspace/workspace_config.py +0 -0
  196. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/__init__.py +0 -0
  197. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/agent_team.py +0 -0
  198. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/agent_team_builder.py +0 -0
  199. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/base_agent_team.py +0 -0
  200. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/bootstrap_steps/__init__.py +0 -0
  201. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/bootstrap_steps/agent_configuration_preparation_step.py +0 -0
  202. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/bootstrap_steps/agent_team_bootstrapper.py +0 -0
  203. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/bootstrap_steps/base_agent_team_bootstrap_step.py +0 -0
  204. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/bootstrap_steps/coordinator_initialization_step.py +0 -0
  205. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/bootstrap_steps/task_notifier_initialization_step.py +0 -0
  206. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/bootstrap_steps/team_context_initialization_step.py +0 -0
  207. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/context/__init__.py +0 -0
  208. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/context/agent_team_config.py +0 -0
  209. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/context/agent_team_context.py +0 -0
  210. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/context/agent_team_runtime_state.py +0 -0
  211. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/context/team_manager.py +0 -0
  212. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/context/team_node_config.py +0 -0
  213. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/events/__init__.py +0 -0
  214. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/events/agent_team_event_dispatcher.py +0 -0
  215. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/events/agent_team_events.py +0 -0
  216. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/events/agent_team_input_event_queue_manager.py +0 -0
  217. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/events/event_store.py +0 -0
  218. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/exceptions.py +0 -0
  219. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/factory/__init__.py +0 -0
  220. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/factory/agent_team_factory.py +0 -0
  221. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/handlers/__init__.py +0 -0
  222. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/handlers/agent_team_event_handler_registry.py +0 -0
  223. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/handlers/base_agent_team_event_handler.py +0 -0
  224. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/handlers/inter_agent_message_request_event_handler.py +0 -0
  225. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/handlers/lifecycle_agent_team_event_handler.py +0 -0
  226. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/handlers/process_user_message_event_handler.py +0 -0
  227. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/handlers/tool_approval_team_event_handler.py +0 -0
  228. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/runtime/__init__.py +0 -0
  229. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/runtime/agent_team_runtime.py +0 -0
  230. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/runtime/agent_team_worker.py +0 -0
  231. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/shutdown_steps/__init__.py +0 -0
  232. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/shutdown_steps/agent_team_shutdown_orchestrator.py +0 -0
  233. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/shutdown_steps/agent_team_shutdown_step.py +0 -0
  234. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/shutdown_steps/base_agent_team_shutdown_step.py +0 -0
  235. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/shutdown_steps/bridge_cleanup_step.py +0 -0
  236. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/shutdown_steps/sub_team_shutdown_step.py +0 -0
  237. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/status/__init__.py +0 -0
  238. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/status/agent_team_status.py +0 -0
  239. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/status/agent_team_status_manager.py +0 -0
  240. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/status/status_deriver.py +0 -0
  241. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/status/status_update_utils.py +0 -0
  242. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/streaming/__init__.py +0 -0
  243. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/streaming/agent_event_bridge.py +0 -0
  244. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/streaming/agent_event_multiplexer.py +0 -0
  245. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/streaming/agent_team_event_notifier.py +0 -0
  246. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/streaming/agent_team_event_stream.py +0 -0
  247. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/streaming/agent_team_stream_event_payloads.py +0 -0
  248. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/streaming/agent_team_stream_events.py +0 -0
  249. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/streaming/team_event_bridge.py +0 -0
  250. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/system_prompt_processor/__init__.py +0 -0
  251. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/system_prompt_processor/team_manifest_injector_processor.py +0 -0
  252. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/task_notification/__init__.py +0 -0
  253. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/task_notification/activation_policy.py +0 -0
  254. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/task_notification/system_event_driven_agent_task_notifier.py +0 -0
  255. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/task_notification/task_activator.py +0 -0
  256. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/task_notification/task_notification_mode.py +0 -0
  257. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/utils/__init__.py +0 -0
  258. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/utils/wait_for_idle.py +0 -0
  259. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/check_requirements.py +0 -0
  260. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/__init__.py +0 -0
  261. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/agent_cli.py +0 -0
  262. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/agent_team_tui/__init__.py +0 -0
  263. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/agent_team_tui/app.css +0 -0
  264. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/agent_team_tui/app.py +0 -0
  265. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/agent_team_tui/state.py +0 -0
  266. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/agent_team_tui/widgets/__init__.py +0 -0
  267. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/agent_team_tui/widgets/agent_list_sidebar.py +0 -0
  268. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/agent_team_tui/widgets/focus_pane.py +0 -0
  269. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/agent_team_tui/widgets/logo.py +0 -0
  270. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/agent_team_tui/widgets/renderables.py +0 -0
  271. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/agent_team_tui/widgets/shared.py +0 -0
  272. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/agent_team_tui/widgets/status_bar.py +0 -0
  273. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/agent_team_tui/widgets/task_plan_panel.py +0 -0
  274. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/cli_display.py +0 -0
  275. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/workflow_tui/__init__.py +0 -0
  276. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/workflow_tui/app.css +0 -0
  277. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/workflow_tui/app.py +0 -0
  278. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/workflow_tui/state.py +0 -0
  279. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/workflow_tui/widgets/__init__.py +0 -0
  280. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/workflow_tui/widgets/agent_list_sidebar.py +0 -0
  281. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/workflow_tui/widgets/focus_pane.py +0 -0
  282. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/workflow_tui/widgets/logo.py +0 -0
  283. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/workflow_tui/widgets/renderables.py +0 -0
  284. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/workflow_tui/widgets/shared.py +0 -0
  285. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/workflow_tui/widgets/status_bar.py +0 -0
  286. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/clients/__init__.py +0 -0
  287. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/clients/autobyteus_client.py +0 -0
  288. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/clients/cert_utils.py +0 -0
  289. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/clients/certificates/cert.pem +0 -0
  290. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/config.toml.template +0 -0
  291. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/events/__init__.py +0 -0
  292. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/events/event_emitter.py +0 -0
  293. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/events/event_manager.py +0 -0
  294. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/events/event_types.py +0 -0
  295. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/__init__.py +0 -0
  296. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/api/__init__.py +0 -0
  297. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/api/autobyteus_llm.py +0 -0
  298. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/api/claude_llm.py +0 -0
  299. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/api/deepseek_llm.py +0 -0
  300. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/api/gemini_llm.py +0 -0
  301. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/api/grok_llm.py +0 -0
  302. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/api/kimi_llm.py +0 -0
  303. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/api/lmstudio_llm.py +0 -0
  304. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/api/minimax_llm.py +0 -0
  305. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/api/mistral_llm.py +0 -0
  306. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/api/ollama_llm.py +0 -0
  307. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/api/openai_compatible_llm.py +0 -0
  308. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/api/openai_llm.py +0 -0
  309. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/api/openai_responses_llm.py +0 -0
  310. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/api/qwen_llm.py +0 -0
  311. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/api/zhipu_llm.py +0 -0
  312. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/autobyteus_provider.py +0 -0
  313. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/base_llm.py +0 -0
  314. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/converters/__init__.py +0 -0
  315. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/converters/anthropic_tool_call_converter.py +0 -0
  316. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/converters/gemini_tool_call_converter.py +0 -0
  317. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/converters/mistral_tool_call_converter.py +0 -0
  318. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/converters/openai_tool_call_converter.py +0 -0
  319. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/extensions/__init__.py +0 -0
  320. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/extensions/base_extension.py +0 -0
  321. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/extensions/extension_registry.py +0 -0
  322. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/extensions/token_usage_tracking_extension.py +0 -0
  323. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/llm_factory.py +0 -0
  324. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/lmstudio_provider.py +0 -0
  325. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/models.py +0 -0
  326. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/ollama_provider.py +0 -0
  327. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/ollama_provider_resolver.py +0 -0
  328. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/prompt_renderers/__init__.py +0 -0
  329. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/prompt_renderers/anthropic_prompt_renderer.py +0 -0
  330. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/prompt_renderers/autobyteus_prompt_renderer.py +0 -0
  331. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/prompt_renderers/base_prompt_renderer.py +0 -0
  332. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/prompt_renderers/gemini_prompt_renderer.py +0 -0
  333. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/prompt_renderers/mistral_prompt_renderer.py +0 -0
  334. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/prompt_renderers/ollama_prompt_renderer.py +0 -0
  335. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/prompt_renderers/openai_chat_renderer.py +0 -0
  336. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/prompt_renderers/openai_responses_renderer.py +0 -0
  337. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/providers.py +0 -0
  338. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/runtimes.py +0 -0
  339. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/token_counter/__init__.py +0 -0
  340. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/token_counter/base_token_counter.py +0 -0
  341. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/token_counter/claude_token_counter.py +0 -0
  342. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/token_counter/deepseek_token_counter.py +0 -0
  343. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/token_counter/kimi_token_counter.py +0 -0
  344. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/token_counter/mistral_token_counter.py +0 -0
  345. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/token_counter/openai_token_counter.py +0 -0
  346. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/token_counter/token_counter_factory.py +0 -0
  347. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/token_counter/zhipu_token_counter.py +0 -0
  348. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/user_message.py +0 -0
  349. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/utils/__init__.py +0 -0
  350. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/utils/llm_config.py +0 -0
  351. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/utils/media_payload_formatter.py +0 -0
  352. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/utils/messages.py +0 -0
  353. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/utils/rate_limiter.py +0 -0
  354. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/utils/response_types.py +0 -0
  355. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/utils/token_usage.py +0 -0
  356. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/utils/token_usage_tracker.py +0 -0
  357. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/utils/tool_call_delta.py +0 -0
  358. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/memory/compaction/__init__.py +0 -0
  359. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/memory/compaction/compaction_result.py +0 -0
  360. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/memory/compaction/compactor.py +0 -0
  361. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/memory/compaction/summarizer.py +0 -0
  362. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/memory/compaction_snapshot_builder.py +0 -0
  363. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/memory/models/__init__.py +0 -0
  364. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/memory/models/episodic_item.py +0 -0
  365. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/memory/models/memory_types.py +0 -0
  366. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/memory/models/raw_trace_item.py +0 -0
  367. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/memory/models/semantic_item.py +0 -0
  368. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/memory/models/tool_interaction.py +0 -0
  369. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/memory/policies/__init__.py +0 -0
  370. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/memory/policies/compaction_policy.py +0 -0
  371. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/memory/retrieval/__init__.py +0 -0
  372. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/memory/retrieval/memory_bundle.py +0 -0
  373. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/memory/retrieval/retriever.py +0 -0
  374. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/memory/store/base_store.py +0 -0
  375. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/memory/store/file_store.py +0 -0
  376. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/memory/tool_interaction_builder.py +0 -0
  377. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/memory/turn_tracker.py +0 -0
  378. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/__init__.py +0 -0
  379. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/audio/__init__.py +0 -0
  380. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/audio/api/__init__.py +0 -0
  381. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/audio/api/autobyteus_audio_client.py +0 -0
  382. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/audio/api/openai_audio_client.py +0 -0
  383. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/audio/audio_client_factory.py +0 -0
  384. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/audio/audio_model.py +0 -0
  385. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/audio/autobyteus_audio_provider.py +0 -0
  386. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/audio/base_audio_client.py +0 -0
  387. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/image/__init__.py +0 -0
  388. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/image/api/__init__.py +0 -0
  389. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/image/api/autobyteus_image_client.py +0 -0
  390. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/image/api/openai_image_client.py +0 -0
  391. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/image/autobyteus_image_provider.py +0 -0
  392. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/image/base_image_client.py +0 -0
  393. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/image/image_client_factory.py +0 -0
  394. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/image/image_model.py +0 -0
  395. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/providers.py +0 -0
  396. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/runtimes.py +0 -0
  397. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/utils/__init__.py +0 -0
  398. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/utils/api_utils.py +0 -0
  399. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/utils/multimedia_config.py +0 -0
  400. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/utils/response_types.py +0 -0
  401. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/prompt/__init__.py +0 -0
  402. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/prompt/prompt_builder.py +0 -0
  403. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/prompt/prompt_template.py +0 -0
  404. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/skills/__init__.py +0 -0
  405. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/skills/loader.py +0 -0
  406. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/skills/model.py +0 -0
  407. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/skills/registry.py +0 -0
  408. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/__init__.py +0 -0
  409. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/base_task_plan.py +0 -0
  410. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/converters/__init__.py +0 -0
  411. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/converters/task_plan_converter.py +0 -0
  412. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/deliverable.py +0 -0
  413. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/deliverables/__init__.py +0 -0
  414. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/deliverables/file_deliverable.py +0 -0
  415. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/events.py +0 -0
  416. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/in_memory_task_plan.py +0 -0
  417. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/schemas/__init__.py +0 -0
  418. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/schemas/deliverable_schema.py +0 -0
  419. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/schemas/task_definition.py +0 -0
  420. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/schemas/task_status_report.py +0 -0
  421. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/schemas/todo_definition.py +0 -0
  422. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/task.py +0 -0
  423. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/todo.py +0 -0
  424. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/todo_list.py +0 -0
  425. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/tools/__init__.py +0 -0
  426. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/tools/task_tools/__init__.py +0 -0
  427. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/tools/task_tools/assign_task_to.py +0 -0
  428. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/tools/task_tools/create_task.py +0 -0
  429. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/tools/task_tools/create_tasks.py +0 -0
  430. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/tools/task_tools/get_my_tasks.py +0 -0
  431. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/tools/task_tools/get_task_plan_status.py +0 -0
  432. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/tools/task_tools/update_task_status.py +0 -0
  433. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/tools/todo_tools/__init__.py +0 -0
  434. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/tools/todo_tools/add_todo.py +0 -0
  435. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/tools/todo_tools/create_todo_list.py +0 -0
  436. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/tools/todo_tools/get_todo_list.py +0 -0
  437. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/tools/todo_tools/update_todo_status.py +0 -0
  438. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/__init__.py +0 -0
  439. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/base_tool.py +0 -0
  440. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/factory/__init__.py +0 -0
  441. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/factory/tool_factory.py +0 -0
  442. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/file/__init__.py +0 -0
  443. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/file/patch_file.py +0 -0
  444. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/file/read_file.py +0 -0
  445. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/file/write_file.py +0 -0
  446. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/functional_tool.py +0 -0
  447. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/handlers/__init__.py +0 -0
  448. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/handlers/shell_handler.py +0 -0
  449. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/mcp/__init__.py +0 -0
  450. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/mcp/config_service.py +0 -0
  451. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/mcp/factory.py +0 -0
  452. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/mcp/schema_mapper.py +0 -0
  453. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/mcp/server/__init__.py +0 -0
  454. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/mcp/server/base_managed_mcp_server.py +0 -0
  455. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/mcp/server/http_managed_mcp_server.py +0 -0
  456. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/mcp/server/proxy.py +0 -0
  457. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/mcp/server/stdio_managed_mcp_server.py +0 -0
  458. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/mcp/server/websocket_managed_mcp_server.py +0 -0
  459. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/mcp/server_instance_manager.py +0 -0
  460. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/mcp/tool.py +0 -0
  461. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/mcp/tool_registrar.py +0 -0
  462. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/mcp/types.py +0 -0
  463. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/multimedia/__init__.py +0 -0
  464. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/multimedia/audio_tools.py +0 -0
  465. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/multimedia/download_media_tool.py +0 -0
  466. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/multimedia/image_tools.py +0 -0
  467. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/multimedia/media_reader_tool.py +0 -0
  468. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/operation/__init__.py +0 -0
  469. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/operation/file_operation.py +0 -0
  470. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/operation/file_rename_operation.py +0 -0
  471. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/operation/operation.py +0 -0
  472. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/operation/shell_operation.py +0 -0
  473. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/operation_executor/journal_manager.py +0 -0
  474. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/operation_executor/operation_event_buffer.py +0 -0
  475. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/operation_executor/operation_event_producer.py +0 -0
  476. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/operation_executor/operation_executor.py +0 -0
  477. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/pydantic_schema_converter.py +0 -0
  478. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/registry/__init__.py +0 -0
  479. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/registry/tool_definition.py +0 -0
  480. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/registry/tool_registry.py +0 -0
  481. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/search/__init__.py +0 -0
  482. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/search/base_strategy.py +0 -0
  483. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/search/client.py +0 -0
  484. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/search/factory.py +0 -0
  485. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/search/google_cse_strategy.py +0 -0
  486. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/search/providers.py +0 -0
  487. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/search/serpapi_strategy.py +0 -0
  488. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/search/serper_strategy.py +0 -0
  489. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/search_tool.py +0 -0
  490. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/skill/__init__.py +0 -0
  491. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/skill/load_skill.py +0 -0
  492. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/terminal/__init__.py +0 -0
  493. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/terminal/ansi_utils.py +0 -0
  494. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/terminal/background_process_manager.py +0 -0
  495. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/terminal/output_buffer.py +0 -0
  496. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/terminal/prompt_detector.py +0 -0
  497. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/terminal/pty_session.py +0 -0
  498. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/terminal/session_factory.py +0 -0
  499. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/terminal/terminal_session_manager.py +0 -0
  500. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/terminal/tools/__init__.py +0 -0
  501. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/terminal/tools/get_process_output.py +0 -0
  502. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/terminal/tools/run_bash.py +0 -0
  503. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/terminal/tools/start_background_process.py +0 -0
  504. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/terminal/tools/stop_background_process.py +0 -0
  505. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/terminal/types.py +0 -0
  506. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/terminal/wsl_tmux_session.py +0 -0
  507. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/terminal/wsl_utils.py +0 -0
  508. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/tool_category.py +0 -0
  509. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/tool_config.py +0 -0
  510. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/tool_meta.py +0 -0
  511. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/tool_origin.py +0 -0
  512. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/tool_state.py +0 -0
  513. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/transaction_management/backup_handler.py +0 -0
  514. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/transaction_management/operation_lifecycle_manager.py +0 -0
  515. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/__init__.py +0 -0
  516. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/__init__.py +0 -0
  517. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/anthropic_json_example_formatter.py +0 -0
  518. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/anthropic_json_schema_formatter.py +0 -0
  519. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/base_formatter.py +0 -0
  520. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/default_json_example_formatter.py +0 -0
  521. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/default_json_schema_formatter.py +0 -0
  522. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/default_xml_example_formatter.py +0 -0
  523. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/default_xml_schema_formatter.py +0 -0
  524. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/gemini_json_example_formatter.py +0 -0
  525. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/gemini_json_schema_formatter.py +0 -0
  526. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/google_json_example_formatter.py +0 -0
  527. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/google_json_schema_formatter.py +0 -0
  528. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/mistral_json_schema_formatter.py +0 -0
  529. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/openai_json_example_formatter.py +0 -0
  530. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/openai_json_schema_formatter.py +0 -0
  531. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/patch_file_xml_example_formatter.py +0 -0
  532. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/patch_file_xml_schema_formatter.py +0 -0
  533. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/run_bash_xml_example_formatter.py +0 -0
  534. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/run_bash_xml_schema_formatter.py +0 -0
  535. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/write_file_xml_example_formatter.py +0 -0
  536. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/write_file_xml_schema_formatter.py +0 -0
  537. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/providers/__init__.py +0 -0
  538. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/providers/tool_manifest_provider.py +0 -0
  539. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/registries/__init__.py +0 -0
  540. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/registries/tool_formatter_pair.py +0 -0
  541. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/registries/tool_formatting_registry.py +0 -0
  542. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/tool_schema_provider.py +0 -0
  543. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/utils.py +0 -0
  544. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/web/__init__.py +0 -0
  545. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/web/read_url_tool.py +0 -0
  546. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/utils/__init__.py +0 -0
  547. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/utils/diff_utils.py +0 -0
  548. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/utils/download_utils.py +0 -0
  549. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/utils/dynamic_enum.py +0 -0
  550. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/utils/file_utils.py +0 -0
  551. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/utils/gemini_model_mapping.py +0 -0
  552. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/utils/html_cleaner.py +0 -0
  553. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/utils/llm_output_formatter.py +0 -0
  554. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/utils/parameter_schema.py +0 -0
  555. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/utils/singleton.py +0 -0
  556. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/utils/tool_call_format.py +0 -0
  557. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/__init__.py +0 -0
  558. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/agentic_workflow.py +0 -0
  559. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/base_agentic_workflow.py +0 -0
  560. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/bootstrap_steps/__init__.py +0 -0
  561. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/bootstrap_steps/agent_tool_injection_step.py +0 -0
  562. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/bootstrap_steps/base_workflow_bootstrap_step.py +0 -0
  563. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/bootstrap_steps/coordinator_initialization_step.py +0 -0
  564. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/bootstrap_steps/coordinator_prompt_preparation_step.py +0 -0
  565. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/bootstrap_steps/workflow_bootstrapper.py +0 -0
  566. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/bootstrap_steps/workflow_runtime_queue_initialization_step.py +0 -0
  567. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/context/__init__.py +0 -0
  568. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/context/team_manager.py +0 -0
  569. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/context/workflow_config.py +0 -0
  570. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/context/workflow_context.py +0 -0
  571. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/context/workflow_node_config.py +0 -0
  572. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/context/workflow_runtime_state.py +0 -0
  573. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/events/__init__.py +0 -0
  574. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/events/workflow_event_dispatcher.py +0 -0
  575. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/events/workflow_events.py +0 -0
  576. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/events/workflow_input_event_queue_manager.py +0 -0
  577. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/exceptions.py +0 -0
  578. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/factory/__init__.py +0 -0
  579. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/factory/workflow_factory.py +0 -0
  580. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/handlers/__init__.py +0 -0
  581. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/handlers/base_workflow_event_handler.py +0 -0
  582. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/handlers/inter_agent_message_request_event_handler.py +0 -0
  583. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/handlers/lifecycle_workflow_event_handler.py +0 -0
  584. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/handlers/process_user_message_event_handler.py +0 -0
  585. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/handlers/tool_approval_workflow_event_handler.py +0 -0
  586. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/handlers/workflow_event_handler_registry.py +0 -0
  587. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/runtime/__init__.py +0 -0
  588. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/runtime/workflow_runtime.py +0 -0
  589. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/runtime/workflow_worker.py +0 -0
  590. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/shutdown_steps/__init__.py +0 -0
  591. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/shutdown_steps/agent_team_shutdown_step.py +0 -0
  592. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/shutdown_steps/base_workflow_shutdown_step.py +0 -0
  593. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/shutdown_steps/bridge_cleanup_step.py +0 -0
  594. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/shutdown_steps/sub_workflow_shutdown_step.py +0 -0
  595. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/shutdown_steps/workflow_shutdown_orchestrator.py +0 -0
  596. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/status/__init__.py +0 -0
  597. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/status/workflow_status.py +0 -0
  598. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/status/workflow_status_manager.py +0 -0
  599. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/streaming/__init__.py +0 -0
  600. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/streaming/agent_event_bridge.py +0 -0
  601. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/streaming/agent_event_multiplexer.py +0 -0
  602. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/streaming/workflow_event_bridge.py +0 -0
  603. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/streaming/workflow_event_notifier.py +0 -0
  604. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/streaming/workflow_event_stream.py +0 -0
  605. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/streaming/workflow_stream_event_payloads.py +0 -0
  606. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/streaming/workflow_stream_events.py +0 -0
  607. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/utils/__init__.py +0 -0
  608. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/utils/wait_for_idle.py +0 -0
  609. {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/workflow_builder.py +0 -0
  610. {autobyteus-1.2.3 → autobyteus-1.3.0}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: autobyteus
3
- Version: 1.2.3
3
+ Version: 1.3.0
4
4
  Summary: Multi-Agent framework
5
5
  Author-email: Ryan Zheng <ryan.zheng.work@gmail.com>
6
6
  License: MIT License with Additional Terms for Commercial Use
@@ -34,7 +34,7 @@ Requires-Dist: botocore
34
34
  Requires-Dist: certifi==2025.4.26
35
35
  Requires-Dist: cryptography
36
36
  Requires-Dist: google-api-python-client
37
- Requires-Dist: google-genai==1.52.0
37
+ Requires-Dist: google-genai
38
38
  Requires-Dist: httpx
39
39
  Requires-Dist: Jinja2
40
40
  Requires-Dist: mcp[cli]
@@ -9,6 +9,7 @@ from .workspace_context_initialization_step import WorkspaceContextInitializatio
9
9
  # ToolInitializationStep is no longer a bootstrap step.
10
10
  from .system_prompt_processing_step import SystemPromptProcessingStep
11
11
  from .mcp_server_prewarming_step import McpServerPrewarmingStep
12
+ from .working_context_snapshot_restore_step import WorkingContextSnapshotRestoreStep
12
13
  # LLMConfigFinalizationStep and LLMInstanceCreationStep removed.
13
14
 
14
15
  __all__ = [
@@ -16,4 +17,5 @@ __all__ = [
16
17
  "WorkspaceContextInitializationStep",
17
18
  "SystemPromptProcessingStep",
18
19
  "McpServerPrewarmingStep",
20
+ "WorkingContextSnapshotRestoreStep",
19
21
  ]
@@ -5,6 +5,7 @@ from typing import List, Optional
5
5
  from .base_bootstrap_step import BaseBootstrapStep
6
6
  from .workspace_context_initialization_step import WorkspaceContextInitializationStep
7
7
  from .system_prompt_processing_step import SystemPromptProcessingStep
8
+ from .working_context_snapshot_restore_step import WorkingContextSnapshotRestoreStep
8
9
  from .mcp_server_prewarming_step import McpServerPrewarmingStep
9
10
 
10
11
  logger = logging.getLogger(__name__)
@@ -27,6 +28,7 @@ class AgentBootstrapper:
27
28
  WorkspaceContextInitializationStep(),
28
29
  McpServerPrewarmingStep(),
29
30
  SystemPromptProcessingStep(),
31
+ WorkingContextSnapshotRestoreStep(),
30
32
  ]
31
33
  logger.debug("AgentBootstrapper initialized with default steps.")
32
34
  else:
@@ -0,0 +1,38 @@
1
+ import logging
2
+ from typing import TYPE_CHECKING
3
+
4
+ from .base_bootstrap_step import BaseBootstrapStep
5
+ from autobyteus.memory.restore.working_context_snapshot_bootstrapper import WorkingContextSnapshotBootstrapper
6
+
7
+ if TYPE_CHECKING:
8
+ from autobyteus.agent.context import AgentContext
9
+
10
+ logger = logging.getLogger(__name__)
11
+
12
+
13
+ class WorkingContextSnapshotRestoreStep(BaseBootstrapStep):
14
+ def __init__(self, bootstrapper: WorkingContextSnapshotBootstrapper | None = None) -> None:
15
+ self._bootstrapper = bootstrapper or WorkingContextSnapshotBootstrapper()
16
+ logger.debug("WorkingContextSnapshotRestoreStep initialized.")
17
+
18
+ async def execute(self, context: "AgentContext") -> bool:
19
+ restore_options = getattr(context.state, "restore_options", None)
20
+ if not restore_options:
21
+ return True
22
+
23
+ memory_manager = getattr(context.state, "memory_manager", None)
24
+ if not memory_manager:
25
+ logger.error("WorkingContextSnapshotRestoreStep requires a memory manager to restore working context snapshot.")
26
+ return False
27
+
28
+ system_prompt = context.state.processed_system_prompt
29
+ if not system_prompt:
30
+ llm_instance = context.llm_instance
31
+ system_prompt = llm_instance.config.system_message if llm_instance else ""
32
+
33
+ try:
34
+ self._bootstrapper.bootstrap(memory_manager, system_prompt, restore_options)
35
+ return True
36
+ except Exception as exc: # pragma: no cover - defensive
37
+ logger.error("WorkingContextSnapshotRestoreStep failed: %s", exc, exc_info=True)
38
+ return False
@@ -48,7 +48,8 @@ class AgentConfig:
48
48
  workspace: Optional['BaseAgentWorkspace'] = None,
49
49
  lifecycle_processors: Optional[List['BaseLifecycleEventProcessor']] = None,
50
50
  initial_custom_data: Optional[Dict[str, Any]] = None,
51
- skills: Optional[List[str]] = None):
51
+ skills: Optional[List[str]] = None,
52
+ memory_dir: Optional[str] = None):
52
53
  """
53
54
  Initializes the AgentConfig.
54
55
 
@@ -71,6 +72,7 @@ class AgentConfig:
71
72
  initial_custom_data: An optional dictionary of data to pre-populate
72
73
  the agent's runtime state `custom_data`.
73
74
  skills: An optional list of skill names or paths to be preloaded for this agent.
75
+ memory_dir: Optional override for the agent memory base directory.
74
76
  """
75
77
  self.name = name
76
78
  self.role = role
@@ -91,6 +93,7 @@ class AgentConfig:
91
93
  self.lifecycle_processors = lifecycle_processors or []
92
94
  self.initial_custom_data = initial_custom_data
93
95
  self.skills = skills or []
96
+ self.memory_dir = memory_dir
94
97
 
95
98
  # Filter out ToolManifestInjectorProcessor if in API_TOOL_CALL mode
96
99
  tool_call_format = resolve_tool_call_format()
@@ -133,6 +136,7 @@ class AgentConfig:
133
136
  lifecycle_processors=self.lifecycle_processors.copy(), # Shallow copy the list
134
137
  initial_custom_data=copy.deepcopy(self.initial_custom_data), # Deep copy for simple data
135
138
  skills=self.skills.copy(), # Shallow copy the list
139
+ memory_dir=self.memory_dir,
136
140
  )
137
141
 
138
142
  def __repr__(self) -> str:
@@ -21,6 +21,7 @@ if TYPE_CHECKING:
21
21
  from autobyteus.tools.base_tool import BaseTool
22
22
  from autobyteus.agent.tool_invocation import ToolInvocationTurn
23
23
  from autobyteus.memory.memory_manager import MemoryManager
24
+ from autobyteus.memory.restore.working_context_snapshot_bootstrapper import WorkingContextSnapshotBootstrapOptions
24
25
 
25
26
  logger = logging.getLogger(__name__)
26
27
 
@@ -62,6 +63,7 @@ class AgentRuntimeState:
62
63
  # NEW: Memory manager and active turn tracking
63
64
  self.memory_manager: Optional["MemoryManager"] = None
64
65
  self.active_turn_id: Optional[str] = None
66
+ self.restore_options: Optional["WorkingContextSnapshotBootstrapOptions"] = None
65
67
 
66
68
  self.processed_system_prompt: Optional[str] = None
67
69
  # self.final_llm_config_for_creation removed
@@ -1,8 +1,6 @@
1
1
  # file: autobyteus/autobyteus/agent/factory/agent_factory.py
2
2
  import logging
3
3
  import random
4
- import os
5
- from pathlib import Path
6
4
  from typing import Optional, TYPE_CHECKING, Dict, List
7
5
 
8
6
  # LLMFactory is no longer needed here.
@@ -15,7 +13,9 @@ from autobyteus.agent.workspace.base_workspace import BaseAgentWorkspace
15
13
  from autobyteus.agent.handlers import *
16
14
  from autobyteus.utils.singleton import SingletonMeta
17
15
  from autobyteus.tools.base_tool import BaseTool
18
- from autobyteus.memory import FileMemoryStore, MemoryManager
16
+ from autobyteus.memory import FileMemoryStore, MemoryManager, resolve_memory_base_dir
17
+ from autobyteus.memory.store.working_context_snapshot_store import WorkingContextSnapshotStore
18
+ from autobyteus.memory.restore.working_context_snapshot_bootstrapper import WorkingContextSnapshotBootstrapOptions
19
19
  from autobyteus.agent.input_processor.memory_ingest_input_processor import MemoryIngestInputProcessor
20
20
  from autobyteus.agent.tool_execution_result_processor.memory_ingest_tool_result_processor import (
21
21
  MemoryIngestToolResultProcessor,
@@ -105,10 +105,12 @@ class AgentFactory(metaclass=SingletonMeta):
105
105
 
106
106
  config.skills = updated_skills
107
107
 
108
- def _create_runtime(self,
109
- agent_id: str,
110
- config: AgentConfig
111
- ) -> 'AgentRuntime':
108
+ def _create_runtime_with_id(self,
109
+ agent_id: str,
110
+ config: AgentConfig,
111
+ memory_dir_override: Optional[str] = None,
112
+ restore_options: Optional[WorkingContextSnapshotBootstrapOptions] = None
113
+ ) -> 'AgentRuntime':
112
114
  from autobyteus.agent.runtime.agent_runtime import AgentRuntime
113
115
 
114
116
  # Prepare skills (resolve paths to names and register them)
@@ -122,11 +124,11 @@ class AgentFactory(metaclass=SingletonMeta):
122
124
  )
123
125
 
124
126
  # Memory manager (file-backed) initialization
125
- memory_dir = os.getenv("AUTOBYTEUS_MEMORY_DIR")
126
- if memory_dir is None:
127
- memory_dir = str(Path.cwd() / "memory")
127
+ memory_dir = resolve_memory_base_dir(override_dir=memory_dir_override or config.memory_dir)
128
128
  memory_store = FileMemoryStore(base_dir=memory_dir, agent_id=agent_id)
129
- runtime_state.memory_manager = MemoryManager(store=memory_store)
129
+ working_context_snapshot_store = WorkingContextSnapshotStore(base_dir=memory_dir, agent_id=agent_id)
130
+ runtime_state.memory_manager = MemoryManager(store=memory_store, working_context_snapshot_store=working_context_snapshot_store)
131
+ runtime_state.restore_options = restore_options
130
132
 
131
133
  # Ensure memory ingest processors are present
132
134
  if not any(isinstance(p, MemoryIngestInputProcessor) for p in config.input_processors):
@@ -146,7 +148,7 @@ class AgentFactory(metaclass=SingletonMeta):
146
148
  logger.info(f"Instantiating AgentRuntime for agent_id: '{agent_id}' with config: '{config.name}'.")
147
149
 
148
150
  return AgentRuntime(
149
- context=context,
151
+ context=context,
150
152
  event_handler_registry=event_handler_registry
151
153
  )
152
154
 
@@ -166,7 +168,7 @@ class AgentFactory(metaclass=SingletonMeta):
166
168
  while agent_id in self._active_agents:
167
169
  agent_id = f"{config.name}_{config.role}_{random.randint(1000, 9999)}"
168
170
 
169
- runtime = self._create_runtime(
171
+ runtime = self._create_runtime_with_id(
170
172
  agent_id=agent_id,
171
173
  config=config,
172
174
  )
@@ -176,6 +178,29 @@ class AgentFactory(metaclass=SingletonMeta):
176
178
  logger.info(f"Agent '{agent_id}' created and stored successfully.")
177
179
  return agent
178
180
 
181
+ def restore_agent(
182
+ self,
183
+ agent_id: str,
184
+ config: AgentConfig,
185
+ memory_dir: Optional[str] = None,
186
+ ) -> Agent:
187
+ if not agent_id or not isinstance(agent_id, str):
188
+ raise ValueError("restore_agent requires a non-empty string agent_id.")
189
+ if agent_id in self._active_agents:
190
+ raise ValueError(f"Agent '{agent_id}' is already active.")
191
+
192
+ restore_options = WorkingContextSnapshotBootstrapOptions()
193
+ runtime = self._create_runtime_with_id(
194
+ agent_id=agent_id,
195
+ config=config,
196
+ memory_dir_override=memory_dir,
197
+ restore_options=restore_options,
198
+ )
199
+ agent = Agent(runtime=runtime)
200
+ self._active_agents[agent_id] = agent
201
+ logger.info(f"Agent '{agent_id}' restored and stored successfully.")
202
+ return agent
203
+
179
204
  def get_agent(self, agent_id: str) -> Optional[Agent]:
180
205
  """Retrieves an active agent instance by its ID."""
181
206
  return self._active_agents.get(agent_id)
@@ -3,6 +3,7 @@ from typing import TYPE_CHECKING
3
3
 
4
4
  from autobyteus.agent.input_processor.base_user_input_processor import BaseAgentUserInputMessageProcessor
5
5
  from autobyteus.agent.message.multimodal_message_builder import build_llm_user_message
6
+ from autobyteus.agent.sender_type import SenderType
6
7
 
7
8
  if TYPE_CHECKING:
8
9
  from autobyteus.agent.message.agent_input_user_message import AgentInputUserMessage
@@ -26,6 +27,9 @@ class MemoryIngestInputProcessor(BaseAgentUserInputMessageProcessor):
26
27
  memory_manager = getattr(context.state, "memory_manager", None)
27
28
  if not memory_manager:
28
29
  return message
30
+ if message.sender_type == SenderType.TOOL:
31
+ logger.debug("MemoryIngestInputProcessor skipping TOOL-originated message to avoid duplicate tool results.")
32
+ return message
29
33
 
30
34
  turn_id = memory_manager.start_turn()
31
35
  context.state.active_turn_id = turn_id
@@ -60,12 +60,12 @@ class LLMRequestAssembler:
60
60
  bundle=bundle,
61
61
  raw_tail=raw_tail,
62
62
  )
63
- self.memory_manager.reset_transcript(snapshot_messages)
63
+ self.memory_manager.reset_working_context_snapshot(snapshot_messages)
64
64
  self.memory_manager.clear_compaction_request()
65
65
  did_compact = True
66
66
 
67
- self.memory_manager.active_transcript.append_message(user_message)
68
- final_messages = self.memory_manager.get_transcript_messages()
67
+ self.memory_manager.working_context_snapshot.append_message(user_message)
68
+ final_messages = self.memory_manager.get_working_context_messages()
69
69
  rendered_payload = await self.render_payload(final_messages)
70
70
 
71
71
  return RequestPackage(
@@ -91,8 +91,8 @@ class LLMRequestAssembler:
91
91
  def _ensure_system_prompt(self, system_prompt: Optional[str]) -> None:
92
92
  if not system_prompt:
93
93
  return
94
- existing = self.memory_manager.get_transcript_messages()
94
+ existing = self.memory_manager.get_working_context_messages()
95
95
  if not existing:
96
- self.memory_manager.active_transcript.append_message(
96
+ self.memory_manager.working_context_snapshot.append_message(
97
97
  Message(role=MessageRole.SYSTEM, content=system_prompt)
98
98
  )
@@ -17,6 +17,7 @@ class SegmentType(str, Enum):
17
17
  PATCH_FILE = "patch_file"
18
18
  RUN_BASH = "run_bash"
19
19
  REASONING = "reasoning"
20
+ MEDIA = "media"
20
21
 
21
22
 
22
23
  class SegmentEventType(str, Enum):
@@ -12,6 +12,7 @@ from autobyteus.memory.compaction.compaction_result import CompactionResult
12
12
  from autobyteus.memory.compaction.summarizer import Summarizer
13
13
  from autobyteus.memory.retrieval.memory_bundle import MemoryBundle
14
14
  from autobyteus.memory.retrieval.retriever import Retriever
15
+ from autobyteus.memory.path_resolver import resolve_memory_base_dir, resolve_agent_memory_dir
15
16
 
16
17
  __all__ = [
17
18
  "MemoryType",
@@ -29,4 +30,6 @@ __all__ = [
29
30
  "Summarizer",
30
31
  "MemoryBundle",
31
32
  "Retriever",
33
+ "resolve_memory_base_dir",
34
+ "resolve_agent_memory_dir",
32
35
  ]
@@ -13,8 +13,10 @@ from autobyteus.memory.compaction.compactor import Compactor
13
13
  from autobyteus.memory.retrieval.retriever import Retriever
14
14
  from autobyteus.memory.store.base_store import MemoryStore
15
15
  from autobyteus.memory.turn_tracker import TurnTracker
16
- from autobyteus.memory.active_transcript import ActiveTranscript
16
+ from autobyteus.memory.working_context_snapshot import WorkingContextSnapshot
17
17
  from autobyteus.memory.tool_interaction_builder import build_tool_interactions
18
+ from autobyteus.memory.working_context_snapshot_serializer import WorkingContextSnapshotSerializer
19
+ from autobyteus.memory.store.working_context_snapshot_store import WorkingContextSnapshotStore
18
20
 
19
21
 
20
22
  class MemoryManager:
@@ -25,7 +27,8 @@ class MemoryManager:
25
27
  compaction_policy: Optional[CompactionPolicy] = None,
26
28
  compactor: Optional[Compactor] = None,
27
29
  retriever: Optional[Retriever] = None,
28
- active_transcript: Optional[ActiveTranscript] = None,
30
+ working_context_snapshot: Optional[WorkingContextSnapshot] = None,
31
+ working_context_snapshot_store: Optional[WorkingContextSnapshotStore] = None,
29
32
  ):
30
33
  self.store = store
31
34
  self.turn_tracker = turn_tracker or TurnTracker()
@@ -34,8 +37,9 @@ class MemoryManager:
34
37
  self.retriever = retriever or Retriever(store=store)
35
38
  self.memory_types = MemoryType
36
39
  self._seq_by_turn: dict[str, int] = {}
37
- self.active_transcript = active_transcript or ActiveTranscript()
40
+ self.working_context_snapshot = working_context_snapshot or WorkingContextSnapshot()
38
41
  self.compaction_required: bool = False
42
+ self.working_context_snapshot_store = working_context_snapshot_store
39
43
 
40
44
  def start_turn(self) -> str:
41
45
  return self.turn_tracker.next_turn_id()
@@ -86,7 +90,7 @@ class MemoryManager:
86
90
  tool_args=tool_invocation.arguments,
87
91
  )
88
92
  self.store.add([trace])
89
- self.active_transcript.append_tool_calls(
93
+ self.working_context_snapshot.append_tool_calls(
90
94
  [ToolCallSpec(id=tool_invocation.id, name=tool_invocation.name, arguments=tool_invocation.arguments)]
91
95
  )
92
96
 
@@ -109,7 +113,7 @@ class MemoryManager:
109
113
  tool_error=event.error,
110
114
  )
111
115
  self.store.add([trace])
112
- self.active_transcript.append_tool_result(
116
+ self.working_context_snapshot.append_tool_result(
113
117
  tool_call_id=event.tool_invocation_id or "",
114
118
  tool_name=event.tool_name,
115
119
  tool_result=event.result,
@@ -129,10 +133,11 @@ class MemoryManager:
129
133
  )
130
134
  self.store.add([trace])
131
135
  if response.content or response.reasoning:
132
- self.active_transcript.append_assistant(
136
+ self.working_context_snapshot.append_assistant(
133
137
  content=response.content,
134
138
  reasoning=response.reasoning,
135
139
  )
140
+ self.persist_working_context_snapshot()
136
141
 
137
142
  def _get_raw_tail(self, tail_turns: int, exclude_turn_id: Optional[str] = None) -> List[RawTraceItem]:
138
143
  raw_items = self.store.list(MemoryType.RAW_TRACE)
@@ -167,11 +172,28 @@ class MemoryManager:
167
172
  def get_raw_tail(self, tail_turns: int, exclude_turn_id: Optional[str] = None) -> List[RawTraceItem]:
168
173
  return self._get_raw_tail(tail_turns, exclude_turn_id=exclude_turn_id)
169
174
 
170
- def get_transcript_messages(self):
171
- return self.active_transcript.build_messages()
175
+ def get_working_context_messages(self):
176
+ return self.working_context_snapshot.build_messages()
177
+
178
+ def reset_working_context_snapshot(self, snapshot_messages):
179
+ self.working_context_snapshot.reset(snapshot_messages)
180
+ self.persist_working_context_snapshot()
181
+
182
+ def persist_working_context_snapshot(self) -> None:
183
+ if not self.working_context_snapshot_store:
184
+ return
185
+ agent_id = getattr(self.working_context_snapshot_store, "agent_id", None) or getattr(self.store, "agent_id", None)
186
+ if not agent_id:
187
+ return
188
+ metadata = {
189
+ "schema_version": 1,
190
+ "agent_id": agent_id,
191
+ "epoch_id": self.working_context_snapshot.epoch_id,
192
+ "last_compaction_ts": self.working_context_snapshot.last_compaction_ts,
193
+ }
194
+ payload = WorkingContextSnapshotSerializer.serialize(self.working_context_snapshot, metadata)
195
+ self.working_context_snapshot_store.write(agent_id, payload)
172
196
 
173
- def reset_transcript(self, snapshot_messages):
174
- self.active_transcript.reset(snapshot_messages)
175
197
 
176
198
  def get_tool_interactions(self, turn_id: Optional[str] = None):
177
199
  raw_items = self.store.list(MemoryType.RAW_TRACE)
@@ -0,0 +1,27 @@
1
+ import os
2
+ from pathlib import Path
3
+ from typing import Mapping, Optional, Union
4
+
5
+
6
+ def resolve_memory_base_dir(
7
+ override_dir: Optional[str] = None,
8
+ env: Optional[Mapping[str, str]] = None,
9
+ fallback_dir: Optional[Union[str, Path]] = None,
10
+ ) -> str:
11
+ override_value = override_dir.strip() if override_dir else ""
12
+ if override_value:
13
+ return override_value
14
+
15
+ env_values = env if env is not None else os.environ
16
+ env_value = env_values.get("AUTOBYTEUS_MEMORY_DIR", "").strip()
17
+ if env_value:
18
+ return env_value
19
+
20
+ if fallback_dir is not None:
21
+ return str(fallback_dir)
22
+
23
+ return str(Path.cwd() / "memory")
24
+
25
+
26
+ def resolve_agent_memory_dir(base_dir: Union[str, Path], agent_id: str) -> str:
27
+ return str(Path(base_dir) / "agents" / agent_id)
@@ -0,0 +1 @@
1
+ # restore package
@@ -0,0 +1,61 @@
1
+ from dataclasses import dataclass
2
+ from typing import Optional
3
+
4
+ from autobyteus.memory.working_context_snapshot_serializer import WorkingContextSnapshotSerializer
5
+ from autobyteus.memory.compaction_snapshot_builder import CompactionSnapshotBuilder
6
+ from autobyteus.memory.store.working_context_snapshot_store import WorkingContextSnapshotStore
7
+
8
+
9
+ @dataclass
10
+ class WorkingContextSnapshotBootstrapOptions:
11
+ max_episodic: int = 3
12
+ max_semantic: int = 20
13
+ raw_tail_turns: Optional[int] = None
14
+
15
+
16
+ class WorkingContextSnapshotBootstrapper:
17
+ def __init__(
18
+ self,
19
+ working_context_snapshot_store: Optional[WorkingContextSnapshotStore] = None,
20
+ snapshot_builder: Optional[CompactionSnapshotBuilder] = None,
21
+ ) -> None:
22
+ self.working_context_snapshot_store = working_context_snapshot_store
23
+ self.snapshot_builder = snapshot_builder or CompactionSnapshotBuilder()
24
+
25
+ def bootstrap(self, memory_manager, system_prompt: str, options: WorkingContextSnapshotBootstrapOptions) -> None:
26
+ store = self._resolve_store(memory_manager)
27
+ agent_id = self._resolve_agent_id(memory_manager, store)
28
+
29
+ if store and agent_id and store.exists(agent_id):
30
+ payload = store.read(agent_id)
31
+ if payload and WorkingContextSnapshotSerializer.validate(payload):
32
+ snapshot, _meta = WorkingContextSnapshotSerializer.deserialize(payload)
33
+ memory_manager.reset_working_context_snapshot(snapshot.build_messages())
34
+ return
35
+
36
+ bundle = memory_manager.retriever.retrieve(
37
+ max_episodic=options.max_episodic,
38
+ max_semantic=options.max_semantic,
39
+ )
40
+ tail_turns = options.raw_tail_turns
41
+ if tail_turns is None:
42
+ policy = getattr(memory_manager, "compaction_policy", None)
43
+ tail_turns = getattr(policy, "raw_tail_turns", 0) if policy else 0
44
+ raw_tail = memory_manager.get_raw_tail(tail_turns or 0, exclude_turn_id=None)
45
+ snapshot_messages = self.snapshot_builder.build(
46
+ system_prompt=system_prompt,
47
+ bundle=bundle,
48
+ raw_tail=raw_tail,
49
+ )
50
+ memory_manager.reset_working_context_snapshot(snapshot_messages)
51
+
52
+ def _resolve_store(self, memory_manager) -> Optional[WorkingContextSnapshotStore]:
53
+ if self.working_context_snapshot_store is not None:
54
+ return self.working_context_snapshot_store
55
+ return getattr(memory_manager, "working_context_snapshot_store", None)
56
+
57
+ def _resolve_agent_id(self, memory_manager, store: Optional[WorkingContextSnapshotStore]) -> Optional[str]:
58
+ if store and getattr(store, "agent_id", None):
59
+ return store.agent_id
60
+ store_obj = getattr(memory_manager, "store", None)
61
+ return getattr(store_obj, "agent_id", None)
@@ -1,7 +1,9 @@
1
1
  from autobyteus.memory.store.base_store import MemoryStore
2
2
  from autobyteus.memory.store.file_store import FileMemoryStore
3
+ from autobyteus.memory.store.working_context_snapshot_store import WorkingContextSnapshotStore
3
4
 
4
5
  __all__ = [
5
6
  "MemoryStore",
6
7
  "FileMemoryStore",
8
+ "WorkingContextSnapshotStore",
7
9
  ]
@@ -0,0 +1,28 @@
1
+ import json
2
+ from pathlib import Path
3
+ from typing import Optional, Union, Dict, Any
4
+
5
+
6
+ class WorkingContextSnapshotStore:
7
+ def __init__(self, base_dir: Union[str, Path], agent_id: str) -> None:
8
+ self.base_dir = Path(base_dir)
9
+ self.agent_id = agent_id
10
+
11
+ def exists(self, agent_id: str) -> bool:
12
+ return self._get_path(agent_id).exists()
13
+
14
+ def read(self, agent_id: str) -> Optional[Dict[str, Any]]:
15
+ path = self._get_path(agent_id)
16
+ if not path.exists():
17
+ return None
18
+ with path.open("r", encoding="utf-8") as handle:
19
+ return json.load(handle)
20
+
21
+ def write(self, agent_id: str, payload: Dict[str, Any]) -> None:
22
+ path = self._get_path(agent_id)
23
+ path.parent.mkdir(parents=True, exist_ok=True)
24
+ with path.open("w", encoding="utf-8") as handle:
25
+ json.dump(payload, handle)
26
+
27
+ def _get_path(self, agent_id: str) -> Path:
28
+ return self.base_dir / "agents" / agent_id / "working_context_snapshot.json"
@@ -10,7 +10,7 @@ from autobyteus.llm.utils.messages import (
10
10
  )
11
11
 
12
12
 
13
- class ActiveTranscript:
13
+ class WorkingContextSnapshot:
14
14
  def __init__(self, initial_messages: Optional[Iterable[Message]] = None):
15
15
  self._messages: List[Message] = list(initial_messages) if initial_messages else []
16
16
  self.epoch_id: int = 1