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.
- {autobyteus-1.2.3 → autobyteus-1.3.0}/PKG-INFO +2 -2
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/bootstrap_steps/__init__.py +2 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/bootstrap_steps/agent_bootstrapper.py +2 -0
- autobyteus-1.3.0/autobyteus/agent/bootstrap_steps/working_context_snapshot_restore_step.py +38 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/context/agent_config.py +5 -1
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/context/agent_runtime_state.py +2 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/factory/agent_factory.py +38 -13
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/input_processor/memory_ingest_input_processor.py +4 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/llm_request_assembler.py +5 -5
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/segments/segment_events.py +1 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/memory/__init__.py +3 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/memory/memory_manager.py +32 -10
- autobyteus-1.3.0/autobyteus/memory/path_resolver.py +27 -0
- autobyteus-1.3.0/autobyteus/memory/restore/__init__.py +1 -0
- autobyteus-1.3.0/autobyteus/memory/restore/working_context_snapshot_bootstrapper.py +61 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/memory/store/__init__.py +2 -0
- autobyteus-1.3.0/autobyteus/memory/store/working_context_snapshot_store.py +28 -0
- autobyteus-1.2.3/autobyteus/memory/active_transcript.py → autobyteus-1.3.0/autobyteus/memory/working_context_snapshot.py +1 -1
- autobyteus-1.3.0/autobyteus/memory/working_context_snapshot_serializer.py +135 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/audio/api/gemini_audio_client.py +2 -1
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/image/api/gemini_image_client.py +2 -1
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/utils/gemini_helper.py +16 -8
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus.egg-info/SOURCES.txt +7 -1
- {autobyteus-1.2.3 → autobyteus-1.3.0}/pyproject.toml +2 -2
- {autobyteus-1.2.3 → autobyteus-1.3.0}/LICENSE +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/README.md +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/agent.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/bootstrap_steps/base_bootstrap_step.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/bootstrap_steps/mcp_server_prewarming_step.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/bootstrap_steps/system_prompt_processing_step.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/bootstrap_steps/workspace_context_initialization_step.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/context/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/context/agent_context.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/context/agent_context_registry.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/events/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/events/agent_events.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/events/agent_input_event_queue_manager.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/events/event_store.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/events/notifiers.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/events/worker_event_dispatcher.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/exceptions.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/factory/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/handlers/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/handlers/approved_tool_invocation_event_handler.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/handlers/base_event_handler.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/handlers/bootstrap_event_handler.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/handlers/event_handler_registry.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/handlers/generic_event_handler.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/handlers/inter_agent_message_event_handler.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/handlers/lifecycle_event_logger.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/handlers/llm_complete_response_received_event_handler.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/handlers/llm_user_message_ready_event_handler.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/handlers/tool_execution_approval_event_handler.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/handlers/tool_invocation_request_event_handler.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/handlers/tool_result_event_handler.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/handlers/user_input_message_event_handler.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/input_processor/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/input_processor/base_user_input_processor.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/input_processor/processor_definition.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/input_processor/processor_meta.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/input_processor/processor_registry.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/lifecycle/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/lifecycle/base_processor.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/lifecycle/events.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/lifecycle/processor_definition.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/lifecycle/processor_registry.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/llm_response_processor/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/llm_response_processor/base_processor.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/llm_response_processor/processor_definition.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/llm_response_processor/processor_meta.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/llm_response_processor/processor_registry.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/message/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/message/agent_input_user_message.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/message/context_file.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/message/context_file_type.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/message/inter_agent_message.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/message/inter_agent_message_type.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/message/multimodal_message_builder.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/message/send_message_to.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/processor_option.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/runtime/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/runtime/agent_runtime.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/runtime/agent_thread_pool_manager.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/runtime/agent_worker.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/sender_type.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/shutdown_steps/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/shutdown_steps/agent_shutdown_orchestrator.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/shutdown_steps/base_shutdown_step.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/shutdown_steps/llm_instance_cleanup_step.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/shutdown_steps/mcp_server_cleanup_step.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/shutdown_steps/tool_cleanup_step.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/status/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/status/manager.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/status/status_deriver.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/status/status_enum.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/status/status_update_utils.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/adapters/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/adapters/invocation_adapter.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/adapters/tool_call_parsing.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/adapters/tool_syntax_registry.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/agent_event_stream.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/api_tool_call/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/api_tool_call/file_content_streamer.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/api_tool_call/json_string_field_extractor.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/api_tool_call_streaming_response_handler.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/events/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/events/stream_event_payloads.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/events/stream_events.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/handlers/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/handlers/api_tool_call_streaming_response_handler.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/handlers/parsing_streaming_response_handler.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/handlers/pass_through_streaming_response_handler.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/handlers/streaming_handler_factory.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/handlers/streaming_response_handler.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/event_emitter.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/events.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/invocation_adapter.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/json_parsing_strategies/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/json_parsing_strategies/base.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/json_parsing_strategies/default.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/json_parsing_strategies/gemini.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/json_parsing_strategies/openai.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/json_parsing_strategies/registry.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/parser_context.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/parser_factory.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/sentinel_format.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/state_factory.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/states/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/states/base_state.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/states/custom_xml_tag_run_bash_parsing_state.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/states/custom_xml_tag_write_file_parsing_state.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/states/delimited_content_state.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/states/json_initialization_state.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/states/json_tool_parsing_state.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/states/sentinel_content_state.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/states/sentinel_initialization_state.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/states/text_state.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/states/xml_patch_file_tool_parsing_state.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/states/xml_run_bash_tool_parsing_state.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/states/xml_tag_initialization_state.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/states/xml_tool_parsing_state.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/states/xml_write_file_tool_parsing_state.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/strategies/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/strategies/base.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/strategies/json_tool_strategy.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/strategies/registry.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/strategies/sentinel_strategy.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/strategies/xml_tag_strategy.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/stream_scanner.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/streaming_parser.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/tool_call_parsing.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/tool_constants.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/tool_syntax_registry.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parser/xml_tool_parsing_state_registry.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/parsing_streaming_response_handler.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/pass_through_streaming_response_handler.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/queue_streamer.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/segments/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/stream_event_payloads.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/stream_events.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/streaming_handler_factory.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/streaming_response_handler.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/streams/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/streams/agent_event_stream.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/utils/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/streaming/utils/queue_streamer.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/system_prompt_processor/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/system_prompt_processor/available_skills_processor.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/system_prompt_processor/base_processor.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/system_prompt_processor/processor_definition.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/system_prompt_processor/processor_meta.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/system_prompt_processor/processor_registry.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/system_prompt_processor/tool_manifest_injector_processor.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/token_budget.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/tool_execution_result_processor/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/tool_execution_result_processor/base_processor.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/tool_execution_result_processor/memory_ingest_tool_result_processor.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/tool_execution_result_processor/processor_definition.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/tool_execution_result_processor/processor_meta.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/tool_execution_result_processor/processor_registry.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/tool_invocation.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/tool_invocation_preprocessor/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/tool_invocation_preprocessor/base_preprocessor.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/tool_invocation_preprocessor/processor_definition.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/tool_invocation_preprocessor/processor_meta.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/tool_invocation_preprocessor/processor_registry.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/utils/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/utils/wait_for_idle.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/workspace/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/workspace/base_workspace.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/workspace/workspace_config.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/agent_team.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/agent_team_builder.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/base_agent_team.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/bootstrap_steps/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/bootstrap_steps/agent_configuration_preparation_step.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/bootstrap_steps/agent_team_bootstrapper.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/bootstrap_steps/base_agent_team_bootstrap_step.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/bootstrap_steps/coordinator_initialization_step.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/bootstrap_steps/task_notifier_initialization_step.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/bootstrap_steps/team_context_initialization_step.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/context/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/context/agent_team_config.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/context/agent_team_context.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/context/agent_team_runtime_state.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/context/team_manager.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/context/team_node_config.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/events/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/events/agent_team_event_dispatcher.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/events/agent_team_events.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/events/agent_team_input_event_queue_manager.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/events/event_store.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/exceptions.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/factory/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/factory/agent_team_factory.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/handlers/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/handlers/agent_team_event_handler_registry.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/handlers/base_agent_team_event_handler.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/handlers/inter_agent_message_request_event_handler.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/handlers/lifecycle_agent_team_event_handler.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/handlers/process_user_message_event_handler.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/handlers/tool_approval_team_event_handler.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/runtime/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/runtime/agent_team_runtime.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/runtime/agent_team_worker.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/shutdown_steps/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/shutdown_steps/agent_team_shutdown_orchestrator.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/shutdown_steps/agent_team_shutdown_step.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/shutdown_steps/base_agent_team_shutdown_step.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/shutdown_steps/bridge_cleanup_step.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/shutdown_steps/sub_team_shutdown_step.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/status/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/status/agent_team_status.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/status/agent_team_status_manager.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/status/status_deriver.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/status/status_update_utils.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/streaming/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/streaming/agent_event_bridge.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/streaming/agent_event_multiplexer.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/streaming/agent_team_event_notifier.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/streaming/agent_team_event_stream.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/streaming/agent_team_stream_event_payloads.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/streaming/agent_team_stream_events.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/streaming/team_event_bridge.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/system_prompt_processor/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/system_prompt_processor/team_manifest_injector_processor.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/task_notification/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/task_notification/activation_policy.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/task_notification/system_event_driven_agent_task_notifier.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/task_notification/task_activator.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/task_notification/task_notification_mode.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/utils/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent_team/utils/wait_for_idle.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/check_requirements.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/agent_cli.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/agent_team_tui/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/agent_team_tui/app.css +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/agent_team_tui/app.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/agent_team_tui/state.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/agent_team_tui/widgets/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/agent_team_tui/widgets/agent_list_sidebar.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/agent_team_tui/widgets/focus_pane.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/agent_team_tui/widgets/logo.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/agent_team_tui/widgets/renderables.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/agent_team_tui/widgets/shared.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/agent_team_tui/widgets/status_bar.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/agent_team_tui/widgets/task_plan_panel.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/cli_display.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/workflow_tui/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/workflow_tui/app.css +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/workflow_tui/app.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/workflow_tui/state.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/workflow_tui/widgets/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/workflow_tui/widgets/agent_list_sidebar.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/workflow_tui/widgets/focus_pane.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/workflow_tui/widgets/logo.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/workflow_tui/widgets/renderables.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/workflow_tui/widgets/shared.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/cli/workflow_tui/widgets/status_bar.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/clients/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/clients/autobyteus_client.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/clients/cert_utils.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/clients/certificates/cert.pem +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/config.toml.template +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/events/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/events/event_emitter.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/events/event_manager.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/events/event_types.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/api/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/api/autobyteus_llm.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/api/claude_llm.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/api/deepseek_llm.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/api/gemini_llm.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/api/grok_llm.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/api/kimi_llm.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/api/lmstudio_llm.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/api/minimax_llm.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/api/mistral_llm.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/api/ollama_llm.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/api/openai_compatible_llm.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/api/openai_llm.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/api/openai_responses_llm.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/api/qwen_llm.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/api/zhipu_llm.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/autobyteus_provider.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/base_llm.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/converters/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/converters/anthropic_tool_call_converter.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/converters/gemini_tool_call_converter.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/converters/mistral_tool_call_converter.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/converters/openai_tool_call_converter.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/extensions/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/extensions/base_extension.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/extensions/extension_registry.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/extensions/token_usage_tracking_extension.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/llm_factory.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/lmstudio_provider.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/models.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/ollama_provider.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/ollama_provider_resolver.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/prompt_renderers/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/prompt_renderers/anthropic_prompt_renderer.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/prompt_renderers/autobyteus_prompt_renderer.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/prompt_renderers/base_prompt_renderer.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/prompt_renderers/gemini_prompt_renderer.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/prompt_renderers/mistral_prompt_renderer.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/prompt_renderers/ollama_prompt_renderer.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/prompt_renderers/openai_chat_renderer.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/prompt_renderers/openai_responses_renderer.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/providers.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/runtimes.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/token_counter/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/token_counter/base_token_counter.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/token_counter/claude_token_counter.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/token_counter/deepseek_token_counter.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/token_counter/kimi_token_counter.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/token_counter/mistral_token_counter.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/token_counter/openai_token_counter.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/token_counter/token_counter_factory.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/token_counter/zhipu_token_counter.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/user_message.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/utils/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/utils/llm_config.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/utils/media_payload_formatter.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/utils/messages.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/utils/rate_limiter.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/utils/response_types.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/utils/token_usage.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/utils/token_usage_tracker.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/llm/utils/tool_call_delta.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/memory/compaction/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/memory/compaction/compaction_result.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/memory/compaction/compactor.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/memory/compaction/summarizer.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/memory/compaction_snapshot_builder.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/memory/models/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/memory/models/episodic_item.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/memory/models/memory_types.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/memory/models/raw_trace_item.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/memory/models/semantic_item.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/memory/models/tool_interaction.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/memory/policies/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/memory/policies/compaction_policy.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/memory/retrieval/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/memory/retrieval/memory_bundle.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/memory/retrieval/retriever.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/memory/store/base_store.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/memory/store/file_store.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/memory/tool_interaction_builder.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/memory/turn_tracker.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/audio/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/audio/api/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/audio/api/autobyteus_audio_client.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/audio/api/openai_audio_client.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/audio/audio_client_factory.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/audio/audio_model.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/audio/autobyteus_audio_provider.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/audio/base_audio_client.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/image/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/image/api/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/image/api/autobyteus_image_client.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/image/api/openai_image_client.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/image/autobyteus_image_provider.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/image/base_image_client.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/image/image_client_factory.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/image/image_model.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/providers.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/runtimes.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/utils/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/utils/api_utils.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/utils/multimedia_config.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/multimedia/utils/response_types.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/prompt/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/prompt/prompt_builder.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/prompt/prompt_template.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/skills/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/skills/loader.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/skills/model.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/skills/registry.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/base_task_plan.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/converters/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/converters/task_plan_converter.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/deliverable.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/deliverables/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/deliverables/file_deliverable.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/events.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/in_memory_task_plan.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/schemas/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/schemas/deliverable_schema.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/schemas/task_definition.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/schemas/task_status_report.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/schemas/todo_definition.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/task.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/todo.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/todo_list.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/tools/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/tools/task_tools/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/tools/task_tools/assign_task_to.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/tools/task_tools/create_task.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/tools/task_tools/create_tasks.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/tools/task_tools/get_my_tasks.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/tools/task_tools/get_task_plan_status.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/tools/task_tools/update_task_status.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/tools/todo_tools/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/tools/todo_tools/add_todo.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/tools/todo_tools/create_todo_list.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/tools/todo_tools/get_todo_list.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/task_management/tools/todo_tools/update_todo_status.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/base_tool.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/factory/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/factory/tool_factory.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/file/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/file/patch_file.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/file/read_file.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/file/write_file.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/functional_tool.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/handlers/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/handlers/shell_handler.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/mcp/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/mcp/config_service.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/mcp/factory.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/mcp/schema_mapper.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/mcp/server/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/mcp/server/base_managed_mcp_server.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/mcp/server/http_managed_mcp_server.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/mcp/server/proxy.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/mcp/server/stdio_managed_mcp_server.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/mcp/server/websocket_managed_mcp_server.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/mcp/server_instance_manager.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/mcp/tool.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/mcp/tool_registrar.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/mcp/types.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/multimedia/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/multimedia/audio_tools.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/multimedia/download_media_tool.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/multimedia/image_tools.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/multimedia/media_reader_tool.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/operation/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/operation/file_operation.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/operation/file_rename_operation.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/operation/operation.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/operation/shell_operation.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/operation_executor/journal_manager.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/operation_executor/operation_event_buffer.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/operation_executor/operation_event_producer.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/operation_executor/operation_executor.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/pydantic_schema_converter.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/registry/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/registry/tool_definition.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/registry/tool_registry.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/search/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/search/base_strategy.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/search/client.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/search/factory.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/search/google_cse_strategy.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/search/providers.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/search/serpapi_strategy.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/search/serper_strategy.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/search_tool.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/skill/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/skill/load_skill.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/terminal/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/terminal/ansi_utils.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/terminal/background_process_manager.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/terminal/output_buffer.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/terminal/prompt_detector.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/terminal/pty_session.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/terminal/session_factory.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/terminal/terminal_session_manager.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/terminal/tools/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/terminal/tools/get_process_output.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/terminal/tools/run_bash.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/terminal/tools/start_background_process.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/terminal/tools/stop_background_process.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/terminal/types.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/terminal/wsl_tmux_session.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/terminal/wsl_utils.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/tool_category.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/tool_config.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/tool_meta.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/tool_origin.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/tool_state.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/transaction_management/backup_handler.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/transaction_management/operation_lifecycle_manager.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/anthropic_json_example_formatter.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/anthropic_json_schema_formatter.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/base_formatter.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/default_json_example_formatter.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/default_json_schema_formatter.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/default_xml_example_formatter.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/default_xml_schema_formatter.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/gemini_json_example_formatter.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/gemini_json_schema_formatter.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/google_json_example_formatter.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/google_json_schema_formatter.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/mistral_json_schema_formatter.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/openai_json_example_formatter.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/openai_json_schema_formatter.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/patch_file_xml_example_formatter.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/patch_file_xml_schema_formatter.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/run_bash_xml_example_formatter.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/run_bash_xml_schema_formatter.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/write_file_xml_example_formatter.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/formatters/write_file_xml_schema_formatter.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/providers/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/providers/tool_manifest_provider.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/registries/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/registries/tool_formatter_pair.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/registries/tool_formatting_registry.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/usage/tool_schema_provider.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/utils.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/web/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/tools/web/read_url_tool.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/utils/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/utils/diff_utils.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/utils/download_utils.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/utils/dynamic_enum.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/utils/file_utils.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/utils/gemini_model_mapping.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/utils/html_cleaner.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/utils/llm_output_formatter.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/utils/parameter_schema.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/utils/singleton.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/utils/tool_call_format.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/agentic_workflow.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/base_agentic_workflow.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/bootstrap_steps/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/bootstrap_steps/agent_tool_injection_step.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/bootstrap_steps/base_workflow_bootstrap_step.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/bootstrap_steps/coordinator_initialization_step.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/bootstrap_steps/coordinator_prompt_preparation_step.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/bootstrap_steps/workflow_bootstrapper.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/bootstrap_steps/workflow_runtime_queue_initialization_step.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/context/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/context/team_manager.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/context/workflow_config.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/context/workflow_context.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/context/workflow_node_config.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/context/workflow_runtime_state.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/events/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/events/workflow_event_dispatcher.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/events/workflow_events.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/events/workflow_input_event_queue_manager.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/exceptions.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/factory/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/factory/workflow_factory.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/handlers/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/handlers/base_workflow_event_handler.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/handlers/inter_agent_message_request_event_handler.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/handlers/lifecycle_workflow_event_handler.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/handlers/process_user_message_event_handler.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/handlers/tool_approval_workflow_event_handler.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/handlers/workflow_event_handler_registry.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/runtime/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/runtime/workflow_runtime.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/runtime/workflow_worker.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/shutdown_steps/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/shutdown_steps/agent_team_shutdown_step.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/shutdown_steps/base_workflow_shutdown_step.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/shutdown_steps/bridge_cleanup_step.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/shutdown_steps/sub_workflow_shutdown_step.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/shutdown_steps/workflow_shutdown_orchestrator.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/status/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/status/workflow_status.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/status/workflow_status_manager.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/streaming/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/streaming/agent_event_bridge.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/streaming/agent_event_multiplexer.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/streaming/workflow_event_bridge.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/streaming/workflow_event_notifier.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/streaming/workflow_event_stream.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/streaming/workflow_stream_event_payloads.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/streaming/workflow_stream_events.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/utils/__init__.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/utils/wait_for_idle.py +0 -0
- {autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/workflow/workflow_builder.py +0 -0
- {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.
|
|
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
|
|
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
|
]
|
{autobyteus-1.2.3 → autobyteus-1.3.0}/autobyteus/agent/bootstrap_steps/agent_bootstrapper.py
RENAMED
|
@@ -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
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
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 =
|
|
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
|
-
|
|
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.
|
|
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.
|
|
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.
|
|
68
|
-
final_messages = self.memory_manager.
|
|
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.
|
|
94
|
+
existing = self.memory_manager.get_working_context_messages()
|
|
95
95
|
if not existing:
|
|
96
|
-
self.memory_manager.
|
|
96
|
+
self.memory_manager.working_context_snapshot.append_message(
|
|
97
97
|
Message(role=MessageRole.SYSTEM, content=system_prompt)
|
|
98
98
|
)
|
|
@@ -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.
|
|
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
|
-
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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
|
|
171
|
-
return self.
|
|
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
|
|
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
|