autobyteus 1.2.0__py3-none-any.whl → 1.2.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- autobyteus/agent/agent.py +15 -5
- autobyteus/agent/bootstrap_steps/__init__.py +1 -3
- autobyteus/agent/bootstrap_steps/agent_bootstrapper.py +3 -59
- autobyteus/agent/bootstrap_steps/base_bootstrap_step.py +1 -4
- autobyteus/agent/bootstrap_steps/mcp_server_prewarming_step.py +1 -3
- autobyteus/agent/bootstrap_steps/system_prompt_processing_step.py +16 -13
- autobyteus/agent/bootstrap_steps/workspace_context_initialization_step.py +2 -4
- autobyteus/agent/context/agent_config.py +43 -20
- autobyteus/agent/context/agent_context.py +23 -18
- autobyteus/agent/context/agent_runtime_state.py +23 -19
- autobyteus/agent/events/__init__.py +16 -1
- autobyteus/agent/events/agent_events.py +43 -3
- autobyteus/agent/events/agent_input_event_queue_manager.py +79 -26
- autobyteus/agent/events/event_store.py +57 -0
- autobyteus/agent/events/notifiers.py +74 -60
- autobyteus/agent/events/worker_event_dispatcher.py +21 -64
- autobyteus/agent/factory/agent_factory.py +52 -0
- autobyteus/agent/handlers/__init__.py +2 -0
- autobyteus/agent/handlers/approved_tool_invocation_event_handler.py +51 -34
- autobyteus/agent/handlers/bootstrap_event_handler.py +155 -0
- autobyteus/agent/handlers/inter_agent_message_event_handler.py +10 -0
- autobyteus/agent/handlers/lifecycle_event_logger.py +19 -11
- autobyteus/agent/handlers/llm_complete_response_received_event_handler.py +10 -15
- autobyteus/agent/handlers/llm_user_message_ready_event_handler.py +188 -48
- autobyteus/agent/handlers/tool_execution_approval_event_handler.py +0 -10
- autobyteus/agent/handlers/tool_invocation_request_event_handler.py +53 -48
- autobyteus/agent/handlers/tool_result_event_handler.py +7 -8
- autobyteus/agent/handlers/user_input_message_event_handler.py +10 -3
- autobyteus/agent/input_processor/memory_ingest_input_processor.py +40 -0
- autobyteus/agent/lifecycle/__init__.py +12 -0
- autobyteus/agent/lifecycle/base_processor.py +109 -0
- autobyteus/agent/lifecycle/events.py +35 -0
- autobyteus/agent/lifecycle/processor_definition.py +36 -0
- autobyteus/agent/lifecycle/processor_registry.py +106 -0
- autobyteus/agent/llm_request_assembler.py +98 -0
- autobyteus/agent/llm_response_processor/__init__.py +1 -8
- autobyteus/agent/message/context_file_type.py +1 -1
- autobyteus/agent/message/send_message_to.py +5 -4
- autobyteus/agent/runtime/agent_runtime.py +29 -21
- autobyteus/agent/runtime/agent_worker.py +98 -19
- autobyteus/agent/shutdown_steps/__init__.py +2 -0
- autobyteus/agent/shutdown_steps/agent_shutdown_orchestrator.py +2 -0
- autobyteus/agent/shutdown_steps/tool_cleanup_step.py +58 -0
- autobyteus/agent/status/__init__.py +14 -0
- autobyteus/agent/status/manager.py +93 -0
- autobyteus/agent/status/status_deriver.py +96 -0
- autobyteus/agent/{phases/phase_enum.py → status/status_enum.py} +16 -16
- autobyteus/agent/status/status_update_utils.py +73 -0
- autobyteus/agent/streaming/__init__.py +52 -5
- autobyteus/agent/streaming/adapters/__init__.py +18 -0
- autobyteus/agent/streaming/adapters/invocation_adapter.py +184 -0
- autobyteus/agent/streaming/adapters/tool_call_parsing.py +163 -0
- autobyteus/agent/streaming/adapters/tool_syntax_registry.py +67 -0
- autobyteus/agent/streaming/agent_event_stream.py +3 -178
- autobyteus/agent/streaming/api_tool_call/__init__.py +16 -0
- autobyteus/agent/streaming/api_tool_call/file_content_streamer.py +56 -0
- autobyteus/agent/streaming/api_tool_call/json_string_field_extractor.py +175 -0
- autobyteus/agent/streaming/api_tool_call_streaming_response_handler.py +4 -0
- autobyteus/agent/streaming/events/__init__.py +6 -0
- autobyteus/agent/streaming/events/stream_event_payloads.py +284 -0
- autobyteus/agent/streaming/events/stream_events.py +141 -0
- autobyteus/agent/streaming/handlers/__init__.py +15 -0
- autobyteus/agent/streaming/handlers/api_tool_call_streaming_response_handler.py +303 -0
- autobyteus/agent/streaming/handlers/parsing_streaming_response_handler.py +107 -0
- autobyteus/agent/streaming/handlers/pass_through_streaming_response_handler.py +107 -0
- autobyteus/agent/streaming/handlers/streaming_handler_factory.py +177 -0
- autobyteus/agent/streaming/handlers/streaming_response_handler.py +58 -0
- autobyteus/agent/streaming/parser/__init__.py +61 -0
- autobyteus/agent/streaming/parser/event_emitter.py +181 -0
- autobyteus/agent/streaming/parser/events.py +4 -0
- autobyteus/agent/streaming/parser/invocation_adapter.py +4 -0
- autobyteus/agent/streaming/parser/json_parsing_strategies/__init__.py +19 -0
- autobyteus/agent/streaming/parser/json_parsing_strategies/base.py +32 -0
- autobyteus/agent/streaming/parser/json_parsing_strategies/default.py +34 -0
- autobyteus/agent/streaming/parser/json_parsing_strategies/gemini.py +31 -0
- autobyteus/agent/streaming/parser/json_parsing_strategies/openai.py +64 -0
- autobyteus/agent/streaming/parser/json_parsing_strategies/registry.py +75 -0
- autobyteus/agent/streaming/parser/parser_context.py +227 -0
- autobyteus/agent/streaming/parser/parser_factory.py +132 -0
- autobyteus/agent/streaming/parser/sentinel_format.py +7 -0
- autobyteus/agent/streaming/parser/state_factory.py +62 -0
- autobyteus/agent/streaming/parser/states/__init__.py +1 -0
- autobyteus/agent/streaming/parser/states/base_state.py +60 -0
- autobyteus/agent/streaming/parser/states/custom_xml_tag_run_bash_parsing_state.py +38 -0
- autobyteus/agent/streaming/parser/states/custom_xml_tag_write_file_parsing_state.py +55 -0
- autobyteus/agent/streaming/parser/states/delimited_content_state.py +146 -0
- autobyteus/agent/streaming/parser/states/json_initialization_state.py +144 -0
- autobyteus/agent/streaming/parser/states/json_tool_parsing_state.py +137 -0
- autobyteus/agent/streaming/parser/states/sentinel_content_state.py +30 -0
- autobyteus/agent/streaming/parser/states/sentinel_initialization_state.py +117 -0
- autobyteus/agent/streaming/parser/states/text_state.py +78 -0
- autobyteus/agent/streaming/parser/states/xml_patch_file_tool_parsing_state.py +328 -0
- autobyteus/agent/streaming/parser/states/xml_run_bash_tool_parsing_state.py +129 -0
- autobyteus/agent/streaming/parser/states/xml_tag_initialization_state.py +151 -0
- autobyteus/agent/streaming/parser/states/xml_tool_parsing_state.py +63 -0
- autobyteus/agent/streaming/parser/states/xml_write_file_tool_parsing_state.py +343 -0
- autobyteus/agent/streaming/parser/strategies/__init__.py +17 -0
- autobyteus/agent/streaming/parser/strategies/base.py +24 -0
- autobyteus/agent/streaming/parser/strategies/json_tool_strategy.py +26 -0
- autobyteus/agent/streaming/parser/strategies/registry.py +28 -0
- autobyteus/agent/streaming/parser/strategies/sentinel_strategy.py +23 -0
- autobyteus/agent/streaming/parser/strategies/xml_tag_strategy.py +21 -0
- autobyteus/agent/streaming/parser/stream_scanner.py +167 -0
- autobyteus/agent/streaming/parser/streaming_parser.py +212 -0
- autobyteus/agent/streaming/parser/tool_call_parsing.py +4 -0
- autobyteus/agent/streaming/parser/tool_constants.py +7 -0
- autobyteus/agent/streaming/parser/tool_syntax_registry.py +4 -0
- autobyteus/agent/streaming/parser/xml_tool_parsing_state_registry.py +55 -0
- autobyteus/agent/streaming/parsing_streaming_response_handler.py +4 -0
- autobyteus/agent/streaming/pass_through_streaming_response_handler.py +4 -0
- autobyteus/agent/streaming/queue_streamer.py +3 -57
- autobyteus/agent/streaming/segments/__init__.py +5 -0
- autobyteus/agent/streaming/segments/segment_events.py +81 -0
- autobyteus/agent/streaming/stream_event_payloads.py +2 -198
- autobyteus/agent/streaming/stream_events.py +3 -128
- autobyteus/agent/streaming/streaming_handler_factory.py +4 -0
- autobyteus/agent/streaming/streaming_response_handler.py +4 -0
- autobyteus/agent/streaming/streams/__init__.py +5 -0
- autobyteus/agent/streaming/streams/agent_event_stream.py +197 -0
- autobyteus/agent/streaming/utils/__init__.py +5 -0
- autobyteus/agent/streaming/utils/queue_streamer.py +59 -0
- autobyteus/agent/system_prompt_processor/__init__.py +2 -0
- autobyteus/agent/system_prompt_processor/available_skills_processor.py +96 -0
- autobyteus/agent/system_prompt_processor/base_processor.py +1 -1
- autobyteus/agent/system_prompt_processor/processor_meta.py +15 -2
- autobyteus/agent/system_prompt_processor/tool_manifest_injector_processor.py +39 -58
- autobyteus/agent/token_budget.py +56 -0
- autobyteus/agent/tool_execution_result_processor/memory_ingest_tool_result_processor.py +29 -0
- autobyteus/agent/tool_invocation.py +16 -40
- autobyteus/agent/tool_invocation_preprocessor/__init__.py +9 -0
- autobyteus/agent/tool_invocation_preprocessor/base_preprocessor.py +45 -0
- autobyteus/agent/tool_invocation_preprocessor/processor_definition.py +15 -0
- autobyteus/agent/tool_invocation_preprocessor/processor_meta.py +33 -0
- autobyteus/agent/tool_invocation_preprocessor/processor_registry.py +60 -0
- autobyteus/agent/utils/wait_for_idle.py +12 -14
- autobyteus/agent/workspace/base_workspace.py +6 -27
- autobyteus/agent_team/agent_team.py +3 -3
- autobyteus/agent_team/agent_team_builder.py +1 -41
- autobyteus/agent_team/bootstrap_steps/__init__.py +0 -4
- autobyteus/agent_team/bootstrap_steps/agent_configuration_preparation_step.py +8 -18
- autobyteus/agent_team/bootstrap_steps/agent_team_bootstrapper.py +4 -16
- autobyteus/agent_team/bootstrap_steps/base_agent_team_bootstrap_step.py +1 -2
- autobyteus/agent_team/bootstrap_steps/coordinator_initialization_step.py +1 -2
- autobyteus/agent_team/bootstrap_steps/task_notifier_initialization_step.py +5 -6
- autobyteus/agent_team/bootstrap_steps/team_context_initialization_step.py +15 -15
- autobyteus/agent_team/context/agent_team_config.py +6 -3
- autobyteus/agent_team/context/agent_team_context.py +25 -3
- autobyteus/agent_team/context/agent_team_runtime_state.py +11 -8
- autobyteus/agent_team/events/__init__.py +11 -0
- autobyteus/agent_team/events/agent_team_event_dispatcher.py +22 -9
- autobyteus/agent_team/events/agent_team_events.py +16 -0
- autobyteus/agent_team/events/event_store.py +57 -0
- autobyteus/agent_team/factory/agent_team_factory.py +8 -0
- autobyteus/agent_team/handlers/inter_agent_message_request_event_handler.py +18 -2
- autobyteus/agent_team/handlers/lifecycle_agent_team_event_handler.py +21 -5
- autobyteus/agent_team/handlers/process_user_message_event_handler.py +17 -8
- autobyteus/agent_team/handlers/tool_approval_team_event_handler.py +19 -4
- autobyteus/agent_team/runtime/agent_team_runtime.py +41 -10
- autobyteus/agent_team/runtime/agent_team_worker.py +69 -5
- autobyteus/agent_team/status/__init__.py +14 -0
- autobyteus/agent_team/status/agent_team_status.py +18 -0
- autobyteus/agent_team/status/agent_team_status_manager.py +33 -0
- autobyteus/agent_team/status/status_deriver.py +62 -0
- autobyteus/agent_team/status/status_update_utils.py +42 -0
- autobyteus/agent_team/streaming/__init__.py +2 -2
- autobyteus/agent_team/streaming/agent_team_event_notifier.py +10 -10
- autobyteus/agent_team/streaming/agent_team_stream_event_payloads.py +7 -7
- autobyteus/agent_team/streaming/agent_team_stream_events.py +11 -11
- autobyteus/agent_team/system_prompt_processor/__init__.py +6 -0
- autobyteus/agent_team/system_prompt_processor/team_manifest_injector_processor.py +76 -0
- autobyteus/agent_team/task_notification/activation_policy.py +1 -1
- autobyteus/agent_team/task_notification/system_event_driven_agent_task_notifier.py +22 -22
- autobyteus/agent_team/task_notification/task_notification_mode.py +20 -1
- autobyteus/agent_team/utils/wait_for_idle.py +4 -4
- autobyteus/cli/agent_cli.py +18 -10
- autobyteus/cli/agent_team_tui/app.py +18 -15
- autobyteus/cli/agent_team_tui/state.py +21 -23
- autobyteus/cli/agent_team_tui/widgets/agent_list_sidebar.py +15 -15
- autobyteus/cli/agent_team_tui/widgets/focus_pane.py +146 -39
- autobyteus/cli/agent_team_tui/widgets/renderables.py +1 -1
- autobyteus/cli/agent_team_tui/widgets/shared.py +26 -26
- autobyteus/cli/agent_team_tui/widgets/{task_board_panel.py → task_plan_panel.py} +5 -5
- autobyteus/cli/cli_display.py +193 -44
- autobyteus/cli/workflow_tui/app.py +9 -10
- autobyteus/cli/workflow_tui/state.py +14 -16
- autobyteus/cli/workflow_tui/widgets/agent_list_sidebar.py +15 -15
- autobyteus/cli/workflow_tui/widgets/focus_pane.py +137 -35
- autobyteus/cli/workflow_tui/widgets/renderables.py +1 -1
- autobyteus/cli/workflow_tui/widgets/shared.py +25 -25
- autobyteus/clients/autobyteus_client.py +94 -1
- autobyteus/events/event_types.py +15 -21
- autobyteus/llm/api/autobyteus_llm.py +33 -29
- autobyteus/llm/api/claude_llm.py +142 -36
- autobyteus/llm/api/gemini_llm.py +163 -59
- autobyteus/llm/api/grok_llm.py +1 -1
- autobyteus/llm/api/minimax_llm.py +26 -0
- autobyteus/llm/api/mistral_llm.py +113 -87
- autobyteus/llm/api/ollama_llm.py +9 -42
- autobyteus/llm/api/openai_compatible_llm.py +127 -91
- autobyteus/llm/api/openai_llm.py +3 -3
- autobyteus/llm/api/openai_responses_llm.py +324 -0
- autobyteus/llm/api/zhipu_llm.py +21 -2
- autobyteus/llm/autobyteus_provider.py +70 -60
- autobyteus/llm/base_llm.py +85 -81
- autobyteus/llm/converters/__init__.py +14 -0
- autobyteus/llm/converters/anthropic_tool_call_converter.py +37 -0
- autobyteus/llm/converters/gemini_tool_call_converter.py +57 -0
- autobyteus/llm/converters/mistral_tool_call_converter.py +37 -0
- autobyteus/llm/converters/openai_tool_call_converter.py +38 -0
- autobyteus/llm/extensions/base_extension.py +6 -12
- autobyteus/llm/extensions/token_usage_tracking_extension.py +45 -18
- autobyteus/llm/llm_factory.py +282 -204
- autobyteus/llm/lmstudio_provider.py +60 -49
- autobyteus/llm/models.py +35 -2
- autobyteus/llm/ollama_provider.py +60 -49
- autobyteus/llm/ollama_provider_resolver.py +0 -1
- autobyteus/llm/prompt_renderers/__init__.py +19 -0
- autobyteus/llm/prompt_renderers/anthropic_prompt_renderer.py +104 -0
- autobyteus/llm/prompt_renderers/autobyteus_prompt_renderer.py +19 -0
- autobyteus/llm/prompt_renderers/base_prompt_renderer.py +10 -0
- autobyteus/llm/prompt_renderers/gemini_prompt_renderer.py +63 -0
- autobyteus/llm/prompt_renderers/mistral_prompt_renderer.py +87 -0
- autobyteus/llm/prompt_renderers/ollama_prompt_renderer.py +51 -0
- autobyteus/llm/prompt_renderers/openai_chat_renderer.py +97 -0
- autobyteus/llm/prompt_renderers/openai_responses_renderer.py +101 -0
- autobyteus/llm/providers.py +1 -3
- autobyteus/llm/token_counter/claude_token_counter.py +56 -25
- autobyteus/llm/token_counter/mistral_token_counter.py +12 -8
- autobyteus/llm/token_counter/openai_token_counter.py +24 -5
- autobyteus/llm/token_counter/token_counter_factory.py +12 -5
- autobyteus/llm/utils/llm_config.py +6 -12
- autobyteus/llm/utils/media_payload_formatter.py +27 -20
- autobyteus/llm/utils/messages.py +55 -3
- autobyteus/llm/utils/response_types.py +3 -0
- autobyteus/llm/utils/tool_call_delta.py +31 -0
- autobyteus/memory/__init__.py +32 -0
- autobyteus/memory/active_transcript.py +69 -0
- autobyteus/memory/compaction/__init__.py +9 -0
- autobyteus/memory/compaction/compaction_result.py +8 -0
- autobyteus/memory/compaction/compactor.py +89 -0
- autobyteus/memory/compaction/summarizer.py +11 -0
- autobyteus/memory/compaction_snapshot_builder.py +84 -0
- autobyteus/memory/memory_manager.py +183 -0
- autobyteus/memory/models/__init__.py +14 -0
- autobyteus/memory/models/episodic_item.py +41 -0
- autobyteus/memory/models/memory_types.py +7 -0
- autobyteus/memory/models/raw_trace_item.py +79 -0
- autobyteus/memory/models/semantic_item.py +41 -0
- autobyteus/memory/models/tool_interaction.py +20 -0
- autobyteus/memory/policies/__init__.py +5 -0
- autobyteus/memory/policies/compaction_policy.py +16 -0
- autobyteus/memory/retrieval/__init__.py +7 -0
- autobyteus/memory/retrieval/memory_bundle.py +11 -0
- autobyteus/memory/retrieval/retriever.py +13 -0
- autobyteus/memory/store/__init__.py +7 -0
- autobyteus/memory/store/base_store.py +14 -0
- autobyteus/memory/store/file_store.py +98 -0
- autobyteus/memory/tool_interaction_builder.py +46 -0
- autobyteus/memory/turn_tracker.py +9 -0
- autobyteus/multimedia/audio/api/__init__.py +3 -2
- autobyteus/multimedia/audio/api/autobyteus_audio_client.py +19 -5
- autobyteus/multimedia/audio/api/gemini_audio_client.py +108 -16
- autobyteus/multimedia/audio/api/openai_audio_client.py +112 -0
- autobyteus/multimedia/audio/audio_client_factory.py +84 -9
- autobyteus/multimedia/audio/audio_model.py +2 -1
- autobyteus/multimedia/image/api/autobyteus_image_client.py +19 -5
- autobyteus/multimedia/image/api/gemini_image_client.py +38 -17
- autobyteus/multimedia/image/api/openai_image_client.py +125 -43
- autobyteus/multimedia/image/autobyteus_image_provider.py +2 -1
- autobyteus/multimedia/image/image_client_factory.py +47 -15
- autobyteus/multimedia/image/image_model.py +5 -2
- autobyteus/multimedia/providers.py +3 -2
- autobyteus/skills/loader.py +71 -0
- autobyteus/skills/model.py +11 -0
- autobyteus/skills/registry.py +70 -0
- autobyteus/task_management/__init__.py +43 -20
- autobyteus/task_management/{base_task_board.py → base_task_plan.py} +16 -13
- autobyteus/task_management/converters/__init__.py +2 -2
- autobyteus/task_management/converters/{task_board_converter.py → task_plan_converter.py} +13 -13
- autobyteus/task_management/events.py +7 -7
- autobyteus/task_management/{in_memory_task_board.py → in_memory_task_plan.py} +34 -22
- autobyteus/task_management/schemas/__init__.py +3 -0
- autobyteus/task_management/schemas/task_status_report.py +2 -2
- autobyteus/task_management/schemas/todo_definition.py +15 -0
- autobyteus/task_management/todo.py +29 -0
- autobyteus/task_management/todo_list.py +75 -0
- autobyteus/task_management/tools/__init__.py +24 -8
- autobyteus/task_management/tools/task_tools/__init__.py +19 -0
- autobyteus/task_management/tools/{assign_task_to.py → task_tools/assign_task_to.py} +18 -18
- autobyteus/task_management/tools/{publish_task.py → task_tools/create_task.py} +16 -18
- autobyteus/task_management/tools/{publish_tasks.py → task_tools/create_tasks.py} +19 -19
- autobyteus/task_management/tools/{get_my_tasks.py → task_tools/get_my_tasks.py} +15 -15
- autobyteus/task_management/tools/{get_task_board_status.py → task_tools/get_task_plan_status.py} +16 -16
- autobyteus/task_management/tools/{update_task_status.py → task_tools/update_task_status.py} +16 -16
- autobyteus/task_management/tools/todo_tools/__init__.py +18 -0
- autobyteus/task_management/tools/todo_tools/add_todo.py +78 -0
- autobyteus/task_management/tools/todo_tools/create_todo_list.py +79 -0
- autobyteus/task_management/tools/todo_tools/get_todo_list.py +55 -0
- autobyteus/task_management/tools/todo_tools/update_todo_status.py +85 -0
- autobyteus/tools/__init__.py +43 -52
- autobyteus/tools/base_tool.py +7 -0
- autobyteus/tools/file/__init__.py +9 -0
- autobyteus/tools/file/patch_file.py +149 -0
- autobyteus/tools/file/{file_reader.py → read_file.py} +38 -7
- autobyteus/tools/file/{file_writer.py → write_file.py} +7 -4
- autobyteus/tools/functional_tool.py +53 -14
- autobyteus/tools/mcp/__init__.py +2 -0
- autobyteus/tools/mcp/config_service.py +5 -1
- autobyteus/tools/mcp/server/__init__.py +2 -0
- autobyteus/tools/mcp/server/http_managed_mcp_server.py +1 -1
- autobyteus/tools/mcp/server/websocket_managed_mcp_server.py +141 -0
- autobyteus/tools/mcp/server_instance_manager.py +8 -1
- autobyteus/tools/mcp/tool.py +3 -3
- autobyteus/tools/mcp/tool_registrar.py +5 -2
- autobyteus/tools/mcp/types.py +61 -0
- autobyteus/tools/multimedia/__init__.py +2 -1
- autobyteus/tools/multimedia/audio_tools.py +72 -19
- autobyteus/tools/{download_media_tool.py → multimedia/download_media_tool.py} +21 -7
- autobyteus/tools/multimedia/image_tools.py +248 -64
- autobyteus/tools/multimedia/media_reader_tool.py +1 -1
- autobyteus/tools/operation_executor/journal_manager.py +107 -0
- autobyteus/tools/operation_executor/operation_event_buffer.py +57 -0
- autobyteus/tools/operation_executor/operation_event_producer.py +29 -0
- autobyteus/tools/operation_executor/operation_executor.py +58 -0
- autobyteus/tools/registry/tool_definition.py +108 -14
- autobyteus/tools/registry/tool_registry.py +29 -0
- autobyteus/tools/search/__init__.py +17 -0
- autobyteus/tools/search/base_strategy.py +35 -0
- autobyteus/tools/search/client.py +24 -0
- autobyteus/tools/search/factory.py +81 -0
- autobyteus/tools/search/google_cse_strategy.py +68 -0
- autobyteus/tools/search/providers.py +10 -0
- autobyteus/tools/search/serpapi_strategy.py +65 -0
- autobyteus/tools/search/serper_strategy.py +87 -0
- autobyteus/tools/search_tool.py +83 -0
- autobyteus/tools/skill/load_skill.py +50 -0
- autobyteus/tools/terminal/__init__.py +45 -0
- autobyteus/tools/terminal/ansi_utils.py +32 -0
- autobyteus/tools/terminal/background_process_manager.py +233 -0
- autobyteus/tools/terminal/output_buffer.py +105 -0
- autobyteus/tools/terminal/prompt_detector.py +63 -0
- autobyteus/tools/terminal/pty_session.py +241 -0
- autobyteus/tools/terminal/session_factory.py +20 -0
- autobyteus/tools/terminal/terminal_session_manager.py +226 -0
- autobyteus/tools/terminal/tools/__init__.py +13 -0
- autobyteus/tools/terminal/tools/get_process_output.py +81 -0
- autobyteus/tools/terminal/tools/run_bash.py +109 -0
- autobyteus/tools/terminal/tools/start_background_process.py +104 -0
- autobyteus/tools/terminal/tools/stop_background_process.py +67 -0
- autobyteus/tools/terminal/types.py +54 -0
- autobyteus/tools/terminal/wsl_tmux_session.py +221 -0
- autobyteus/tools/terminal/wsl_utils.py +156 -0
- autobyteus/tools/tool_meta.py +4 -24
- autobyteus/tools/transaction_management/backup_handler.py +48 -0
- autobyteus/tools/transaction_management/operation_lifecycle_manager.py +62 -0
- autobyteus/tools/usage/__init__.py +1 -2
- autobyteus/tools/usage/formatters/__init__.py +17 -1
- autobyteus/tools/usage/formatters/base_formatter.py +8 -0
- autobyteus/tools/usage/formatters/default_xml_schema_formatter.py +2 -2
- autobyteus/tools/usage/formatters/mistral_json_schema_formatter.py +18 -0
- autobyteus/tools/usage/formatters/patch_file_xml_example_formatter.py +64 -0
- autobyteus/tools/usage/formatters/patch_file_xml_schema_formatter.py +31 -0
- autobyteus/tools/usage/formatters/run_bash_xml_example_formatter.py +32 -0
- autobyteus/tools/usage/formatters/run_bash_xml_schema_formatter.py +36 -0
- autobyteus/tools/usage/formatters/write_file_xml_example_formatter.py +53 -0
- autobyteus/tools/usage/formatters/write_file_xml_schema_formatter.py +31 -0
- autobyteus/tools/usage/providers/tool_manifest_provider.py +10 -10
- autobyteus/tools/usage/registries/__init__.py +1 -3
- autobyteus/tools/usage/registries/tool_formatting_registry.py +115 -8
- autobyteus/tools/usage/tool_schema_provider.py +51 -0
- autobyteus/tools/web/__init__.py +4 -0
- autobyteus/tools/web/read_url_tool.py +80 -0
- autobyteus/utils/diff_utils.py +271 -0
- autobyteus/utils/download_utils.py +109 -0
- autobyteus/utils/file_utils.py +57 -2
- autobyteus/utils/gemini_helper.py +56 -0
- autobyteus/utils/gemini_model_mapping.py +71 -0
- autobyteus/utils/llm_output_formatter.py +75 -0
- autobyteus/utils/tool_call_format.py +36 -0
- autobyteus/workflow/agentic_workflow.py +3 -3
- autobyteus/workflow/bootstrap_steps/agent_tool_injection_step.py +2 -2
- autobyteus/workflow/bootstrap_steps/base_workflow_bootstrap_step.py +2 -2
- autobyteus/workflow/bootstrap_steps/coordinator_initialization_step.py +2 -2
- autobyteus/workflow/bootstrap_steps/coordinator_prompt_preparation_step.py +4 -11
- autobyteus/workflow/bootstrap_steps/workflow_bootstrapper.py +6 -6
- autobyteus/workflow/bootstrap_steps/workflow_runtime_queue_initialization_step.py +2 -2
- autobyteus/workflow/context/workflow_context.py +3 -3
- autobyteus/workflow/context/workflow_runtime_state.py +5 -5
- autobyteus/workflow/events/workflow_event_dispatcher.py +5 -5
- autobyteus/workflow/handlers/lifecycle_workflow_event_handler.py +3 -3
- autobyteus/workflow/handlers/process_user_message_event_handler.py +5 -5
- autobyteus/workflow/handlers/tool_approval_workflow_event_handler.py +2 -2
- autobyteus/workflow/runtime/workflow_runtime.py +8 -8
- autobyteus/workflow/runtime/workflow_worker.py +3 -3
- autobyteus/workflow/status/__init__.py +11 -0
- autobyteus/workflow/status/workflow_status.py +19 -0
- autobyteus/workflow/status/workflow_status_manager.py +48 -0
- autobyteus/workflow/streaming/__init__.py +2 -2
- autobyteus/workflow/streaming/workflow_event_notifier.py +7 -7
- autobyteus/workflow/streaming/workflow_stream_event_payloads.py +4 -4
- autobyteus/workflow/streaming/workflow_stream_events.py +3 -3
- autobyteus/workflow/utils/wait_for_idle.py +4 -4
- autobyteus-1.2.3.dist-info/METADATA +293 -0
- autobyteus-1.2.3.dist-info/RECORD +600 -0
- {autobyteus-1.2.0.dist-info → autobyteus-1.2.3.dist-info}/WHEEL +1 -1
- {autobyteus-1.2.0.dist-info → autobyteus-1.2.3.dist-info}/top_level.txt +0 -1
- autobyteus/agent/bootstrap_steps/agent_runtime_queue_initialization_step.py +0 -57
- autobyteus/agent/hooks/__init__.py +0 -16
- autobyteus/agent/hooks/base_phase_hook.py +0 -78
- autobyteus/agent/hooks/hook_definition.py +0 -36
- autobyteus/agent/hooks/hook_meta.py +0 -37
- autobyteus/agent/hooks/hook_registry.py +0 -106
- autobyteus/agent/llm_response_processor/provider_aware_tool_usage_processor.py +0 -103
- autobyteus/agent/phases/__init__.py +0 -18
- autobyteus/agent/phases/discover.py +0 -53
- autobyteus/agent/phases/manager.py +0 -265
- autobyteus/agent/phases/transition_decorator.py +0 -40
- autobyteus/agent/phases/transition_info.py +0 -33
- autobyteus/agent/remote_agent.py +0 -244
- autobyteus/agent/workspace/workspace_definition.py +0 -36
- autobyteus/agent/workspace/workspace_meta.py +0 -37
- autobyteus/agent/workspace/workspace_registry.py +0 -72
- autobyteus/agent_team/bootstrap_steps/agent_team_runtime_queue_initialization_step.py +0 -25
- autobyteus/agent_team/bootstrap_steps/coordinator_prompt_preparation_step.py +0 -85
- autobyteus/agent_team/phases/__init__.py +0 -11
- autobyteus/agent_team/phases/agent_team_operational_phase.py +0 -19
- autobyteus/agent_team/phases/agent_team_phase_manager.py +0 -48
- autobyteus/llm/api/bedrock_llm.py +0 -92
- autobyteus/llm/api/groq_llm.py +0 -94
- autobyteus/llm/api/nvidia_llm.py +0 -108
- autobyteus/llm/utils/token_pricing_config.py +0 -87
- autobyteus/person/examples/sample_persons.py +0 -14
- autobyteus/person/examples/sample_roles.py +0 -14
- autobyteus/person/person.py +0 -29
- autobyteus/person/role.py +0 -14
- autobyteus/rpc/__init__.py +0 -73
- autobyteus/rpc/client/__init__.py +0 -17
- autobyteus/rpc/client/abstract_client_connection.py +0 -124
- autobyteus/rpc/client/client_connection_manager.py +0 -153
- autobyteus/rpc/client/sse_client_connection.py +0 -306
- autobyteus/rpc/client/stdio_client_connection.py +0 -280
- autobyteus/rpc/config/__init__.py +0 -13
- autobyteus/rpc/config/agent_server_config.py +0 -153
- autobyteus/rpc/config/agent_server_registry.py +0 -152
- autobyteus/rpc/hosting.py +0 -244
- autobyteus/rpc/protocol.py +0 -244
- autobyteus/rpc/server/__init__.py +0 -20
- autobyteus/rpc/server/agent_server_endpoint.py +0 -181
- autobyteus/rpc/server/base_method_handler.py +0 -40
- autobyteus/rpc/server/method_handlers.py +0 -259
- autobyteus/rpc/server/sse_server_handler.py +0 -182
- autobyteus/rpc/server/stdio_server_handler.py +0 -151
- autobyteus/rpc/server_main.py +0 -198
- autobyteus/rpc/transport_type.py +0 -13
- autobyteus/tools/bash/__init__.py +0 -2
- autobyteus/tools/bash/bash_executor.py +0 -100
- autobyteus/tools/browser/__init__.py +0 -2
- autobyteus/tools/browser/session_aware/__init__.py +0 -0
- autobyteus/tools/browser/session_aware/browser_session_aware_navigate_to.py +0 -75
- autobyteus/tools/browser/session_aware/browser_session_aware_tool.py +0 -30
- autobyteus/tools/browser/session_aware/browser_session_aware_web_element_trigger.py +0 -154
- autobyteus/tools/browser/session_aware/browser_session_aware_webpage_reader.py +0 -89
- autobyteus/tools/browser/session_aware/browser_session_aware_webpage_screenshot_taker.py +0 -107
- autobyteus/tools/browser/session_aware/factory/__init__.py +0 -0
- autobyteus/tools/browser/session_aware/factory/browser_session_aware_web_element_trigger_factory.py +0 -14
- autobyteus/tools/browser/session_aware/factory/browser_session_aware_webpage_reader_factory.py +0 -26
- autobyteus/tools/browser/session_aware/factory/browser_session_aware_webpage_screenshot_taker_factory.py +0 -14
- autobyteus/tools/browser/session_aware/shared_browser_session.py +0 -11
- autobyteus/tools/browser/session_aware/shared_browser_session_manager.py +0 -25
- autobyteus/tools/browser/session_aware/web_element_action.py +0 -20
- autobyteus/tools/browser/standalone/__init__.py +0 -6
- autobyteus/tools/browser/standalone/factory/__init__.py +0 -0
- autobyteus/tools/browser/standalone/factory/webpage_reader_factory.py +0 -25
- autobyteus/tools/browser/standalone/factory/webpage_screenshot_taker_factory.py +0 -14
- autobyteus/tools/browser/standalone/navigate_to.py +0 -80
- autobyteus/tools/browser/standalone/web_page_pdf_generator.py +0 -97
- autobyteus/tools/browser/standalone/webpage_image_downloader.py +0 -165
- autobyteus/tools/browser/standalone/webpage_reader.py +0 -101
- autobyteus/tools/browser/standalone/webpage_screenshot_taker.py +0 -101
- autobyteus/tools/file/file_editor.py +0 -200
- autobyteus/tools/google_search.py +0 -149
- autobyteus/tools/timer.py +0 -171
- autobyteus/tools/usage/parsers/__init__.py +0 -22
- autobyteus/tools/usage/parsers/_json_extractor.py +0 -99
- autobyteus/tools/usage/parsers/_string_decoders.py +0 -18
- autobyteus/tools/usage/parsers/anthropic_xml_tool_usage_parser.py +0 -10
- autobyteus/tools/usage/parsers/base_parser.py +0 -41
- autobyteus/tools/usage/parsers/default_json_tool_usage_parser.py +0 -83
- autobyteus/tools/usage/parsers/default_xml_tool_usage_parser.py +0 -316
- autobyteus/tools/usage/parsers/exceptions.py +0 -13
- autobyteus/tools/usage/parsers/gemini_json_tool_usage_parser.py +0 -77
- autobyteus/tools/usage/parsers/openai_json_tool_usage_parser.py +0 -149
- autobyteus/tools/usage/parsers/provider_aware_tool_usage_parser.py +0 -59
- autobyteus/tools/usage/registries/tool_usage_parser_registry.py +0 -62
- autobyteus/workflow/phases/__init__.py +0 -11
- autobyteus/workflow/phases/workflow_operational_phase.py +0 -19
- autobyteus/workflow/phases/workflow_phase_manager.py +0 -48
- autobyteus-1.2.0.dist-info/METADATA +0 -205
- autobyteus-1.2.0.dist-info/RECORD +0 -496
- examples/__init__.py +0 -1
- examples/agent_team/__init__.py +0 -1
- examples/discover_phase_transitions.py +0 -104
- examples/run_browser_agent.py +0 -262
- examples/run_google_slides_agent.py +0 -287
- examples/run_mcp_browser_client.py +0 -174
- examples/run_mcp_google_slides_client.py +0 -270
- examples/run_mcp_list_tools.py +0 -189
- examples/run_poem_writer.py +0 -284
- examples/run_sqlite_agent.py +0 -295
- /autobyteus/{person → skills}/__init__.py +0 -0
- /autobyteus/{person/examples → tools/skill}/__init__.py +0 -0
- {autobyteus-1.2.0.dist-info → autobyteus-1.2.3.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,600 @@
|
|
|
1
|
+
autobyteus/__init__.py,sha256=ij7pzJD0e838u_nQIypAlXkJQgUkcB898Gqw2Dovv-s,110
|
|
2
|
+
autobyteus/check_requirements.py,sha256=nLWmqMlGiAToQuub68IpL2EhRxFZ1CyCwRCMi2C5hrY,853
|
|
3
|
+
autobyteus/agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
+
autobyteus/agent/agent.py,sha256=-xTkRSXjW1CChqSkgdlYrGEBok-4wjJhnM4f-7_faJ0,5211
|
|
5
|
+
autobyteus/agent/exceptions.py,sha256=tfXvey5SkT70X6kcu29o8YO91KB0hI9_uLrba91_G2s,237
|
|
6
|
+
autobyteus/agent/llm_request_assembler.py,sha256=X4nJqsm1nCOpFPKE10-Xs6xzu50YiUxNykOQ08UstV4,3946
|
|
7
|
+
autobyteus/agent/processor_option.py,sha256=kQhrp2AfwTWMVYPwq0Dg_vvlPDGBdcmO12IecCw4rEI,472
|
|
8
|
+
autobyteus/agent/sender_type.py,sha256=kCtm9BnJoXv3Ab6wBOToFliqGHQy9HEkIhP0GsXhyZI,641
|
|
9
|
+
autobyteus/agent/token_budget.py,sha256=_enFEGTDjVif0l99ztqqLHnH6NzAOmBq8jj8J5xR9x8,1786
|
|
10
|
+
autobyteus/agent/tool_invocation.py,sha256=D9HT0spLLmstzT-gtGCMK9BANdUywL9oDd6aR1Ilg70,2093
|
|
11
|
+
autobyteus/agent/bootstrap_steps/__init__.py,sha256=mkOXVVENq5XJTAP6hgNo6UKXLmiBmo4kjU7MVX4hgD0,749
|
|
12
|
+
autobyteus/agent/bootstrap_steps/agent_bootstrapper.py,sha256=yCqILTIHLojIgDBmt13cUmkwftvATh8buxrHibl1qQQ,1346
|
|
13
|
+
autobyteus/agent/bootstrap_steps/base_bootstrap_step.py,sha256=7tZVk1S4IqWAxs25eNxRA4wIElEHSFz6-rlIT39ejxs,1147
|
|
14
|
+
autobyteus/agent/bootstrap_steps/mcp_server_prewarming_step.py,sha256=MK-WXZ2966TrVAtmAbMdLLAsAlMryoEW2SunRPpP3BI,3316
|
|
15
|
+
autobyteus/agent/bootstrap_steps/system_prompt_processing_step.py,sha256=r7NRlX7SnVjHO5YgJ8GQ-AkVkqva2CBOhDxafpUMsrM,5933
|
|
16
|
+
autobyteus/agent/bootstrap_steps/workspace_context_initialization_step.py,sha256=csrBDoUu5qYfYRI5xCJkto0ifluVMRd9gkv1s5nr7BI,1997
|
|
17
|
+
autobyteus/agent/context/__init__.py,sha256=1an2L4sKJ1tYbJKAhCLSw-oYzt5_lmUwh1SYClA5c3M,447
|
|
18
|
+
autobyteus/agent/context/agent_config.py,sha256=EtntGBBgECwlkKRsCANOwyWckzlpKJHOSCqJg3AFBBY,7755
|
|
19
|
+
autobyteus/agent/context/agent_context.py,sha256=j9h7ytxlNvYCZSsdmRBGMSyfw-D7zYnuKlctfyn9nAU,5833
|
|
20
|
+
autobyteus/agent/context/agent_context_registry.py,sha256=GqwKn0EKKTRv6Vwwrb5kMRrwD9uH5NCh_Nvtmw82QTo,2748
|
|
21
|
+
autobyteus/agent/context/agent_runtime_state.py,sha256=R8xrEfElqn-AEkl5hn_vYtaXnjdjfp6vrk2QImtijDQ,5538
|
|
22
|
+
autobyteus/agent/events/__init__.py,sha256=zqWRWijkNPc_MyTEu8V74DxQS0M5tGve_DsquQxJUIM,1960
|
|
23
|
+
autobyteus/agent/events/agent_events.py,sha256=5li1ZB9jGcofkCzVaebvhYyoG22kpgzM1k_4XZYLe-k,5022
|
|
24
|
+
autobyteus/agent/events/agent_input_event_queue_manager.py,sha256=cgUNvZs71otaGWMFkeeNxYehkZue2aP0QDXIMjcvBhs,12485
|
|
25
|
+
autobyteus/agent/events/event_store.py,sha256=cDOAQK8R5Mk8cS9_sE_RcL780iOQN1GjkrvMltm1aAM,1693
|
|
26
|
+
autobyteus/agent/events/notifiers.py,sha256=x5YmRKSKOs1F5WUzzzYK20wRyiu5QJOZgDQHqoUj0QQ,7368
|
|
27
|
+
autobyteus/agent/events/worker_event_dispatcher.py,sha256=f1lHfem02xY9yCPGFdJkZZEuuZVAxl-mfGkPeh-tQaA,3574
|
|
28
|
+
autobyteus/agent/factory/__init__.py,sha256=4_PxMM-S_BRuYoQBHIffY6bXpBdEv-zFyuB6YaK93Yw,204
|
|
29
|
+
autobyteus/agent/factory/agent_factory.py,sha256=90zI6OKhcVQFk5rzMuBqPFL9KnFZ7oNx2gse5s1k0BM,9316
|
|
30
|
+
autobyteus/agent/handlers/__init__.py,sha256=YIupwVsl_fIHLWdjn_dgrNziZYrvaOr3F8D3hhRbdS4,1598
|
|
31
|
+
autobyteus/agent/handlers/approved_tool_invocation_event_handler.py,sha256=s_D4v1FrvgCZJQR9n0bA_1tH61qIkWEU8DsRg0PU8D4,8505
|
|
32
|
+
autobyteus/agent/handlers/base_event_handler.py,sha256=G2vtFJT_vyObWTgrgwIgRwOssBQ-6A3gxHtc7S4SEuQ,1264
|
|
33
|
+
autobyteus/agent/handlers/bootstrap_event_handler.py,sha256=ceKP4QpJU72Zd48wJVLg324z8iv_ekUp8hc31aPjXCA,6895
|
|
34
|
+
autobyteus/agent/handlers/event_handler_registry.py,sha256=95BCsKtxKFFSsliSJOCb6nw10TMbiRK2qM366DDuZKM,3474
|
|
35
|
+
autobyteus/agent/handlers/generic_event_handler.py,sha256=759BrDJI-sesY74YN3CX3OfTM44vLGyj6Sg1gd8eJ_w,1888
|
|
36
|
+
autobyteus/agent/handlers/inter_agent_message_event_handler.py,sha256=ZyHTrcvLpjhnJbAg6Bp1WO6ZmXYQ0E9P4XufWiB2cL8,4091
|
|
37
|
+
autobyteus/agent/handlers/lifecycle_event_logger.py,sha256=-BhbSU0qWvHD1nzkwb49L22uhVv1-rFawB4tFg6XvrA,3057
|
|
38
|
+
autobyteus/agent/handlers/llm_complete_response_received_event_handler.py,sha256=4_4kKSgtjvWQhYJUEAu7wV8IsMspQJuU-DMn7EGHClY,7412
|
|
39
|
+
autobyteus/agent/handlers/llm_user_message_ready_event_handler.py,sha256=fjFmDNB9rKkKVCuR4LTzVhjaRwNTCN8j70vin-QUxEw,14862
|
|
40
|
+
autobyteus/agent/handlers/tool_execution_approval_event_handler.py,sha256=s4yJ0lWotW56JAgAqg3-GGUXvqnCo8rbOa98jGXwp1I,3921
|
|
41
|
+
autobyteus/agent/handlers/tool_invocation_request_event_handler.py,sha256=DPGNhjFnrJVgAK9Ej7Z_lTzxuvKFvuubCECY8F4UhqA,11321
|
|
42
|
+
autobyteus/agent/handlers/tool_result_event_handler.py,sha256=U5rYPpGN2evffVYDK5IZhjj91ymv1zX5Y4xYqTNasa8,10651
|
|
43
|
+
autobyteus/agent/handlers/user_input_message_event_handler.py,sha256=BlnsOAcMSk_7bYuRymE1vEnwbmlROwOTVjS9b0faB8Q,5926
|
|
44
|
+
autobyteus/agent/input_processor/__init__.py,sha256=uyxNlVWQXkHshNFp-9MkjRjMK0f7Ve0Mjx_d-q8C8Ic,330
|
|
45
|
+
autobyteus/agent/input_processor/base_user_input_processor.py,sha256=7y11eGo4gT25nt1F-c3cNqkyBQwq1sCOkDkQ5SPhg2A,2650
|
|
46
|
+
autobyteus/agent/input_processor/memory_ingest_input_processor.py,sha256=PVlECkAZbBQFidUG5h6ZVkw_jfo1dhgzcIdeZ3Mn-Yw,1423
|
|
47
|
+
autobyteus/agent/input_processor/processor_definition.py,sha256=ISRHvjbBhlG2DYdgSK4hN3i8w1DJkgPOvCDY06TuslQ,2101
|
|
48
|
+
autobyteus/agent/input_processor/processor_meta.py,sha256=Ns_VcPbK4-xLlpbdFIC_xWfgoXDHVduVTNN7EUCUPgU,2241
|
|
49
|
+
autobyteus/agent/input_processor/processor_registry.py,sha256=GMTw-XAeHvNaHcWEOpSQ9mCDeb4iT94slQa-pNH44M0,4651
|
|
50
|
+
autobyteus/agent/lifecycle/__init__.py,sha256=bPIqfkT0EV-KJZ-bCD_PKA2tDk7GwcHjFQCp84E5Ikc,431
|
|
51
|
+
autobyteus/agent/lifecycle/base_processor.py,sha256=Q5kKKEBThrG_R0FNOSn_sWbETW57rEyEm972WtEuhjw,4065
|
|
52
|
+
autobyteus/agent/lifecycle/events.py,sha256=M_scmxs_AQkvAoxiMpkFv9wRbfNl5ndJO6taK0rSjDs,1181
|
|
53
|
+
autobyteus/agent/lifecycle/processor_definition.py,sha256=nD_0fdg4Ij0nUox9vm_Kev6hUjrHEcnts6nuUA-AFoU,1453
|
|
54
|
+
autobyteus/agent/lifecycle/processor_registry.py,sha256=DooaUagcnCIn_NgqK67dLZd_lzhGDMagGll3h_FcHj0,4616
|
|
55
|
+
autobyteus/agent/llm_response_processor/__init__.py,sha256=EiMaAO3k6d6EUFxfUYdpSHNIhlwRam4-k5mZRFgWdT0,220
|
|
56
|
+
autobyteus/agent/llm_response_processor/base_processor.py,sha256=7NcvEwc-HXZD7otv9hzSvFseuZ7xOviZjtTTHGFQeuI,2846
|
|
57
|
+
autobyteus/agent/llm_response_processor/processor_definition.py,sha256=AMLmiL8dMlTpmBKmQrqrfNTfwJLyL6kLHYGqJ-Ly8bE,1464
|
|
58
|
+
autobyteus/agent/llm_response_processor/processor_meta.py,sha256=RC32R5SVTSpBEOdexVh_SOTIydv0_ElWGP7PsXB-q_Q,1813
|
|
59
|
+
autobyteus/agent/llm_response_processor/processor_registry.py,sha256=j9IK0ZLeXxOaX9L3YtmprwYNgWHqtMt_lEOZqgP675k,4536
|
|
60
|
+
autobyteus/agent/message/__init__.py,sha256=vIgKdHwCaRsaJNdi9jmGnenUZjrOhHq8hO0eZsi48hE,759
|
|
61
|
+
autobyteus/agent/message/agent_input_user_message.py,sha256=ntjK0kP3kw2o4NjQ2o2XuCv_rwqs3tjJD1s_fBHg6aE,4794
|
|
62
|
+
autobyteus/agent/message/context_file.py,sha256=161HOu_m7923GU9kI_EDEWtVckb2nuTyqDunBq8H2kg,3311
|
|
63
|
+
autobyteus/agent/message/context_file_type.py,sha256=P_p47MjyxgxIyld6Y0MQfYWkP8X0joOZLQaoM7Q3Y0o,3200
|
|
64
|
+
autobyteus/agent/message/inter_agent_message.py,sha256=302oAt5PdrAqS1Cz80o7G6Kk3Ur1D9JNxze7Q0NI3dM,2436
|
|
65
|
+
autobyteus/agent/message/inter_agent_message_type.py,sha256=l-j0WB4F6yRXSSnHRKzNfmwnL4wX3usPN0JIrQthyEA,1130
|
|
66
|
+
autobyteus/agent/message/multimodal_message_builder.py,sha256=rPyfdqphWKMOeV5GImveR3__8yuDXIMbHx9cAypZGLU,2017
|
|
67
|
+
autobyteus/agent/message/send_message_to.py,sha256=SMIG5tqtWHbIatPsXJY8wzfb4tB-jQYFxLoAY8ExeVY,5923
|
|
68
|
+
autobyteus/agent/runtime/__init__.py,sha256=VQLu_-t86WkvLKEnGmbPksP53CrqgchqY8eB-DS-SsI,457
|
|
69
|
+
autobyteus/agent/runtime/agent_runtime.py,sha256=IdHgZ2FzRLmXZcLmslKHTEqab9tug3FaOw1Bj377D3g,7217
|
|
70
|
+
autobyteus/agent/runtime/agent_thread_pool_manager.py,sha256=-dyo3LQ4Mi1upUyyp-8EmQuRXWamIcESc1-WCVSS0dM,3607
|
|
71
|
+
autobyteus/agent/runtime/agent_worker.py,sha256=KaoAObptljxRXbpAL8nhcYCbMMGIQYVAE4B684lnKUE,14849
|
|
72
|
+
autobyteus/agent/shutdown_steps/__init__.py,sha256=nb1iDYRg12rKecT_eWrsT17-SFy6bzErvO-7RCct_sk,644
|
|
73
|
+
autobyteus/agent/shutdown_steps/agent_shutdown_orchestrator.py,sha256=ThSwkFkq1AogR8zqG9WouabURRRPFRNlX9w5RahUgUM,2557
|
|
74
|
+
autobyteus/agent/shutdown_steps/base_shutdown_step.py,sha256=YqHMD4opVvjCHHZdD38SxxJLhfAHL5523DNymUNHiD4,1083
|
|
75
|
+
autobyteus/agent/shutdown_steps/llm_instance_cleanup_step.py,sha256=f0zfOLNA_Ksp4Q0kBvikNlvoTXCnN-erQzSPMtmK44c,1863
|
|
76
|
+
autobyteus/agent/shutdown_steps/mcp_server_cleanup_step.py,sha256=_Ra9Fsf2KnPJAoGK0YdMH1wd0GdMonc9-MYY1GQookQ,1274
|
|
77
|
+
autobyteus/agent/shutdown_steps/tool_cleanup_step.py,sha256=In67UK5WJeSZJxlnefq7jrUChQmANf0sFzGsT39u3F8,2172
|
|
78
|
+
autobyteus/agent/status/__init__.py,sha256=73r-DzruvszIJGeVoam-wtjKGcDaQ5JPDDX3J5dHJgg,380
|
|
79
|
+
autobyteus/agent/status/manager.py,sha256=eBjtyskJ5rCoXBUZBzv0EsmVQV87xnkOU_gK4w3Tuvg,4334
|
|
80
|
+
autobyteus/agent/status/status_deriver.py,sha256=5C-E2YZ6aChg16WHfEwR8TTjH-ZWwB3ofQNullmLBXo,3902
|
|
81
|
+
autobyteus/agent/status/status_enum.py,sha256=iCHkjOzMZUnE3Yy84MZ-M5JciqeSlR-20dgesLWyNow,2737
|
|
82
|
+
autobyteus/agent/status/status_update_utils.py,sha256=C47jBXaIV8VruTFMxBmJSy--34J_-ECk_U2fMkvMLyE,3094
|
|
83
|
+
autobyteus/agent/streaming/__init__.py,sha256=yqj469YpqKoNg2QzhtLYpFAUBu7qmdPtNWDaId1NZvE,2039
|
|
84
|
+
autobyteus/agent/streaming/agent_event_stream.py,sha256=KQ9Acp_GEGdTNy7HG5ARPSia2tEHf7csOCPxhU0tTYs,136
|
|
85
|
+
autobyteus/agent/streaming/api_tool_call_streaming_response_handler.py,sha256=Fl5BAOvmqrNhpyNxok_Ukh_7eg-KzrZqkbVQix8AwIs,216
|
|
86
|
+
autobyteus/agent/streaming/parsing_streaming_response_handler.py,sha256=kRWjawWjhnUdxxNuQHHBZrV08tOCDKMQ-_R39FkDGLk,198
|
|
87
|
+
autobyteus/agent/streaming/pass_through_streaming_response_handler.py,sha256=MKSsjJm40qJcW-Fx4PxxArytu4cAeQ5MmeCx5nNaRzA,215
|
|
88
|
+
autobyteus/agent/streaming/queue_streamer.py,sha256=LFoY6HsaYYvMXccWvj2j5vKlFhvDJoEVze4sU_P4pto,136
|
|
89
|
+
autobyteus/agent/streaming/stream_event_payloads.py,sha256=x9bG5a0KAk3p-OcR6Cs4FLgJeMj6k-cOTvE2u6gshlQ,96
|
|
90
|
+
autobyteus/agent/streaming/stream_events.py,sha256=M9URjxZ-uHt-lMvkUZFiLZabNAgCZPztVFuW6PdqlBo,126
|
|
91
|
+
autobyteus/agent/streaming/streaming_handler_factory.py,sha256=SKAkIYrOQZN_C-FqQaXLdY9u_fnwAo7hdHKgaEsBbX4,189
|
|
92
|
+
autobyteus/agent/streaming/streaming_response_handler.py,sha256=LiRkmfEv4-txuMeHeDiw-tumeUecL298WUn_XfLgCuk,169
|
|
93
|
+
autobyteus/agent/streaming/adapters/__init__.py,sha256=i-EFWMDLnxV_uMkNZeZhJG6RPsSgy2wDR5x_DpdlHt0,471
|
|
94
|
+
autobyteus/agent/streaming/adapters/invocation_adapter.py,sha256=f6QKIs5q6a-uAJOY6lXc6RHug9lMvn2vWtFLwaMTATQ,7188
|
|
95
|
+
autobyteus/agent/streaming/adapters/tool_call_parsing.py,sha256=DRgDwHWUJVZ6jxlCR4y1byMZRzmhF0Fu1vGxdYtU_W4,5008
|
|
96
|
+
autobyteus/agent/streaming/adapters/tool_syntax_registry.py,sha256=VbNb4Dk83ArawFP7wg4RGkqEnLmhfj1TNVEI5NnM1SI,1960
|
|
97
|
+
autobyteus/agent/streaming/api_tool_call/__init__.py,sha256=karHTb4iZHmpbKMVk5yA7NPX0GhLuJPBj7NRuOPGSSc,428
|
|
98
|
+
autobyteus/agent/streaming/api_tool_call/file_content_streamer.py,sha256=nO041x27GDE-30MFX_7bPkocHWCF7HOhTrh25cMB0Kw,1767
|
|
99
|
+
autobyteus/agent/streaming/api_tool_call/json_string_field_extractor.py,sha256=L4rPd_Vf3R4bHaOM_djIQ82kkh1ePgjH3VFfQRVZSY4,5840
|
|
100
|
+
autobyteus/agent/streaming/events/__init__.py,sha256=LMgkv7GzbIW8k5ofoR3NA45VLlNuc9PcHtIX9Gv0tnA,220
|
|
101
|
+
autobyteus/agent/streaming/events/stream_event_payloads.py,sha256=dJR7T0RIjgp-UB-TwAbNch7ewvOU9I5Vu0otLNyhie0,11608
|
|
102
|
+
autobyteus/agent/streaming/events/stream_events.py,sha256=GA4nMIEg7qzxjja-EaP8tycmLKFOefPct3307Q-pcZc,6089
|
|
103
|
+
autobyteus/agent/streaming/handlers/__init__.py,sha256=Zp5n6bFCDqP856XHjR4E928AHohdF98zCLN9YNw9ZoU,642
|
|
104
|
+
autobyteus/agent/streaming/handlers/api_tool_call_streaming_response_handler.py,sha256=pyczRQNthOUU3M2Z34cVypYpDQEFpCEMcHSkpgQm3sE,12812
|
|
105
|
+
autobyteus/agent/streaming/handlers/parsing_streaming_response_handler.py,sha256=3NhklXpJeXUOJhFnC_lhbm5f5kXMiLUYcntiMK0PefU,3963
|
|
106
|
+
autobyteus/agent/streaming/handlers/pass_through_streaming_response_handler.py,sha256=TohTF8btClWKQ1X9GqjNf-Gcp4vhczS48BBBBEh-C-Y,3711
|
|
107
|
+
autobyteus/agent/streaming/handlers/streaming_handler_factory.py,sha256=zDkCenAnRi6MnSRyU9_MOS9Afj0T-6EYMQlwOZxv5jk,6872
|
|
108
|
+
autobyteus/agent/streaming/handlers/streaming_response_handler.py,sha256=tQo5Fvj8mva4VMG7kGuQe-bBB9nalbYIn-LBIN4k9E4,1602
|
|
109
|
+
autobyteus/agent/streaming/parser/__init__.py,sha256=J3fccWuhByU-Af5uTqU_CrVUnlEnlRgapSkvReSXaNU,2026
|
|
110
|
+
autobyteus/agent/streaming/parser/event_emitter.py,sha256=zqRn9Bdy4UGQ9w6TXhudVYDBPzBUmE_bZCoo-TUKhxM,6101
|
|
111
|
+
autobyteus/agent/streaming/parser/events.py,sha256=Sl9m4sApHxw5Af0tmjSzZfyRmPQoDV1cz1Jki0gvP1g,158
|
|
112
|
+
autobyteus/agent/streaming/parser/invocation_adapter.py,sha256=VqNrTfEDYU9vQOOJmrDT6yCVo2ECP4hwzXWmyYLHYpg,153
|
|
113
|
+
autobyteus/agent/streaming/parser/parser_context.py,sha256=K7Mjy7UdUU92_je3eyD3gnDM15aJY4ZImoHn_PdbKJw,7998
|
|
114
|
+
autobyteus/agent/streaming/parser/parser_factory.py,sha256=ewKgCopeAeUl1HMrwmVmBAZzUeoQT_qMCTH6AdFPnhg,3985
|
|
115
|
+
autobyteus/agent/streaming/parser/sentinel_format.py,sha256=X0yTgV9IXn1bS7oohG_9CWQ9GIzi-A3VhxfQARNop2s,131
|
|
116
|
+
autobyteus/agent/streaming/parser/state_factory.py,sha256=zm5glqgTjgA3hFG_g294f8_CEdGHgrjQ7UNvkUf5yr8,2603
|
|
117
|
+
autobyteus/agent/streaming/parser/stream_scanner.py,sha256=R8rh79t96ikqWBws-xCCjsY_rKeTQED8rmTTg5Sg8Jk,5031
|
|
118
|
+
autobyteus/agent/streaming/parser/streaming_parser.py,sha256=lBtjcOKzaAH1yBQYj-akrput_5F4oivUum7WQUnMCbg,6707
|
|
119
|
+
autobyteus/agent/streaming/parser/tool_call_parsing.py,sha256=foU3293xJgHuoDA4UfqOaQhHMAGU8yZJj1P6EuxndBU,160
|
|
120
|
+
autobyteus/agent/streaming/parser/tool_constants.py,sha256=YpyNxz5hoap0ugYB2sLWXa6keASlEBPgk-fbAygJLns,154
|
|
121
|
+
autobyteus/agent/streaming/parser/tool_syntax_registry.py,sha256=VI6OhtUXeJ2SFFdw9q48H1UlhtTFbuO1FRtlLjQ4j9Y,181
|
|
122
|
+
autobyteus/agent/streaming/parser/xml_tool_parsing_state_registry.py,sha256=ER48meXSgKvFmAzFF5XD16fg7ECIzp9Y3iaLzJITm54,2381
|
|
123
|
+
autobyteus/agent/streaming/parser/json_parsing_strategies/__init__.py,sha256=I_WHkmZoBxydNBSnwNcwf_I84v8zw2S4UewoUTzQovw,591
|
|
124
|
+
autobyteus/agent/streaming/parser/json_parsing_strategies/base.py,sha256=4aUoY-jZrUqLdn3yErnL6lJdXqMwVsDixaSzOoDKwPw,849
|
|
125
|
+
autobyteus/agent/streaming/parser/json_parsing_strategies/default.py,sha256=9Bwz-BGlnHzcKzNhsc6a4IV5HIsDOubTUs-6JWPm_1A,961
|
|
126
|
+
autobyteus/agent/streaming/parser/json_parsing_strategies/gemini.py,sha256=yCIUIwXuX3OIhoYiAovmaYqyO22Lkl4ZOsiLixiVMhM,878
|
|
127
|
+
autobyteus/agent/streaming/parser/json_parsing_strategies/openai.py,sha256=lqboPOPTM5TvryWFvsZpuJ1lLTSVZhawMn3TeVioocc,2205
|
|
128
|
+
autobyteus/agent/streaming/parser/json_parsing_strategies/registry.py,sha256=J8lyCzr05H10d1O7Zd3WIwvFwV7tdFv4ivJq6cOmQds,1806
|
|
129
|
+
autobyteus/agent/streaming/parser/states/__init__.py,sha256=yGNL5Ed--v9XdEZFVbkynqDLYyPde4FTlvUJvuE4zzA,20
|
|
130
|
+
autobyteus/agent/streaming/parser/states/base_state.py,sha256=VyTOo7CehmL6GazkIv8o2CC3wqqkmU5yGlkkCfAc7Yk,1716
|
|
131
|
+
autobyteus/agent/streaming/parser/states/custom_xml_tag_run_bash_parsing_state.py,sha256=0Hl1lkVrtcwrsMpKsD7ZioiWG-Qk0mfkJhOY7lKkfkg,1055
|
|
132
|
+
autobyteus/agent/streaming/parser/states/custom_xml_tag_write_file_parsing_state.py,sha256=tMfffP952uiudBAgrUN0rAbD5AcG7jp4lv3im8JJIeU,1876
|
|
133
|
+
autobyteus/agent/streaming/parser/states/delimited_content_state.py,sha256=x1b-RsbafH4k8fVYIs0j1SEA23nZ_sKEnEnBQJyyKMg,4867
|
|
134
|
+
autobyteus/agent/streaming/parser/states/json_initialization_state.py,sha256=Y3ETHxdqsvpreFokiASlEnj6XHQx32M05bj9q6hKU7o,5346
|
|
135
|
+
autobyteus/agent/streaming/parser/states/json_tool_parsing_state.py,sha256=_shH6tCAuYwhhI36yXUuYJx2ljSinq6PSNkmMp9UvZg,4283
|
|
136
|
+
autobyteus/agent/streaming/parser/states/sentinel_content_state.py,sha256=PHcWMtxYbeKk8kX5TX8ANniiNpk1sXiG3rufFNVn8_0,829
|
|
137
|
+
autobyteus/agent/streaming/parser/states/sentinel_initialization_state.py,sha256=wZncFSsm4YsnB46hNHEJm5xVLt9B871U4A_jN9wqRQI,3979
|
|
138
|
+
autobyteus/agent/streaming/parser/states/text_state.py,sha256=NJcXYiVGQ_xNVJfCTqoAXJpQl7cVmxQ_McdEYrqIBrs,2432
|
|
139
|
+
autobyteus/agent/streaming/parser/states/xml_patch_file_tool_parsing_state.py,sha256=gabTBXefYsDA4TKyMhnuC1R6faQ0P3as_-_IgAWIylI,13332
|
|
140
|
+
autobyteus/agent/streaming/parser/states/xml_run_bash_tool_parsing_state.py,sha256=_QbGFL9B7ZMZHMx2ZNOsROxjnpha2W-IqyKk4OxqAXI,4513
|
|
141
|
+
autobyteus/agent/streaming/parser/states/xml_tag_initialization_state.py,sha256=JZXRUPiPzd-LMVIts93nlHa6zFprFgKXHxCxWUXjZ6M,6035
|
|
142
|
+
autobyteus/agent/streaming/parser/states/xml_tool_parsing_state.py,sha256=fRFu1wL_zEhdeWxmXEyU2uUZxwz0JOoUiTz3l2_FDXE,1996
|
|
143
|
+
autobyteus/agent/streaming/parser/states/xml_write_file_tool_parsing_state.py,sha256=krzQO52fkcN3za02Rr-Tvnf2qoTqFxql6JESusxPPkw,14520
|
|
144
|
+
autobyteus/agent/streaming/parser/strategies/__init__.py,sha256=KqkV4Cy4s6CMTfNJIHhtLYy_scXpMbKr8LZQBbGxIwI,425
|
|
145
|
+
autobyteus/agent/streaming/parser/strategies/base.py,sha256=YLUotkLWXxfjs80qrR93rGZDQVahkMqWLdX0_D0GZE0,651
|
|
146
|
+
autobyteus/agent/streaming/parser/strategies/json_tool_strategy.py,sha256=G_SbXhn6yIPi1jQNosYEYLhUG3b0980lYL1vD4vR9Cg,848
|
|
147
|
+
autobyteus/agent/streaming/parser/strategies/registry.py,sha256=PtfuG63fFIH8QZUNRv4gx4pHSXpzbfVtc_Ahe6qQzGU,795
|
|
148
|
+
autobyteus/agent/streaming/parser/strategies/sentinel_strategy.py,sha256=wLT8_6t19kLPe1dI_k4sPQvV7aopBYCio1YPcxxJHbY,672
|
|
149
|
+
autobyteus/agent/streaming/parser/strategies/xml_tag_strategy.py,sha256=Szn__0LajOlkbfcxokK1QEbdnF9d_cENM8tjiQ-_4_E,640
|
|
150
|
+
autobyteus/agent/streaming/segments/__init__.py,sha256=BmTIdAoPz5nslRfmgB46BDbrOjSHP9vCTK45rFVm6gc,183
|
|
151
|
+
autobyteus/agent/streaming/segments/segment_events.py,sha256=y7PxbqaFFJb7ZjEa9jBTAd7L-o4_l6U4suN-FXSTO7c,2634
|
|
152
|
+
autobyteus/agent/streaming/streams/__init__.py,sha256=BYIZoE3wHPk4aot4Sa8Zmf8_ndAnvxGYn-gP17EwP_M,129
|
|
153
|
+
autobyteus/agent/streaming/streams/agent_event_stream.py,sha256=JcXPRDib77dB7VqdBwchqlOoNziaMi6yAPdFya-Y9EY,11110
|
|
154
|
+
autobyteus/agent/streaming/utils/__init__.py,sha256=nYG9HyjmMltHYtUhWXafa_wR5bHuQBEVZ4Im0gJZw-I,109
|
|
155
|
+
autobyteus/agent/streaming/utils/queue_streamer.py,sha256=FQiM_HKjGD_VYi9H2vzPDFoJTS1ivv3NDyJK-o3p48c,2303
|
|
156
|
+
autobyteus/agent/system_prompt_processor/__init__.py,sha256=6aerwbB9wUYtd0YVa2Aipse0U6tyPwCt0V7XLvaZxUM,543
|
|
157
|
+
autobyteus/agent/system_prompt_processor/available_skills_processor.py,sha256=Oys3mSRSFoXWQ3mfldjemj-8uJ9SwksOFj_wNGcf2iU,3465
|
|
158
|
+
autobyteus/agent/system_prompt_processor/base_processor.py,sha256=qqUsHQLP05xiU_xkA2rKJbDLayl3BPgyjjLE9VFqPVU,2164
|
|
159
|
+
autobyteus/agent/system_prompt_processor/processor_definition.py,sha256=r2ry7igUxaVrpAVmzAtR-O1ssFIhQEry-2PBs6YIZog,1767
|
|
160
|
+
autobyteus/agent/system_prompt_processor/processor_meta.py,sha256=-Bwkt_CjhhNku02JkUlqJSf3WZ3iBrBKtLCwA46vArg,2821
|
|
161
|
+
autobyteus/agent/system_prompt_processor/processor_registry.py,sha256=ErRcf5LoxmvqNe3jATCFZyaQdtEuLEErIyfsuzwJ2sA,4639
|
|
162
|
+
autobyteus/agent/system_prompt_processor/tool_manifest_injector_processor.py,sha256=VRcak4-jPrAr7W9bagYBaMWQD0Yv52YLDR3OOv47Tus,2637
|
|
163
|
+
autobyteus/agent/tool_execution_result_processor/__init__.py,sha256=GKiNSMvVvwuBce0z1wEUaf48NOzOqugzvB5Utxt8w7w,286
|
|
164
|
+
autobyteus/agent/tool_execution_result_processor/base_processor.py,sha256=ivbHPOk-Da0M1FbGdtnN_OWZoRBTR9GYTdFNDLW9wN0,1999
|
|
165
|
+
autobyteus/agent/tool_execution_result_processor/memory_ingest_tool_result_processor.py,sha256=2yEvTEtJyZGqLvp7bPz6K2V6i_a9bIxydd_Z_Hgcc-o,1098
|
|
166
|
+
autobyteus/agent/tool_execution_result_processor/processor_definition.py,sha256=Zr5a-DwKNdYuSO-UAD2R6Rg686YQAin5FhA6pWnxUVQ,1555
|
|
167
|
+
autobyteus/agent/tool_execution_result_processor/processor_meta.py,sha256=uUSvKeVVg6lq8aTCTvkKQjWlEOB2l0cn4FheC4s2hp8,1772
|
|
168
|
+
autobyteus/agent/tool_execution_result_processor/processor_registry.py,sha256=klCuVvgPIERqhPlIjvCrPnPGTNAHKsp8wS6Zw5jOk_o,3545
|
|
169
|
+
autobyteus/agent/tool_invocation_preprocessor/__init__.py,sha256=NYrYtJ4Vh7-y3CcbYc7myklSriwaQT7SkAUaRDUtJeg,361
|
|
170
|
+
autobyteus/agent/tool_invocation_preprocessor/base_preprocessor.py,sha256=I_Zb9FPMqy486ncydcqzp4n9USNn3VUzVuVWxbSZggo,1249
|
|
171
|
+
autobyteus/agent/tool_invocation_preprocessor/processor_definition.py,sha256=p2HP-FS28tg6EgK-P2OTkZebUexpSq_w4zWPvLOpIBg,517
|
|
172
|
+
autobyteus/agent/tool_invocation_preprocessor/processor_meta.py,sha256=qY_z-IkfrgrhlGBRUiybP2aHTU22ighkxI_BJ2BNOI0,1554
|
|
173
|
+
autobyteus/agent/tool_invocation_preprocessor/processor_registry.py,sha256=0aOtB8zDAxFlRHFYeJdMSaWcMXrOaAz7Dqe8KttoXr4,2692
|
|
174
|
+
autobyteus/agent/utils/__init__.py,sha256=vau-Zjww0qxPyo9SetL7aLUEw-99PX8Nv8TEDngUlKs,210
|
|
175
|
+
autobyteus/agent/utils/wait_for_idle.py,sha256=1TfPJaDn-YHCF52jz7Dw7tmlJoBcKyiyqqPqkui-BKo,2387
|
|
176
|
+
autobyteus/agent/workspace/__init__.py,sha256=7a16HpWxic9zxxsmZeICnBGHK_Z2K9yJUv4z9YELKfw,277
|
|
177
|
+
autobyteus/agent/workspace/base_workspace.py,sha256=_bgkyl6RB6XGZm5xy4Skd3tN0ICnSaZ9tgdSLzTBiJM,2721
|
|
178
|
+
autobyteus/agent/workspace/workspace_config.py,sha256=UfDpOkCH5B7ddt227zoQdmq8bCvI0wTL9vPAB6tOH24,5571
|
|
179
|
+
autobyteus/agent_team/__init__.py,sha256=JzL7W4KLKQdFpV3WLAZJp0dM5DQWgD3xAqLr-iRoEas,53
|
|
180
|
+
autobyteus/agent_team/agent_team.py,sha256=_M2awCPc8tV7aGOlU05XrzRGyYLHxI1J7YrEb68djO8,3693
|
|
181
|
+
autobyteus/agent_team/agent_team_builder.py,sha256=Id6tnVpYM6ehbR7tg1Ks1k5dYxvKLYMLefV7A_IYxxs,7552
|
|
182
|
+
autobyteus/agent_team/base_agent_team.py,sha256=AtTCt0upZjbV5Jj-2wFI54lzUsYHkstErttIZXQOJL0,3199
|
|
183
|
+
autobyteus/agent_team/exceptions.py,sha256=24kOHkJoyW1AKF7KQPuy8HIEpqzcYm3N_kl7W5CluSc,389
|
|
184
|
+
autobyteus/agent_team/bootstrap_steps/__init__.py,sha256=9qptkUbuZ4vgk6iDVQrZkI63z3_22Nkpo4mUVLjqr78,1057
|
|
185
|
+
autobyteus/agent_team/bootstrap_steps/agent_configuration_preparation_step.py,sha256=FjIMY6VzI2wA0gG2NRhHuB51F-wuHrxjl7W149j9s1E,3876
|
|
186
|
+
autobyteus/agent_team/bootstrap_steps/agent_team_bootstrapper.py,sha256=bw3SXMS24bWS7SYXoiR62rJX_Ki4bxPJuIZyNKR2t94,2106
|
|
187
|
+
autobyteus/agent_team/bootstrap_steps/base_agent_team_bootstrap_step.py,sha256=6Sp41yxd8d-Fy0GghP4MYhbsRIMWFxklVUFFV0LI3X0,767
|
|
188
|
+
autobyteus/agent_team/bootstrap_steps/coordinator_initialization_step.py,sha256=UMKbOSpRD4JuZFzCEeyJOWmULB1fi0We7KFStDpII1k,1781
|
|
189
|
+
autobyteus/agent_team/bootstrap_steps/task_notifier_initialization_step.py,sha256=Cntv_MKmQP8PuVJOEFZygOV3hdHd_U_tO8yqUb2hvQk,2490
|
|
190
|
+
autobyteus/agent_team/bootstrap_steps/team_context_initialization_step.py,sha256=LKztKZwcF6J81LGC81-DQ_owO52t1FYtiiaYEf7X5nU,2373
|
|
191
|
+
autobyteus/agent_team/context/__init__.py,sha256=drrtG4m5HFNxJgtpucBmTA81TlbQaSgNXww38ChgwzE,667
|
|
192
|
+
autobyteus/agent_team/context/agent_team_config.py,sha256=cupMc-cMcZUwG6Sm9CKS5M_P7soAsDHcpCDMhCVnQOY,1651
|
|
193
|
+
autobyteus/agent_team/context/agent_team_context.py,sha256=zs3QmoNLzPeargaL2dKlZ3JSVIVX6TdUuWfLar441Vo,3568
|
|
194
|
+
autobyteus/agent_team/context/agent_team_runtime_state.py,sha256=-PsulbYYto2NdVdKg-gNE81qV3m6dX-X2XhOn4N5EOc,2998
|
|
195
|
+
autobyteus/agent_team/context/team_manager.py,sha256=m5_cjIwznicSHTq0HHquZrsn14DmvrTR94xzuaaC7NM,7287
|
|
196
|
+
autobyteus/agent_team/context/team_node_config.py,sha256=V_Ng_YoOcAXkujW6Y1STg39YKzcmMrZvgAgBDORO38Y,3186
|
|
197
|
+
autobyteus/agent_team/events/__init__.py,sha256=9yHXGAJ8pIGw8xtEpUUtkqecNfdAeq5PAbHKUxGdugg,1363
|
|
198
|
+
autobyteus/agent_team/events/agent_team_event_dispatcher.py,sha256=717T4YZBtCIErcoHCZjYmTs84T7nh-jbtAcu2A-P5_s,2206
|
|
199
|
+
autobyteus/agent_team/events/agent_team_events.py,sha256=oPCZz_WEyq7s0-bf57CM1XMNW8qUbArGib8cspf2QNk,2321
|
|
200
|
+
autobyteus/agent_team/events/agent_team_input_event_queue_manager.py,sha256=ZMz9eudtXR8OXcWwPmJs9oN2r4Ycf4VdgR32Yaf0-S4,953
|
|
201
|
+
autobyteus/agent_team/events/event_store.py,sha256=5iW_ooQlxUH2fY7etZjyGkmGunbngsC7vg-sPRdPtBM,1738
|
|
202
|
+
autobyteus/agent_team/factory/__init__.py,sha256=52XlrxJp_1jb9VT9GS2IT0w4cI-ojlsQtGHm3unidCs,239
|
|
203
|
+
autobyteus/agent_team/factory/agent_team_factory.py,sha256=YpJypRrLtPe2zVqg42DIxa4P2whBXyRjhtk29TTjnXQ,5116
|
|
204
|
+
autobyteus/agent_team/handlers/__init__.py,sha256=05n2SOnVOUWip4cZrpuN2q-q6AW2d2weribC9e99Gfg,1005
|
|
205
|
+
autobyteus/agent_team/handlers/agent_team_event_handler_registry.py,sha256=vTyhRwK6nW_92U76tc3-6wD2Yj4hLGEFRR6uiV2k93Q,1233
|
|
206
|
+
autobyteus/agent_team/handlers/base_agent_team_event_handler.py,sha256=C79gvVxSwE06D6qVJ1bnCxmT-lbAF4GrtiyIUFS0xOs,593
|
|
207
|
+
autobyteus/agent_team/handlers/inter_agent_message_request_event_handler.py,sha256=lZQQkIsq-bFozW9L5XAcLPpYDLRij_wHCFHOu9BVvGE,4311
|
|
208
|
+
autobyteus/agent_team/handlers/lifecycle_agent_team_event_handler.py,sha256=ln1vI5Z8tQhHLbYbvmQ8fQBXIElbu0n5ctJK7uwSwtk,2188
|
|
209
|
+
autobyteus/agent_team/handlers/process_user_message_event_handler.py,sha256=60tLIr-FZisdFRqquv1m7rdhjmgtljoRNMe-cOOykvY,3006
|
|
210
|
+
autobyteus/agent_team/handlers/tool_approval_team_event_handler.py,sha256=RxkPziPVofxe4JDamTlC6Wbne1cQ3-aDKn9VOqC5Rt8,2922
|
|
211
|
+
autobyteus/agent_team/runtime/__init__.py,sha256=6pQrzl2DXfnp3dn2fRSiMAfM3VSmKddJcYy5L1yWaW8,465
|
|
212
|
+
autobyteus/agent_team/runtime/agent_team_runtime.py,sha256=c990PnpEl2AQdFoVKSRWLQ_d6PwtRexNHO9rQZxFCVQ,5280
|
|
213
|
+
autobyteus/agent_team/runtime/agent_team_worker.py,sha256=ab6jHGYVfGPyl6_dT5A_zNLwuGOTA6tGao1OOhkJUbo,8907
|
|
214
|
+
autobyteus/agent_team/shutdown_steps/__init__.py,sha256=wfAEB3_o3Imk6Y9rPBUascqP_3T4cFx4-BBp4zcsXX8,812
|
|
215
|
+
autobyteus/agent_team/shutdown_steps/agent_team_shutdown_orchestrator.py,sha256=VNtKf3lmYRhO5mcsdfBKnrDhw3ucTB7yY8C8tO0Te1w,1561
|
|
216
|
+
autobyteus/agent_team/shutdown_steps/agent_team_shutdown_step.py,sha256=iACb44vQVOka99NZnZdgnFdAsXHL08I5R6hsAUcgqyI,1845
|
|
217
|
+
autobyteus/agent_team/shutdown_steps/base_agent_team_shutdown_step.py,sha256=CVzU4mMjU4FagEk_Q0ncENMCGzGSJ7I6YF_2YqJqsEc,651
|
|
218
|
+
autobyteus/agent_team/shutdown_steps/bridge_cleanup_step.py,sha256=uEJt4RuNIt7WiO25Wnowtg_TqOgd9l_fja88bXXLzIo,1165
|
|
219
|
+
autobyteus/agent_team/shutdown_steps/sub_team_shutdown_step.py,sha256=suPLoXXtPJx6FfXp_RH8Eev5d4Xd2iY_hMRM6wICcAo,1771
|
|
220
|
+
autobyteus/agent_team/status/__init__.py,sha256=8rmWcYAhnLjfZlNmTmDmbDHsM_1fCuXZSR0j0DktfMo,568
|
|
221
|
+
autobyteus/agent_team/status/agent_team_status.py,sha256=0r82AyhIa0e8lojp__SLd_G6iG2ylrnqA2OPknijJEg,566
|
|
222
|
+
autobyteus/agent_team/status/agent_team_status_manager.py,sha256=1d-LdxNMzy5FHW75BVEelWVyYNxqqFfRjII_7ta_Vuo,1578
|
|
223
|
+
autobyteus/agent_team/status/status_deriver.py,sha256=w6mxhKIzf_HDVDsteUcayQJWQ54cr1kYF21lhxF4bNs,2522
|
|
224
|
+
autobyteus/agent_team/status/status_update_utils.py,sha256=SqpoGsyaOzpbAa5gIAKrgkfPBBHpOwd3o2fAc8GaDHE,1779
|
|
225
|
+
autobyteus/agent_team/streaming/__init__.py,sha256=Hp03FEfUNNfOciFw8ekdmf106d12tRyPJ1JXIVtzncI,885
|
|
226
|
+
autobyteus/agent_team/streaming/agent_event_bridge.py,sha256=hGJvLUK39-bBYxpq7pvpKs7Y68c07xtG4d4Ebp5GwtI,2130
|
|
227
|
+
autobyteus/agent_team/streaming/agent_event_multiplexer.py,sha256=Z3CMxsNaPXWVtaK5D8qSZiDQC_VokJQoHlbbfPc0Xng,3647
|
|
228
|
+
autobyteus/agent_team/streaming/agent_team_event_notifier.py,sha256=sXgyQggbq4n1ULv8x3ewIwl5mu9XJR85RrocvvAN_DU,3477
|
|
229
|
+
autobyteus/agent_team/streaming/agent_team_event_stream.py,sha256=AZmly_WQWb6YpdS8IXmXjoOZjIck85LWFt4OkfW_Aa0,1493
|
|
230
|
+
autobyteus/agent_team/streaming/agent_team_stream_event_payloads.py,sha256=t72swbkVh348CYuVhVWkbIuyLGPS-P4Bih4QEgA5pI8,1647
|
|
231
|
+
autobyteus/agent_team/streaming/agent_team_stream_events.py,sha256=_0s5y9ZxND1j85o-f3V5Rs9NQixRvWxuYmRjgkmCtQo,2658
|
|
232
|
+
autobyteus/agent_team/streaming/team_event_bridge.py,sha256=C6VVJM4xJnOl37AY60qGT9k7VMVj63bkXOxYWICBgAs,2347
|
|
233
|
+
autobyteus/agent_team/system_prompt_processor/__init__.py,sha256=klnXfbrVDWRLMKdzbSa6czvdZhHnYLBwGM_aOOcke3I,205
|
|
234
|
+
autobyteus/agent_team/system_prompt_processor/team_manifest_injector_processor.py,sha256=O5bZmM_KZJwfBURL_eIYXdaV2VLQLqSR3-ajWtFFVNY,2938
|
|
235
|
+
autobyteus/agent_team/task_notification/__init__.py,sha256=USOq10z0IMfwIz2cNiq6_0qbvRqsLa4mvezWURiTMMo,531
|
|
236
|
+
autobyteus/agent_team/task_notification/activation_policy.py,sha256=jWN0BCXjiE9IZwHPc9kLFWKKIlQS6UwyRhEzZH0lRng,2821
|
|
237
|
+
autobyteus/agent_team/task_notification/system_event_driven_agent_task_notifier.py,sha256=taehm0OEgsO9AJxIs_M1gj4FPTxQV4eBy1wL2akoZX4,4777
|
|
238
|
+
autobyteus/agent_team/task_notification/task_activator.py,sha256=_7oijK61gupUCm_Z2oxQF2vojXmYlTuram8XvuJaT7Q,2728
|
|
239
|
+
autobyteus/agent_team/task_notification/task_notification_mode.py,sha256=mmH2z3wKF33cBAuSbKZbrBegcBoyxzm3JAf6h3mBtcQ,1523
|
|
240
|
+
autobyteus/agent_team/utils/__init__.py,sha256=Sa5TBbhq9N41ONlMhoLlCrtyxSiDjoR2Zu5C21OAig0,218
|
|
241
|
+
autobyteus/agent_team/utils/wait_for_idle.py,sha256=AOUCSL4pNL4rTibNsMXclXxyEBfVoNWof4-iGE-PoRg,1883
|
|
242
|
+
autobyteus/cli/__init__.py,sha256=FpcugZofPrQzll16-OFcDypbven0J2mBPxNVgQ3eAxY,266
|
|
243
|
+
autobyteus/cli/agent_cli.py,sha256=WppSB0yQZie8KW7pF8sIRzEeiVUsZOuYdpBr5UslIXE,5271
|
|
244
|
+
autobyteus/cli/cli_display.py,sha256=OxV5lfyG7Q38ZYZ0vwY-M5vau-JbtSEOuP_zoljjooY,15516
|
|
245
|
+
autobyteus/cli/agent_team_tui/__init__.py,sha256=FP2rpjO1T5jdVYkT7Yvk-iDcxckOHy3JxRg-EEeKCfE,123
|
|
246
|
+
autobyteus/cli/agent_team_tui/app.py,sha256=AFodV7EhpTfQC4VR_JaTY12ZihRz8i7ep6x6irqkMXg,9492
|
|
247
|
+
autobyteus/cli/agent_team_tui/state.py,sha256=9M-aWy92ojuiz-qWgDZiHAm2lB6C5NEk0vYzqlF7UZw,9162
|
|
248
|
+
autobyteus/cli/agent_team_tui/widgets/__init__.py,sha256=gWVULR5J-2Ra3m2hvUhO1jF1IX9uqk0bQhWL0t25Z4E,173
|
|
249
|
+
autobyteus/cli/agent_team_tui/widgets/agent_list_sidebar.py,sha256=HvpmdN0uAg-iV5mKH1whducZhoBIuL1aMQlqKaAOQ_s,6570
|
|
250
|
+
autobyteus/cli/agent_team_tui/widgets/focus_pane.py,sha256=jaSuNv5zlZQCihl56jGsG98jHWIWzCXMVUiNuCo9rJ4,20908
|
|
251
|
+
autobyteus/cli/agent_team_tui/widgets/logo.py,sha256=okzS4mG8Z1-dZDIGQ5F8XP9y6WwwRDVHmMmPz3oN9TM,780
|
|
252
|
+
autobyteus/cli/agent_team_tui/widgets/renderables.py,sha256=1AFNMq0qfg3Y5YnBg1NcMYPJC-V88vdZOiSeThr3OPs,3379
|
|
253
|
+
autobyteus/cli/agent_team_tui/widgets/shared.py,sha256=VZSahZSNgVfOklw0tPey9LY_31WXJgXt6uRCDH3qr64,1769
|
|
254
|
+
autobyteus/cli/agent_team_tui/widgets/status_bar.py,sha256=WE8Z6gjAkAdrK5Yufl7qqIitIL6TX0lOCQiTa9FZkt4,457
|
|
255
|
+
autobyteus/cli/agent_team_tui/widgets/task_plan_panel.py,sha256=FmJXBVuTFJsuCQCcyKUOj15_Um5E6WgGuyPkHQzafQQ,3451
|
|
256
|
+
autobyteus/cli/workflow_tui/__init__.py,sha256=xbWMXwK_a-IX-dM3m1TJkm9SHT--bqiHVgkS5XCA6vM,127
|
|
257
|
+
autobyteus/cli/workflow_tui/app.py,sha256=kHQFPoxgr0JqJIH8sXiBzUKLPGwA6QvsBzSwhHVbDI0,9604
|
|
258
|
+
autobyteus/cli/workflow_tui/state.py,sha256=AcckCChtu6Qaz2gEOMMBIXMmpNPSx34DPEjO1iuAEhg,9247
|
|
259
|
+
autobyteus/cli/workflow_tui/widgets/__init__.py,sha256=CsygQhYM_MoTURsJ9PpkZi_yXy-9g7Z8WQdNZ3BfD9E,169
|
|
260
|
+
autobyteus/cli/workflow_tui/widgets/agent_list_sidebar.py,sha256=bqhJOjY_LIX7pN0Kv8LsOWMeD1vh3XA1GHbg_V2pbjg,6638
|
|
261
|
+
autobyteus/cli/workflow_tui/widgets/focus_pane.py,sha256=BiSkAWYZC9qJiuV73TSOc7f04XQ67HKcoVYhdnZE3PE,21287
|
|
262
|
+
autobyteus/cli/workflow_tui/widgets/logo.py,sha256=TvfxdBvDXknf7-2vD3xkHuZkiymhMDFaJaCLl2y7msI,906
|
|
263
|
+
autobyteus/cli/workflow_tui/widgets/renderables.py,sha256=BOlYrOoWpGM05Dgj0qxARrh-jx9_dRbuqnx2Z4ZmmlE,3016
|
|
264
|
+
autobyteus/cli/workflow_tui/widgets/shared.py,sha256=DUlRpz6m7OEtzkpKEGFawmRGgztqUWpY_xEcJAaaByo,1523
|
|
265
|
+
autobyteus/cli/workflow_tui/widgets/status_bar.py,sha256=PLkw2IxJ4T2cDt-3HKRhnIme4luYIvXr1HpBVmfJH1c,455
|
|
266
|
+
autobyteus/clients/__init__.py,sha256=19KBdiG_V9DU0R1GsAPc4iSKk4HQhegI9PpJF_O_j44,331
|
|
267
|
+
autobyteus/clients/autobyteus_client.py,sha256=eW3JNlCLFpKTcX30K1SNEfQx9n4ogXCafJok1U3oyhs,16586
|
|
268
|
+
autobyteus/clients/cert_utils.py,sha256=SL3CF9aoRzVScElXn258kh1YnxqE2Av7DRmu0QHUYMw,3808
|
|
269
|
+
autobyteus/clients/certificates/cert.pem,sha256=qb4Te3q7-b-_09GvHtX5dV--5_Vo_Dn_M6nbtCjrtoQ,2098
|
|
270
|
+
autobyteus/events/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
271
|
+
autobyteus/events/event_emitter.py,sha256=WKKwISFo2yDx0OpLjGFtXEl3DVV1siB0lXdndIAHhBg,2522
|
|
272
|
+
autobyteus/events/event_manager.py,sha256=c5RMlCtKzkHgQZkePBvqxPAxxOu-NapUrl8c2oRDkT8,5841
|
|
273
|
+
autobyteus/events/event_types.py,sha256=pS0YZ89xCT-cZCTqgDPVSm_LDlZo_-lJda7oKuh3AF0,2495
|
|
274
|
+
autobyteus/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
275
|
+
autobyteus/llm/autobyteus_provider.py,sha256=MjTCd11du-opA0_F4UcbJoHhygp10Ls-HoZe7Mtweag,8411
|
|
276
|
+
autobyteus/llm/base_llm.py,sha256=DWnoH-LGVIfawpasX7SJqfoo-WxeG5gX2gns6I7jkss,7996
|
|
277
|
+
autobyteus/llm/llm_factory.py,sha256=J86w9yb0GOzDHF2qGAp8yXn_k_L9Dt_7xuIrzFNLgCw,25144
|
|
278
|
+
autobyteus/llm/lmstudio_provider.py,sha256=oj9tdEAKYEoyT3rPhZPStPPahCwFiI8MV9it1VjkURU,4415
|
|
279
|
+
autobyteus/llm/models.py,sha256=e2RbqB-TDHja2KfZ01L7ORcKBcbO6_LnBSLYxN1WQtw,8441
|
|
280
|
+
autobyteus/llm/ollama_provider.py,sha256=zAEZNa5tz17JQHJTRKZHuNt7qPzPgmt13WMD-dRpYgw,4512
|
|
281
|
+
autobyteus/llm/ollama_provider_resolver.py,sha256=vIzwE1dSSfAKfREmNJPOaoC2I0_Gwe79tu8R93mPkjY,1850
|
|
282
|
+
autobyteus/llm/providers.py,sha256=4V1H3WJqTUpgcC10qBa5tlDp_jlFSx82_XVZnvBTLao,346
|
|
283
|
+
autobyteus/llm/runtimes.py,sha256=MzFNo3R1U3uWYAkuk-uuaba01Y0dDKQgVY_ElH_0dxU,315
|
|
284
|
+
autobyteus/llm/user_message.py,sha256=2hmICY_W7lwjYco3qT4zY1ELsBkpyxR2CjOgh33NMq0,3546
|
|
285
|
+
autobyteus/llm/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
286
|
+
autobyteus/llm/api/autobyteus_llm.py,sha256=yHKsBr_muUk4TdDLSpdGlKC-NV4841labfb8mBGnqVg,5176
|
|
287
|
+
autobyteus/llm/api/claude_llm.py,sha256=vPuqumRBUZ8Q3HcLgWLSZYE277iAWfX-5f5VnTuiIe8,10010
|
|
288
|
+
autobyteus/llm/api/deepseek_llm.py,sha256=TEWtXAqM4OuKH1etj5kknzkbPsRGvEpWzTq_CoAU6po,894
|
|
289
|
+
autobyteus/llm/api/gemini_llm.py,sha256=sIJqFT6RDuKCeEvel_EL7DyTOm-GqTID7wjvIIERzSI,10722
|
|
290
|
+
autobyteus/llm/api/grok_llm.py,sha256=gMRyMXsXCh1pwYDzIWUfFw6znCjFE7nSGiwCYA-Yzic,887
|
|
291
|
+
autobyteus/llm/api/kimi_llm.py,sha256=oUgmP_D0ppr0zKhgRVyjxRMP8cEMGXB2DFUgXYqRlCg,873
|
|
292
|
+
autobyteus/llm/api/lmstudio_llm.py,sha256=7A7BokUKj-kioTaSuEw_MKofd7d5BnmxK6pyTFGOgSk,1281
|
|
293
|
+
autobyteus/llm/api/minimax_llm.py,sha256=eISXSPN1tVU_k-khjLhA4o4CnOhHs502nmFz9_Pbyls,892
|
|
294
|
+
autobyteus/llm/api/mistral_llm.py,sha256=sJEHpWYmKLRU-zzJilusj45ECL0Y0h2yAUFUJjWSNI8,9119
|
|
295
|
+
autobyteus/llm/api/ollama_llm.py,sha256=C1EVdV6pYfCAKCxZXPO9Z6zTvXNRUwMqgLUOJpfkevs,5399
|
|
296
|
+
autobyteus/llm/api/openai_compatible_llm.py,sha256=2TynP5gOFRRPhj6Qx9_3S2mvJHts9EbLaM9F1yWCrkk,10349
|
|
297
|
+
autobyteus/llm/api/openai_llm.py,sha256=LE0Pb21yHM1ObQiDVWBesLjcR12NdLe_EXN-9gUMPTg,915
|
|
298
|
+
autobyteus/llm/api/openai_responses_llm.py,sha256=4SeRZ-1GfXcvYjNKVHu0PS849w3HWPMWR0l92mSg2Nw,13706
|
|
299
|
+
autobyteus/llm/api/qwen_llm.py,sha256=wN4fHEfjpuece0xd19elwknBeRKJnhj--btNQl3_e_o,877
|
|
300
|
+
autobyteus/llm/api/zhipu_llm.py,sha256=LzY9l-EOtFBEO-kUSWg-mCPPxyRcS5ExWIRmK9LiWZc,1514
|
|
301
|
+
autobyteus/llm/converters/__init__.py,sha256=wbrlmQogHb3f0VRluHR64O9tyFaofkYLyuEVlvoRgKM,603
|
|
302
|
+
autobyteus/llm/converters/anthropic_tool_call_converter.py,sha256=r6SB5ixzUhu-r1XBBMmcXc_kcWDjWHpLYG7cjGcSQrA,1456
|
|
303
|
+
autobyteus/llm/converters/gemini_tool_call_converter.py,sha256=4__I9PPCu2kdIR2aihpARE1kE17sCjsCxD5QLak33wQ,2902
|
|
304
|
+
autobyteus/llm/converters/mistral_tool_call_converter.py,sha256=To3BYXJtgVAnx99K1zPAoqYnIpV3Vzlp1bdO2XBAj3A,1414
|
|
305
|
+
autobyteus/llm/converters/openai_tool_call_converter.py,sha256=UaZAf8p3aEJLrD_qJAAqIKzd7XftgyNBm2sm6LsMiG8,1312
|
|
306
|
+
autobyteus/llm/extensions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
307
|
+
autobyteus/llm/extensions/base_extension.py,sha256=iBRPpys3SiJhmJKVybfpk8fHrEQ-jdeaOhCrVbiteQY,1126
|
|
308
|
+
autobyteus/llm/extensions/extension_registry.py,sha256=b4b3U5cQB9kZpJpqmT_e1lviLzjGQBsp7gJuYppjpjU,1254
|
|
309
|
+
autobyteus/llm/extensions/token_usage_tracking_extension.py,sha256=GDb2f7tqol9C_qG19B0WIX-is7z8FioNIQVd1xyYFQI,4758
|
|
310
|
+
autobyteus/llm/prompt_renderers/__init__.py,sha256=0Yr6tcwDN4utFWvXBFpV6iKRspB42ldYpczt-wYzwbQ,964
|
|
311
|
+
autobyteus/llm/prompt_renderers/anthropic_prompt_renderer.py,sha256=iR_hMQ1Z-dhom1LlxwLMarY4ssdZ0tAS-gfjo6KS-yI,4076
|
|
312
|
+
autobyteus/llm/prompt_renderers/autobyteus_prompt_renderer.py,sha256=Pjn6lshX7pqPDPR-2y2iO02Zw5EueuYZsWjTb4jJ7YQ,808
|
|
313
|
+
autobyteus/llm/prompt_renderers/base_prompt_renderer.py,sha256=-Ww8pe-RNR67aTNi9tD45Ut6ihxxZ89mQ8IU_jBFP34,286
|
|
314
|
+
autobyteus/llm/prompt_renderers/gemini_prompt_renderer.py,sha256=uvGq-8aNbr_eDXqHSPkt-Qk0E0mkKZzrCZ1O3D_BGwo,2544
|
|
315
|
+
autobyteus/llm/prompt_renderers/mistral_prompt_renderer.py,sha256=5SthZv9xBmOQb8JbqZmMdZWpDv09QSf8btHpmNvmMRI,3549
|
|
316
|
+
autobyteus/llm/prompt_renderers/ollama_prompt_renderer.py,sha256=2ygJajgO5R_L6z5mu88JU5M86WT29o7AXoAN6x8pV_Y,2195
|
|
317
|
+
autobyteus/llm/prompt_renderers/openai_chat_renderer.py,sha256=pAb2cbaII_2eXcj8-REndmWLmOzl_sueckElSGuk2eA,3635
|
|
318
|
+
autobyteus/llm/prompt_renderers/openai_responses_renderer.py,sha256=whMu22qzhTdU_XLlaBooNgF1qy5HvY9vRFHg7n0bzN0,3889
|
|
319
|
+
autobyteus/llm/token_counter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
320
|
+
autobyteus/llm/token_counter/base_token_counter.py,sha256=NSY6rdSmBNn9MEAY4vSdnuB2BRRRwoP3rDp9ulBTAWA,2019
|
|
321
|
+
autobyteus/llm/token_counter/claude_token_counter.py,sha256=6_hCdfW77IPyO98vrcYiPNks4OTUZHKz-MCyc6iKisg,4320
|
|
322
|
+
autobyteus/llm/token_counter/deepseek_token_counter.py,sha256=YWCng71H6h5ZQX0DrjqfMua-SeCH1ATizWLvxxr591s,859
|
|
323
|
+
autobyteus/llm/token_counter/kimi_token_counter.py,sha256=KuzgcbSWiqybCKHaukd-n917zEgUFebGXMAxlkZxue8,854
|
|
324
|
+
autobyteus/llm/token_counter/mistral_token_counter.py,sha256=tCrgEvbPtsbt-1uMe2d9UBQv1LBZ-KItBaYuES2pw00,4725
|
|
325
|
+
autobyteus/llm/token_counter/openai_token_counter.py,sha256=P2jN3OkM0n5SvaPezjRvXiyZ4Iv6ciY3nAsLVve536w,3776
|
|
326
|
+
autobyteus/llm/token_counter/token_counter_factory.py,sha256=WasXFlfZOkzv7k3SrY_i4qFuKFZdoVLvCTCA2oqKFX0,2573
|
|
327
|
+
autobyteus/llm/token_counter/zhipu_token_counter.py,sha256=5vU__vhclgqgPBg1jq8Cy4e22ltzG4CCm-xWrUiW6qk,846
|
|
328
|
+
autobyteus/llm/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
329
|
+
autobyteus/llm/utils/llm_config.py,sha256=8MyfMfQQli16ugx3s3pPbvpPShFScpJqVZqR90AnaxA,9404
|
|
330
|
+
autobyteus/llm/utils/media_payload_formatter.py,sha256=JaVvoxEBIz0rOC5x4KQzZWa7E827l7PR4wSIzHovuF4,3786
|
|
331
|
+
autobyteus/llm/utils/messages.py,sha256=5BmWbYxXHVZ9HYRu8-o1GWpnPxYbeMmNWo-R_aJKiq8,3241
|
|
332
|
+
autobyteus/llm/utils/rate_limiter.py,sha256=VxGw3AImu0V6BDRiL3ICsLQ8iMT3zszGrAeOKaazbn0,1295
|
|
333
|
+
autobyteus/llm/utils/response_types.py,sha256=WXVAJCb1wKBp3IvNaNGth_gEyEyejV92mj-RkSmonpY,1154
|
|
334
|
+
autobyteus/llm/utils/token_usage.py,sha256=C8YJH_-sYKJHVcE47hwwk-p0VTAFF0ezFGjSbc0mbzI,601
|
|
335
|
+
autobyteus/llm/utils/token_usage_tracker.py,sha256=RC4zL5k343-wLm0jXc-rwAOMhpxs_1klnrh-xi2J7W8,4220
|
|
336
|
+
autobyteus/llm/utils/tool_call_delta.py,sha256=9kzf_fl9Jozs2UupZgNP003CHNtaYS_J2KZJt_MIDaE,1123
|
|
337
|
+
autobyteus/memory/__init__.py,sha256=uspTA6Iky46kyfShbmRsaaAMDPiBbSyaHUy9RUVj3Gc,1253
|
|
338
|
+
autobyteus/memory/active_transcript.py,sha256=CCNbr7Mej6WkD9gipAReN6NqmOvEo_bMXnNlysfHuHY,2237
|
|
339
|
+
autobyteus/memory/compaction_snapshot_builder.py,sha256=FqRdNjtZV3QobUbutBQZb57524fMSA-4phPNc-0cRNY,3461
|
|
340
|
+
autobyteus/memory/memory_manager.py,sha256=bekNsGdR6lubOfQf7HAoIeCNF_phNttJT4pwU_1pMI0,7388
|
|
341
|
+
autobyteus/memory/tool_interaction_builder.py,sha256=nGmzx6h_9BxD22CLxF_gFxlwt_du8fa0WXKRK8EuX0U,1737
|
|
342
|
+
autobyteus/memory/turn_tracker.py,sha256=Gf_7vXfz6ZQ48AIOdHNgb6zifhgAwQD88N9_i3MUy14,272
|
|
343
|
+
autobyteus/memory/compaction/__init__.py,sha256=2Huatvj1mbKZYj_U7Xle5tnIE4IZ0WA5oxUib0KeLGM,274
|
|
344
|
+
autobyteus/memory/compaction/compaction_result.py,sha256=25prRrghtExjmtHgN0cMfOafyDGq1_wwM2KxUtD4ERE,210
|
|
345
|
+
autobyteus/memory/compaction/compactor.py,sha256=cY3Riwyd5Ya2VYUPg-7mE8ZeUKSoNmxjD7a2v-3he40,3315
|
|
346
|
+
autobyteus/memory/compaction/summarizer.py,sha256=aBNLJacOQgWtCPnchEdkzqzFVtt93e-5ZhwAlouAHIo,354
|
|
347
|
+
autobyteus/memory/models/__init__.py,sha256=D8jCIHkxIqkdEs7wvbcxsEgRl1jteWbq23iNAUZYiB8,492
|
|
348
|
+
autobyteus/memory/models/episodic_item.py,sha256=rMTGf5j5NBei80iHenC33t-a8yZRIJXsyNnWzFkZJ3A,1059
|
|
349
|
+
autobyteus/memory/models/memory_types.py,sha256=VDqf43UfRQUghjVN0HzhoXQvYdecfeHnpsUaeMaIMqw,133
|
|
350
|
+
autobyteus/memory/models/raw_trace_item.py,sha256=0kNCY2QlSAWcm4J81EbOR6WxO6N-7-pewTH-eEIuzBc,2673
|
|
351
|
+
autobyteus/memory/models/semantic_item.py,sha256=Vy2tpUYPiJFPBGCf2a4sRcj-gnhnPyRd2Z-5jEkE3dE,1057
|
|
352
|
+
autobyteus/memory/models/tool_interaction.py,sha256=8SKN0vOzuf1_wPF6jRIf4YVI_cJArPzdmz3Oy156K5g,439
|
|
353
|
+
autobyteus/memory/policies/__init__.py,sha256=mCBbjgFFWzsw2bqkL4uLk7goHIfZQL7SPcmTFKAjpu4,113
|
|
354
|
+
autobyteus/memory/policies/compaction_policy.py,sha256=WYk9VIu_oUNkLjUvgoBJ6dhcE9Cm3BFQMaxpFvpRr0E,466
|
|
355
|
+
autobyteus/memory/retrieval/__init__.py,sha256=phIGpifCU6wmURstz2H_ZMFziNRyEvI1nXf5D-Kn3oQ,179
|
|
356
|
+
autobyteus/memory/retrieval/memory_bundle.py,sha256=P6g9FPWevsHmqLldojqi5qiv2ZUXwWdedvfruMmL_gw,353
|
|
357
|
+
autobyteus/memory/retrieval/retriever.py,sha256=n0-FnSTlEWP8W7dfBdQv9Y3y0jzETM7eJgbRZDUg4cI,574
|
|
358
|
+
autobyteus/memory/store/__init__.py,sha256=fs4J2WsSeMsNr8A2TvHEcHf4-i8a9lHAOsoN7PWXfXY,179
|
|
359
|
+
autobyteus/memory/store/base_store.py,sha256=eUGpTdOgPISa3hFIvX0OK5YYagauknXcd-20ghoS4vM,419
|
|
360
|
+
autobyteus/memory/store/file_store.py,sha256=Ay60DkLMkZdtbNRYj5tncXn6zXpGA8aWDRyzypxZ1g4,4128
|
|
361
|
+
autobyteus/multimedia/__init__.py,sha256=8sssScdnrek2-1-s7wStlOc37ZilLTf0cJzMqVzW4Zw,589
|
|
362
|
+
autobyteus/multimedia/providers.py,sha256=AUlct_V9SGtmrMpKXmzaB8b2luvxRO2_QSP0NNO3ce8,147
|
|
363
|
+
autobyteus/multimedia/runtimes.py,sha256=mgmA06Ng7Gh6UW6YNi0O5CmwV6oDw3kX2qxLssUqG0o,180
|
|
364
|
+
autobyteus/multimedia/audio/__init__.py,sha256=RsUo63rEz8_HLJ7RonaSrYkoDKwhBmHomeseTnBX-Hg,287
|
|
365
|
+
autobyteus/multimedia/audio/audio_client_factory.py,sha256=0NBGLGf-9o7UNWR-nwtZ4z603SWIUY4Or2gaUMLeM5w,10369
|
|
366
|
+
autobyteus/multimedia/audio/audio_model.py,sha256=UOeF3EB3oee9R0M-lcXJNGtQEEKudo7-1_UOfVWodlc,4135
|
|
367
|
+
autobyteus/multimedia/audio/autobyteus_audio_provider.py,sha256=p4vfp8orsKiYGtrtNYfXyJlP95b-FKWRxiACug0GfuI,4934
|
|
368
|
+
autobyteus/multimedia/audio/base_audio_client.py,sha256=zl12JZrvDUmKEnNhEtdY7jXK0TYmil9rUgIkU_VWbL0,1498
|
|
369
|
+
autobyteus/multimedia/audio/api/__init__.py,sha256=M6A3fmXx5nn3R_0wozcph4ANTA25RGG4L4-a-M4OAoc,240
|
|
370
|
+
autobyteus/multimedia/audio/api/autobyteus_audio_client.py,sha256=QoVgVTRklmLGtcOKkrYe_nBJXB2OVwlz_LUuPjkDggo,3313
|
|
371
|
+
autobyteus/multimedia/audio/api/gemini_audio_client.py,sha256=wVxf4a2gbrAzSyqzzTOEVAKMbupN84I29lXpOwSAr-Y,10100
|
|
372
|
+
autobyteus/multimedia/audio/api/openai_audio_client.py,sha256=wNuNBgD1CdTjs7IV-bOD6wBeqf_NYR5YO4vz_QyeVIA,4017
|
|
373
|
+
autobyteus/multimedia/image/__init__.py,sha256=YWwPtRgbTtPoZBgAmjt87P-pTREOZEpJzDbKhD9jSRg,287
|
|
374
|
+
autobyteus/multimedia/image/autobyteus_image_provider.py,sha256=aCukfKyk4E3Xf1s0nFK69kwzTOGMf6uej648HhvO5PY,5115
|
|
375
|
+
autobyteus/multimedia/image/base_image_client.py,sha256=sDm2n8yol590tWkujYc_FDf2cuyBNP0t4voRz9vuGr4,2819
|
|
376
|
+
autobyteus/multimedia/image/image_client_factory.py,sha256=8yu1KnXIAyioSgXIGUcue_lpu8I3j1BQExb0qZabNXQ,7453
|
|
377
|
+
autobyteus/multimedia/image/image_model.py,sha256=850haQxRbKnt0ST7pVS-3q4IEnB7f8MnTSoQBh0ZplY,4225
|
|
378
|
+
autobyteus/multimedia/image/api/__init__.py,sha256=Vh_FC_6rxcPhJqFpAvgv3yBqHYVmxrzjyVSSrCM7rww,255
|
|
379
|
+
autobyteus/multimedia/image/api/autobyteus_image_client.py,sha256=LW6hi5DxtPYoKx8freb9YK5wnpcjhxFbeo-jBwlC1ks,4894
|
|
380
|
+
autobyteus/multimedia/image/api/gemini_image_client.py,sha256=xR9caTH055jx4h7tkjwcQDmHXvunqkASWhatha4RUJg,7112
|
|
381
|
+
autobyteus/multimedia/image/api/openai_image_client.py,sha256=EKntmL66XauILnFwLnppN0oCPQcNrbYHzvF0O6d5YoU,9589
|
|
382
|
+
autobyteus/multimedia/utils/__init__.py,sha256=pH2c5CB2V-QXVl6SgL6N70KKH0VShByhZHS8m7L9TCg,298
|
|
383
|
+
autobyteus/multimedia/utils/api_utils.py,sha256=dbrIQzRnoz66CwaZOIG4353h5ccbTEIvUPUSRfgIWOQ,613
|
|
384
|
+
autobyteus/multimedia/utils/multimedia_config.py,sha256=1CU1G0LqURt6DOrcvj2UnPUQ0Q2Mh4vzeKJEGbHoIno,953
|
|
385
|
+
autobyteus/multimedia/utils/response_types.py,sha256=aiyGwkH4K4NryOFDM4-X4M907ZVGKtvTKMJz6QEXKTA,359
|
|
386
|
+
autobyteus/prompt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
387
|
+
autobyteus/prompt/prompt_builder.py,sha256=2hStweYFSIXN9kif86G8Fj7VdjsIVceJYiCNboauEGk,1886
|
|
388
|
+
autobyteus/prompt/prompt_template.py,sha256=taNEAUNXLt0a3WP_bNqzeNgSIIM7rgubqBBYWHRR1Kw,1539
|
|
389
|
+
autobyteus/skills/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
390
|
+
autobyteus/skills/loader.py,sha256=7heXSjV8gS5JT6ir2S7iJoZiOhFONgcpw_cBN7JLuHk,2388
|
|
391
|
+
autobyteus/skills/model.py,sha256=j3Hugmi1F2gqtF_ik0NntAgFji70Lt9OuWqnz36TznU,254
|
|
392
|
+
autobyteus/skills/registry.py,sha256=Sr5mTeYVl4axazM8ytrh-MuAbBidn8JX4o6Sv88I_Io,2390
|
|
393
|
+
autobyteus/task_management/__init__.py,sha256=A6KzMAVVpcz7N7CYDNOwILsmz3yvgfcHMLLDGqRpur4,2052
|
|
394
|
+
autobyteus/task_management/base_task_plan.py,sha256=3G-IT9KeFYpJA1jiePRKUNaCze9QyB9I1lJ1mDnLezI,2606
|
|
395
|
+
autobyteus/task_management/deliverable.py,sha256=cXuWD7UhP_oElhUzLGGdCwE8Fn4IokURuanz4zg35Ps,490
|
|
396
|
+
autobyteus/task_management/events.py,sha256=1i2G2H5KC9Y0ibz5OgQIgIguVqcdILfXb8bc9QFdHvk,821
|
|
397
|
+
autobyteus/task_management/in_memory_task_plan.py,sha256=roKwt35JLY_1ETp3rglDZLMXNFWpem_Yje4sWr8YZlA,6107
|
|
398
|
+
autobyteus/task_management/task.py,sha256=nsxvcYavYG7I-AQo4JBHV7n6iYtZJuBJ3cOJXF4vtEs,2598
|
|
399
|
+
autobyteus/task_management/todo.py,sha256=9GOdu766TTae6hrJkizPMGYyJPOIRq_Il20kgeZFug8,1265
|
|
400
|
+
autobyteus/task_management/todo_list.py,sha256=07ZFfi12vy7ZsruG9UVx0cAdu0nmVhz7IAyqLOMJUP0,3083
|
|
401
|
+
autobyteus/task_management/converters/__init__.py,sha256=gQ4eZqSjtzvaPQUvOSG1a6lM-UeIOHEG1aWo22tsamo,230
|
|
402
|
+
autobyteus/task_management/converters/task_plan_converter.py,sha256=Nd5xFG4Yn_OknXYR4aLXvtuVKz5kMDIm6_VqzaDq8uw,2087
|
|
403
|
+
autobyteus/task_management/deliverables/__init__.py,sha256=RYBzSxKgzPnh8uE0TA2hA_SiI3dv3_dgvME0K-5AvvI,150
|
|
404
|
+
autobyteus/task_management/deliverables/file_deliverable.py,sha256=tTdpgdAtXwkZ-US0n8ilEl6CYI8dRVXhGEdBBCTay8c,425
|
|
405
|
+
autobyteus/task_management/schemas/__init__.py,sha256=j3MZYJKMYq0xS88MkdMv8hdlzgQ1_9onLQNgVwmNX6I,644
|
|
406
|
+
autobyteus/task_management/schemas/deliverable_schema.py,sha256=8_3F93gAeTfp6NeHqhIQLWFMpVwfiDuSOk0lnHnxxFU,603
|
|
407
|
+
autobyteus/task_management/schemas/task_definition.py,sha256=ytFK2kikLnQjPgSj6X6OTethqljvTEnZ9U-tcxubZF8,2154
|
|
408
|
+
autobyteus/task_management/schemas/task_status_report.py,sha256=505LgQFHDORrWeV55swbaeKuw4DvMJx5yYeRUxx7ko8,1882
|
|
409
|
+
autobyteus/task_management/schemas/todo_definition.py,sha256=o5DKyCCVx6XqiZyKe025Ap-17X5S1uRdIq0lPXI4EuU,756
|
|
410
|
+
autobyteus/task_management/tools/__init__.py,sha256=88T-wwjQeAN5LDOegiAbc0suj1e-WZi1z78IhNnuRTE,690
|
|
411
|
+
autobyteus/task_management/tools/task_tools/__init__.py,sha256=fRLxldmTxvBBBgXCv5eNMicxjHcFxjg6Tt57OYc1E3Q,523
|
|
412
|
+
autobyteus/task_management/tools/task_tools/assign_task_to.py,sha256=LDdA3SDX3WtI4FNH9dFkgEk9H4ASHYPfg6HsvuaQaKQ,6278
|
|
413
|
+
autobyteus/task_management/tools/task_tools/create_task.py,sha256=enT0301ZYNmtarIuBvHsA7LTtoo9RB5C8qAMD4SqOBA,3263
|
|
414
|
+
autobyteus/task_management/tools/task_tools/create_tasks.py,sha256=tjeupKNhg_RNxFZ1QrOwDojFQPuHWaBs0R0owtqINP8,3090
|
|
415
|
+
autobyteus/task_management/tools/task_tools/get_my_tasks.py,sha256=6DZRY-gumQx5thCaZ5ppJ-izBV8n-K2jHNh4-wTPOFw,3314
|
|
416
|
+
autobyteus/task_management/tools/task_tools/get_task_plan_status.py,sha256=3j96d4u1oYV70XGfrTFj9ahcS9wQl9f0gG9_tMN0VzQ,2747
|
|
417
|
+
autobyteus/task_management/tools/task_tools/update_task_status.py,sha256=yo3UpPsDS4DsdEmVL3H4Jr9f24bggSKJ3CAPi_DlDkk,5913
|
|
418
|
+
autobyteus/task_management/tools/todo_tools/__init__.py,sha256=kyTQV5UfccRt3Nos-TMN42A_dbDuTESMQK1FibzoP3o,476
|
|
419
|
+
autobyteus/task_management/tools/todo_tools/add_todo.py,sha256=66YGkGMPn-ezdfM7CklyB6b78F95nBM-iG8sEAz_LmU,3250
|
|
420
|
+
autobyteus/task_management/tools/todo_tools/create_todo_list.py,sha256=2geT06QTeNzXkXbyhoJF4VN5Zb9PsYWN2dmotcvE3Yc,3524
|
|
421
|
+
autobyteus/task_management/tools/todo_tools/get_todo_list.py,sha256=zAZcnhrgm9g-ZXn4GGBWvY_RayLmmDBB0WbDGvvhfuY,1929
|
|
422
|
+
autobyteus/task_management/tools/todo_tools/update_todo_status.py,sha256=d-xTvBb6v98eO1LvnQR7IX0HQdsQ_ItnBQZvk4TMTU0,3730
|
|
423
|
+
autobyteus/tools/__init__.py,sha256=3VTYb8iaIHrleSuej1wWwYeEIh1aQlVYNZ8Vi8RSJcY,3479
|
|
424
|
+
autobyteus/tools/base_tool.py,sha256=XbXIxCj4O1RonoppEgxD8eX9BvIsfmTxRaKbO7DaDv4,8955
|
|
425
|
+
autobyteus/tools/functional_tool.py,sha256=PhDBEraAG3gNi-cyT1yoUfqn5uJjA2Xhm5887Fs3ZOs,12126
|
|
426
|
+
autobyteus/tools/pydantic_schema_converter.py,sha256=qDVCXDBUWuXxYzO0d_taFum1gd1Av1VvHCvTzTtilF0,3402
|
|
427
|
+
autobyteus/tools/search_tool.py,sha256=EJw0-VxkMKDOYRvA1q6jJXexxy4BgFoG9YuUbEn4xmU,3336
|
|
428
|
+
autobyteus/tools/tool_category.py,sha256=pSf3C4kDc5ZGRYLmlGaU0th9YgdI-3TSS_yOdqbEzLU,740
|
|
429
|
+
autobyteus/tools/tool_config.py,sha256=gnzGweccECNmCeufkzbskHeFOt3f0431DyAmMhqNVn4,3564
|
|
430
|
+
autobyteus/tools/tool_meta.py,sha256=oTWknZdssNvIp9LBUycnkGqroFfL8G4RLg-vx0RgR2w,2828
|
|
431
|
+
autobyteus/tools/tool_origin.py,sha256=X1RqyDMWg2n7v0TciJHh5eiXgDDoU86BEQL3hx975jk,269
|
|
432
|
+
autobyteus/tools/tool_state.py,sha256=CwmEu7GTdaE72QIsdsXQu0AmTxQTp5hMncFcY58PkGo,746
|
|
433
|
+
autobyteus/tools/utils.py,sha256=PuHGlARmNx5HA2YFVF5XA36MoeAyFL6voK10S12AYS0,546
|
|
434
|
+
autobyteus/tools/factory/__init__.py,sha256=EQXbTH6BcqK2SM3JEq2PkLwzZSczExv3KDvlhWHlsGQ,275
|
|
435
|
+
autobyteus/tools/factory/tool_factory.py,sha256=-gUhcBwiQu1FQiR0nAKJp1aUZ2sXbcz-pIn4f4heFbE,1066
|
|
436
|
+
autobyteus/tools/file/__init__.py,sha256=aDAXisTVokI62hsZEsKF3EV-ahL84uPafZTx6LtzIQQ,171
|
|
437
|
+
autobyteus/tools/file/patch_file.py,sha256=ZCeaA8btR-TzYYPZltlIYAHIjFB3AGqKxcaatv-vSB0,6328
|
|
438
|
+
autobyteus/tools/file/read_file.py,sha256=XVU65NdCClwiNfOohIwUbHOOhxVCMxeCa49tEFOT-yg,4069
|
|
439
|
+
autobyteus/tools/file/write_file.py,sha256=K10umfVIRxRq7NEmTTqpFaWEFWVVwO2CFDlxg_y9v8w,2780
|
|
440
|
+
autobyteus/tools/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
441
|
+
autobyteus/tools/handlers/shell_handler.py,sha256=ClTXqFR45iyD0gcoOPpKRX5p6g_6BI4a5JOLuKuQOIA,1065
|
|
442
|
+
autobyteus/tools/mcp/__init__.py,sha256=N4v8qm9luAHblSYsXpl-hRG6qef8PHSopxu77V4UOeQ,1615
|
|
443
|
+
autobyteus/tools/mcp/config_service.py,sha256=8M0IjHDaAtiupXWCbM1LgpjsjbR7VDM0ZoFZZ5puab4,11690
|
|
444
|
+
autobyteus/tools/mcp/factory.py,sha256=vNQ719v1hMo0s98OWKKylHhO_cynyghWRejzot4RWSE,2204
|
|
445
|
+
autobyteus/tools/mcp/schema_mapper.py,sha256=DDCPN_BJ1twe-9VIGVZaksmrQZVVNnL0uuD9-AeToTw,4413
|
|
446
|
+
autobyteus/tools/mcp/server_instance_manager.py,sha256=VYSar1yMYLOuXp0aP2iTiYag-IXDJUugxxRf18GzTzs,6470
|
|
447
|
+
autobyteus/tools/mcp/tool.py,sha256=tELqogRQbfLdMnr4_r_1dKflUr-RRmTp0s0LvLBL43Q,3398
|
|
448
|
+
autobyteus/tools/mcp/tool_registrar.py,sha256=SoXJhs-x7JabNBgqKJE_1acC8R1fHV3fjIUELl1stV0,11325
|
|
449
|
+
autobyteus/tools/mcp/types.py,sha256=x5Jlp2Mg8H0Sp-NaT23LJhA4r7ZUghqY8FAU1y1efEs,7191
|
|
450
|
+
autobyteus/tools/mcp/server/__init__.py,sha256=RyswLTWdiA4azZeWboA9pnKdXq3a0T5ZU2t1f_7u71A,624
|
|
451
|
+
autobyteus/tools/mcp/server/base_managed_mcp_server.py,sha256=ep-EKh4uqorrNYvv7D27Kh4fxR1f-E3hYMclFcWq0p4,5512
|
|
452
|
+
autobyteus/tools/mcp/server/http_managed_mcp_server.py,sha256=QtZ5kA4QM3co-VajQAGrN8HWT5tVM7itrdDjkcbutmk,1972
|
|
453
|
+
autobyteus/tools/mcp/server/proxy.py,sha256=08F3m1I_IH2wrRXK29R_NPDB6ITHpo982Mq9G53hbUo,1660
|
|
454
|
+
autobyteus/tools/mcp/server/stdio_managed_mcp_server.py,sha256=a84GOnhWLg4vx6yo5dI8BlqUA_fdi0M5eNo2a-tGWwM,2085
|
|
455
|
+
autobyteus/tools/mcp/server/websocket_managed_mcp_server.py,sha256=KXDIREu4q-CY5_Lz7DZ6u4voGAOMMwvTyjrTOsmLK6w,5269
|
|
456
|
+
autobyteus/tools/multimedia/__init__.py,sha256=UgucHEd7HCUvBQpyXnjk64ZOlJ2FOCBPe0Ikg8PsEDM,330
|
|
457
|
+
autobyteus/tools/multimedia/audio_tools.py,sha256=rwyqXCzqpdomlsPkG4K5ti9UckPUmxzT9LnGy2wxJcY,6263
|
|
458
|
+
autobyteus/tools/multimedia/download_media_tool.py,sha256=-AvHSp_Q7SxSLNxPnQUWl40gUgTKiIPlFZd5Zi6Vtfs,7743
|
|
459
|
+
autobyteus/tools/multimedia/image_tools.py,sha256=ebXKHtBhDvrL5Imizc5CtjjBXMrLQE_8b4dmb7aetUE,15552
|
|
460
|
+
autobyteus/tools/multimedia/media_reader_tool.py,sha256=5MMCn9fbSsy1gVUZcvvS4QPCkzbl-hLuUDyzLQchJhM,5831
|
|
461
|
+
autobyteus/tools/operation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
462
|
+
autobyteus/tools/operation/file_operation.py,sha256=bAehQ9PfHoCDpk9Wa7vx9h3ohzVuaGzzBUogxleTwq8,2375
|
|
463
|
+
autobyteus/tools/operation/file_rename_operation.py,sha256=pExiC69HUzYbKihlVumlGHMGxmmrsKQB0JfAM5x4JH0,1710
|
|
464
|
+
autobyteus/tools/operation/operation.py,sha256=9sIZnlrPct5CwkCKuwbspVKvjF4KumP6twmXRo1blwo,1702
|
|
465
|
+
autobyteus/tools/operation/shell_operation.py,sha256=_BiGIRGWCzzwPVtbqFwXpHOvnqH68YqJujQI-gWeKx0,1860
|
|
466
|
+
autobyteus/tools/operation_executor/journal_manager.py,sha256=s0CZQAmld-LVkl0ToJsaM8L5FRSTzt_YHAs7TRTCSQ4,4664
|
|
467
|
+
autobyteus/tools/operation_executor/operation_event_buffer.py,sha256=Y0duSyQXkdAru96wQV8nK51Y07LqQox5Wm-6pAU0ctw,1705
|
|
468
|
+
autobyteus/tools/operation_executor/operation_event_producer.py,sha256=wBygTQawKCmzTz5TATLtW6KK3Xy08nDrK6g8iScI_pk,856
|
|
469
|
+
autobyteus/tools/operation_executor/operation_executor.py,sha256=529VGNl3uaTC4hW5NOBhHZq_J79qy-KpH95aGAtloK0,2248
|
|
470
|
+
autobyteus/tools/registry/__init__.py,sha256=39TSHm7mD6NXhsrczsX5Mdr32US0I6z3Bzad4hgcrrA,250
|
|
471
|
+
autobyteus/tools/registry/tool_definition.py,sha256=D8_8XPJFj6lG82XwLmV8JXt4SknXkRPNhabJS6l7qRw,11292
|
|
472
|
+
autobyteus/tools/registry/tool_registry.py,sha256=z6xm0CnlrF-e3MUQiLdivR3k2nYv9fPdbIPYmnRk76U,8644
|
|
473
|
+
autobyteus/tools/search/__init__.py,sha256=amxh1rGPc8Tz3jN3G4DSAE79N7KkRgrs1P_0TJHlFSY,507
|
|
474
|
+
autobyteus/tools/search/base_strategy.py,sha256=xsOhJVoiEJ8wsOkq4JnVSkgBqha735Jtcm1Qp-0PhVw,987
|
|
475
|
+
autobyteus/tools/search/client.py,sha256=04q9BZDEHPEl9ur8cCm9Pnb-iqAlDUkNlLUZ8WD_M38,833
|
|
476
|
+
autobyteus/tools/search/factory.py,sha256=AElxRbeaePHfFzeXAzoyefu3evvS7sncqQpAKVCjSBI,3665
|
|
477
|
+
autobyteus/tools/search/google_cse_strategy.py,sha256=LpWptdBSNCCB2vlhOxTt3Q0U1sEmTc6qKLM5F-rcRkY,2874
|
|
478
|
+
autobyteus/tools/search/providers.py,sha256=VE-alemtM_ozz2sbyK17-dbLQVYRYdx7WURiFYPx8Oc,242
|
|
479
|
+
autobyteus/tools/search/serpapi_strategy.py,sha256=9oVOZa4psAu73DhWxnxjMquuTEDLxKvpMun8OuLSgjI,2692
|
|
480
|
+
autobyteus/tools/search/serper_strategy.py,sha256=QWXp8DU1D42gmPvQwtGl-kRP0Tl80zjsQe7NvDe1JuI,3602
|
|
481
|
+
autobyteus/tools/skill/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
482
|
+
autobyteus/tools/skill/load_skill.py,sha256=mB2BRuTC4kstpQffZA93S_jGot4WqaV2X6L_KwmNpa4,1984
|
|
483
|
+
autobyteus/tools/terminal/__init__.py,sha256=Z0Oht4r6cqS-0Ixk-XUzERqNkJqGnK_-G2v0xv0bzm0,1259
|
|
484
|
+
autobyteus/tools/terminal/ansi_utils.py,sha256=suArWZsEB6CpaUw8__f0tSQ8blzEI8GNrgNzKe3p_OU,896
|
|
485
|
+
autobyteus/tools/terminal/background_process_manager.py,sha256=gzAl5Ke49LeiS7JMcgZcKjDxcHVQZIxwZNhfVGym7bY,7224
|
|
486
|
+
autobyteus/tools/terminal/output_buffer.py,sha256=uEyu8G0U8kVbPX12QS6vyo96rCiSNu3jzvqE1whqVMg,3126
|
|
487
|
+
autobyteus/tools/terminal/prompt_detector.py,sha256=2JeoFQJS-qEpWH_aR4vKN-yOfpe7tMHr_ypc1qmdk2s,1845
|
|
488
|
+
autobyteus/tools/terminal/pty_session.py,sha256=W0h-S0UjIASRUR1EqIlOg3E_GTnYyWzx66cUCb7kut8,7555
|
|
489
|
+
autobyteus/tools/terminal/session_factory.py,sha256=ulZIiXa1MgIhTWxwPkRUeWLKG9AJUFqrI_WD_oH_nPk,497
|
|
490
|
+
autobyteus/tools/terminal/terminal_session_manager.py,sha256=HxbQQZOIkn2IuXwMI73mKHss7WYaMDk_MMWrCw4smC0,7618
|
|
491
|
+
autobyteus/tools/terminal/types.py,sha256=6V32HyCqc0sqnjjtmuklT629xlhZ58AcKdqBKGShE6Y,1324
|
|
492
|
+
autobyteus/tools/terminal/wsl_tmux_session.py,sha256=Xw4hDjkmy7Th6zekX0J-wU5BVLqoCk8rKrWmdEXzbyI,7253
|
|
493
|
+
autobyteus/tools/terminal/wsl_utils.py,sha256=Fqrx8TczJ5jwQQfeKV2We4nQiBIw0THM-fTYUFrljEk,4498
|
|
494
|
+
autobyteus/tools/terminal/tools/__init__.py,sha256=hC4cwe6OSdxvvN0YGmYhsKvW4qSP6XU8WB87I471Vvo,509
|
|
495
|
+
autobyteus/tools/terminal/tools/get_process_output.py,sha256=GirCjGLzLZFsEQ9JEuSVhzpt5X1j5ZTyQqKaXQu3CRA,2657
|
|
496
|
+
autobyteus/tools/terminal/tools/run_bash.py,sha256=moPWG-Yicf8Wed4oICTvOso2gx-UWO-iynz2sS0OkFg,3457
|
|
497
|
+
autobyteus/tools/terminal/tools/start_background_process.py,sha256=pkV-26YzyqwFj55cqrKHX9sGcXRE_NfMBtMzD9rCRt4,3120
|
|
498
|
+
autobyteus/tools/terminal/tools/stop_background_process.py,sha256=-mBJzGavdHPyi2RIRfqKfLkjG1Se2KHbVGMzg6ExAT8,2088
|
|
499
|
+
autobyteus/tools/transaction_management/backup_handler.py,sha256=94gxe0FlQJsEUhbeayiu5arHcL5pRvuxhEIVvCG_qb4,2018
|
|
500
|
+
autobyteus/tools/transaction_management/operation_lifecycle_manager.py,sha256=BDFJA3JSsslAI3M4g_NKthGpU3ziV1PeNl9LmQ_IqbE,2599
|
|
501
|
+
autobyteus/tools/usage/__init__.py,sha256=EaEzqrUKYi87k6XyABi7SFomCo1YOn4ie4lc5HBQ_oc,178
|
|
502
|
+
autobyteus/tools/usage/tool_schema_provider.py,sha256=QNUd1KotxZCugXfdyEJDALxsVBDSKgWGnRRL3bTZzus,1857
|
|
503
|
+
autobyteus/tools/usage/formatters/__init__.py,sha256=7WItQ5cLELqkBkDLsEzjleVKGzIsB9Ahf6dcu91y8Mc,2182
|
|
504
|
+
autobyteus/tools/usage/formatters/anthropic_json_example_formatter.py,sha256=EVVPZ7e1tG3QRcEPjdOC0yTvnGisubfUm9geWbd9r2g,792
|
|
505
|
+
autobyteus/tools/usage/formatters/anthropic_json_schema_formatter.py,sha256=Cwd4teoZcs64q1xemVYIW9lviH7A0t2jmg3W7TYv_Rs,869
|
|
506
|
+
autobyteus/tools/usage/formatters/base_formatter.py,sha256=GpCdW3YFTJ3WAXWx6RtrgDz_0DVjmfdSMQe7Gon9qgc,1476
|
|
507
|
+
autobyteus/tools/usage/formatters/default_json_example_formatter.py,sha256=vngcw6jI_tqvgzrOJ7vvhStb2I35YYpdK31EyyW_nrc,9069
|
|
508
|
+
autobyteus/tools/usage/formatters/default_json_schema_formatter.py,sha256=mZuHp_irHco3_S-VotSBvv5BRFDlTsmdmSIH3Ut71jY,958
|
|
509
|
+
autobyteus/tools/usage/formatters/default_xml_example_formatter.py,sha256=JRr7ksL3N_YMeFm2CY6RQxVwK4sbVKeSWQdZIy0ieiI,7185
|
|
510
|
+
autobyteus/tools/usage/formatters/default_xml_schema_formatter.py,sha256=xqYqjHdauXgMG2OMWCcofisgtD8osnygNH5QP7JVcAE,6591
|
|
511
|
+
autobyteus/tools/usage/formatters/gemini_json_example_formatter.py,sha256=S56Ld3xN4X0U4VL645j-ZY2IAweMf4nKny6Sy8F6__4,3866
|
|
512
|
+
autobyteus/tools/usage/formatters/gemini_json_schema_formatter.py,sha256=za6FhkrbDUcezc9-u4w4_ytQAQyR8OpKypC_CCTYlBY,875
|
|
513
|
+
autobyteus/tools/usage/formatters/google_json_example_formatter.py,sha256=qw3WxLDg4iBRm6r4k2qYX8IkCQVtJV3ljMjk1iTCVsM,3908
|
|
514
|
+
autobyteus/tools/usage/formatters/google_json_schema_formatter.py,sha256=gKeuR_QhiebFGja303rg9q9CxgynJxIoCd4SrXuXRUU,868
|
|
515
|
+
autobyteus/tools/usage/formatters/mistral_json_schema_formatter.py,sha256=LkHWELiM7CqBYTZIxCt0I0XNrxqmdRY7rKBd9SxoaKI,739
|
|
516
|
+
autobyteus/tools/usage/formatters/openai_json_example_formatter.py,sha256=-Ggx3VoS64Pwq035P-Gd7b8gfPTHSSU2rAdN3xTSZI8,4131
|
|
517
|
+
autobyteus/tools/usage/formatters/openai_json_schema_formatter.py,sha256=3pN4CnmWiBJaZMhV7qnWcSKPpyZ2cEdiU-FVMRfPT1w,948
|
|
518
|
+
autobyteus/tools/usage/formatters/patch_file_xml_example_formatter.py,sha256=76F9T2hKQjTJp9lGPsBSm-xWw1d-a5P5AYVjBJcPsao,1592
|
|
519
|
+
autobyteus/tools/usage/formatters/patch_file_xml_schema_formatter.py,sha256=GS6hiNPKkNXhShPpH50XE-fId7hCZeEaoiZ8FJBHeKQ,1408
|
|
520
|
+
autobyteus/tools/usage/formatters/run_bash_xml_example_formatter.py,sha256=_yobWbuINrrXczc3ZWPAh0pdfk-rN_StXNKQrJ3F6ck,782
|
|
521
|
+
autobyteus/tools/usage/formatters/run_bash_xml_schema_formatter.py,sha256=c2uDbzROrmqY55fKkuRw200BVMUQ1Ztjn87GygJK5Nc,922
|
|
522
|
+
autobyteus/tools/usage/formatters/write_file_xml_example_formatter.py,sha256=2Unpw_RB8WXX84EO7EEcejjkMTvByA1k5KPe9L18dcE,1268
|
|
523
|
+
autobyteus/tools/usage/formatters/write_file_xml_schema_formatter.py,sha256=ieSHz2V3RKvspwy4M9s8o2XW17fxBRQjn1jVy5kIbpo,1396
|
|
524
|
+
autobyteus/tools/usage/providers/__init__.py,sha256=C8GmfzYwzSS2OGv7MbvxtRe0OsIALvkC7rN7OWvA5p4,445
|
|
525
|
+
autobyteus/tools/usage/providers/tool_manifest_provider.py,sha256=F_6_87eILsY7z9rScB6ESPRuXIT3Z7E9RLyvCCiyyz4,4655
|
|
526
|
+
autobyteus/tools/usage/registries/__init__.py,sha256=lCZkVbKtdaSPCrF51IuiYIO4nPiKRgHC1wjSFpB-H_w,440
|
|
527
|
+
autobyteus/tools/usage/registries/tool_formatter_pair.py,sha256=Deki2aAEsFY0OSrMQf-4wZcyIInGI7EKQ2ZKenaFtMU,593
|
|
528
|
+
autobyteus/tools/usage/registries/tool_formatting_registry.py,sha256=GgOU3gnaxiA-cpOXmdvm8DiCu1eZ9IRlbRz6bR1haSE,7564
|
|
529
|
+
autobyteus/tools/web/__init__.py,sha256=z-ffgHZKRmZ_5hTM5URzGdgI-2Ifk2zKwVHWomuiHJc,59
|
|
530
|
+
autobyteus/tools/web/read_url_tool.py,sha256=WnR0LJCilHvS5l_5-7M3MJLpvfAWFcwvgO5rSrg4Ri4,3377
|
|
531
|
+
autobyteus/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
532
|
+
autobyteus/utils/diff_utils.py,sha256=YMP1GI64L_YH6ezEcY8st09lO3ecb2IGIPvGxDUpdV0,11796
|
|
533
|
+
autobyteus/utils/download_utils.py,sha256=9KftlNZ9p8ktHOksc9ghXnnknCpV67jaAEOTYDY9SnU,4225
|
|
534
|
+
autobyteus/utils/dynamic_enum.py,sha256=c_mgKtKrjb958LlCWeAApl1LMvVB7U_0SWl-8XFhRag,1339
|
|
535
|
+
autobyteus/utils/file_utils.py,sha256=5tJQT4LdFS6BmRyQwCaL7g2hiK4G2vMCbdX9l3EETCg,2253
|
|
536
|
+
autobyteus/utils/gemini_helper.py,sha256=ucfqWZNvBulu0qKor9LbKJn56GYyTDZOsoKgnQOutVQ,1882
|
|
537
|
+
autobyteus/utils/gemini_model_mapping.py,sha256=2BsJwb-Vd48DXNvBISJvV19vAXqigPuBRyzsi_eTXYU,2496
|
|
538
|
+
autobyteus/utils/html_cleaner.py,sha256=mI2V83yFRfQe8NnN6fr6Ujpa0bPlq25NW5tTKaz2WGk,8672
|
|
539
|
+
autobyteus/utils/llm_output_formatter.py,sha256=QwWP8VltDx0n0ssL2DsOMaik8NzYpB6Odj1ofS6bO9w,3035
|
|
540
|
+
autobyteus/utils/parameter_schema.py,sha256=WoBXXdUIA6zBwMIr5CIO1lVkNN8m1c0gV6sIcCsSNSI,13010
|
|
541
|
+
autobyteus/utils/singleton.py,sha256=YVURj5nRcMtzwFPxgy6ic4MSe3IUXNf6XWYuiXyhDOg,814
|
|
542
|
+
autobyteus/utils/tool_call_format.py,sha256=rMtvsnqU2uw4XOETgj5GrDuGRdbBgNSyJSoxIFZBae0,969
|
|
543
|
+
autobyteus/workflow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
544
|
+
autobyteus/workflow/agentic_workflow.py,sha256=bHov06z4DM0slN9-kcgsP4PBXpyyStcLNM1-w_YDZFs,3736
|
|
545
|
+
autobyteus/workflow/base_agentic_workflow.py,sha256=fb7JZZ58p7HL-jQdzHybrMSEMSGgenoJ3D4prnWIBtk,3602
|
|
546
|
+
autobyteus/workflow/exceptions.py,sha256=mIHDol7s6bQX_LP8y00zDAnpjDXlAL4-3P8rX2nxA-Q,407
|
|
547
|
+
autobyteus/workflow/workflow_builder.py,sha256=_e3hlCTclQLN81XyJjbZ8uHSvKe6sgpeKA_8yL51e9c,6889
|
|
548
|
+
autobyteus/workflow/bootstrap_steps/__init__.py,sha256=9C9HvkXHNYJfI-OfXvMWOyerA1r6j1n3gLX2nE4fAKU,1034
|
|
549
|
+
autobyteus/workflow/bootstrap_steps/agent_tool_injection_step.py,sha256=3lKtiSGlohDDXpxRXwwStbPDqM0zwN_CZ-EKjUNL3_4,1946
|
|
550
|
+
autobyteus/workflow/bootstrap_steps/base_workflow_bootstrap_step.py,sha256=lnWfXxn_mcqXI5OCaPfyBOTaQayxROe7x634g6a0j_o,884
|
|
551
|
+
autobyteus/workflow/bootstrap_steps/coordinator_initialization_step.py,sha256=93DisUerF_sC7PmLRjz3PGF93HEdAnJXw59q5F-mKWU,1931
|
|
552
|
+
autobyteus/workflow/bootstrap_steps/coordinator_prompt_preparation_step.py,sha256=ANV51h4MUqpJqimVHtznSztu04bmPauCceK-YCxbC7I,5242
|
|
553
|
+
autobyteus/workflow/bootstrap_steps/workflow_bootstrapper.py,sha256=q2oZTbV0kcmVuKVMfeC0MXubtEfVLxMAiUpj86-X0Rw,2754
|
|
554
|
+
autobyteus/workflow/bootstrap_steps/workflow_runtime_queue_initialization_step.py,sha256=HvskhbYP-zWF6thuRoVdldb60AhdRKxd1ErppNH1ng0,1373
|
|
555
|
+
autobyteus/workflow/context/__init__.py,sha256=aOkJMgX6bo7Cq1UBC4oENgb7lZYhMdJJSLJ-3uUhnA0,653
|
|
556
|
+
autobyteus/workflow/context/team_manager.py,sha256=EfWBdVsjnT9FJOhEFDZhlrdsJ9-qshDBq5sm7gkX5kA,7659
|
|
557
|
+
autobyteus/workflow/context/workflow_config.py,sha256=E3ylRyeC8WO37qHri9TmyShXht6-UqpMZIixBjucG7o,1174
|
|
558
|
+
autobyteus/workflow/context/workflow_context.py,sha256=RD7MpH00XwRmh4-lxyMQqzyeyUkRC8BOL_lbIqgNCjc,2700
|
|
559
|
+
autobyteus/workflow/context/workflow_node_config.py,sha256=ka_ku03tKOwU-q9Is1lCt-Bpfj39gZk9KEE3lfEtNe8,3212
|
|
560
|
+
autobyteus/workflow/context/workflow_runtime_state.py,sha256=hYoqICtrR7_uz8BDiwioij0pmWMEhMtG7s8cffrMKJA,2776
|
|
561
|
+
autobyteus/workflow/events/__init__.py,sha256=7qNll9W8bpJRg63bzvZDdLLXwKQfoxsLFd-RLFPDGpA,949
|
|
562
|
+
autobyteus/workflow/events/workflow_event_dispatcher.py,sha256=N-vnZIp7-et4oSss46CyJXXTuhaTUfTv_MVyAbyYQXs,1737
|
|
563
|
+
autobyteus/workflow/events/workflow_events.py,sha256=5IeDgjkImXZMMkpBn3u4d3PiKiLDHuDndb3FA1I_ycs,1744
|
|
564
|
+
autobyteus/workflow/events/workflow_input_event_queue_manager.py,sha256=JtTicSrEBXT6gQcUo5XLxuZ78NIDl2A1GtwRI44MONU,942
|
|
565
|
+
autobyteus/workflow/factory/__init__.py,sha256=W9Hq6EaVlpvHNj3I_6MpWluuLOxdPvpibH4AXlFX1f0,235
|
|
566
|
+
autobyteus/workflow/factory/workflow_factory.py,sha256=VpxDguKhG7ng3Z8-2Equqd6ligIn3FsXjeGDyP8ppjQ,4829
|
|
567
|
+
autobyteus/workflow/handlers/__init__.py,sha256=kgTir-RKwzsuUpODMcNjIzqFrw2LU4KQ8vWRcz-2ZCg,989
|
|
568
|
+
autobyteus/workflow/handlers/base_workflow_event_handler.py,sha256=1nA02qJuK4bk6gH3lyVCS85nfQtAO5tOifUp31FHfYk,580
|
|
569
|
+
autobyteus/workflow/handlers/inter_agent_message_request_event_handler.py,sha256=w9cq_GWZHp2996hh4tbgM598BpCTcdFfXx5dyGf39Q8,3388
|
|
570
|
+
autobyteus/workflow/handlers/lifecycle_workflow_event_handler.py,sha256=k-hS2ggaOVtaN79OwITpOysDsOJMs0p1roOp87iocdg,1354
|
|
571
|
+
autobyteus/workflow/handlers/process_user_message_event_handler.py,sha256=armqFHL65RVcPhTbewg3Sd4v9rWQ525TDf6loW49WW4,2607
|
|
572
|
+
autobyteus/workflow/handlers/tool_approval_workflow_event_handler.py,sha256=oc-SBd_TfDHBG_CdkEA38dvY57prhCZWZVtD8O1lx-Y,1883
|
|
573
|
+
autobyteus/workflow/handlers/workflow_event_handler_registry.py,sha256=o-qXbg9VY4Ce8EtOGdbAhRXleQsWVjVE_idPK5rQTU8,1207
|
|
574
|
+
autobyteus/workflow/runtime/__init__.py,sha256=WYLVQfP2zwgg8GtJSInTJZyVdr1mxRfvQRtSERmQfQQ,451
|
|
575
|
+
autobyteus/workflow/runtime/workflow_runtime.py,sha256=q3Iprl4RYsg-rAgUMghsnqIA2D7bUAm76iScWVJOxIg,3905
|
|
576
|
+
autobyteus/workflow/runtime/workflow_worker.py,sha256=lVlhlHDiGWSseIBi06_8mknUQwMuDl5RJyWC5bNLGGo,5602
|
|
577
|
+
autobyteus/workflow/shutdown_steps/__init__.py,sha256=6_d81qvsu5ViWi5BIjQ2pxIYjVKOnhmdtI5v031KXv8,802
|
|
578
|
+
autobyteus/workflow/shutdown_steps/agent_team_shutdown_step.py,sha256=27pJ0ysP1PzGcuU3mkwPorPenypN7jlZb18gh4MUDmI,1883
|
|
579
|
+
autobyteus/workflow/shutdown_steps/base_workflow_shutdown_step.py,sha256=c4fRHV56aTEOEVya5cvVEu15dgCjq4h3V93IKqrk4Ho,638
|
|
580
|
+
autobyteus/workflow/shutdown_steps/bridge_cleanup_step.py,sha256=rCDKe-Wdm4SY7ua0NRlp9i7wnIlmwqh-Nqze-qeGYcw,1183
|
|
581
|
+
autobyteus/workflow/shutdown_steps/sub_workflow_shutdown_step.py,sha256=odjGy3p3ikk2c713Iopsfe9vEX6RWa-4ZqjnKfry7kY,1861
|
|
582
|
+
autobyteus/workflow/shutdown_steps/workflow_shutdown_orchestrator.py,sha256=uZ77Ajnt5rzICXcjgyv19ckXEXi_pFnFNCyl-5MXMME,1580
|
|
583
|
+
autobyteus/workflow/status/__init__.py,sha256=xAja3eVziHOQBJUJWtBrSBod-sUppPoySZ3YAX2o6mY,377
|
|
584
|
+
autobyteus/workflow/status/workflow_status.py,sha256=T8mr8Ncvre8tqkcp3s9PRVYvbAFDUWlp6erjUBInNNo,634
|
|
585
|
+
autobyteus/workflow/status/workflow_status_manager.py,sha256=SWG9C0E5hl2iBwZL_y6E9b7j7ltTSR3dVgTh14F-iv4,2231
|
|
586
|
+
autobyteus/workflow/streaming/__init__.py,sha256=7X4KC00QVDQOLgLgMWpQbyxaoDiBqqXWvYssOoHCEuo,871
|
|
587
|
+
autobyteus/workflow/streaming/agent_event_bridge.py,sha256=pT8tgXfQhdGb4LQ286tZcwmQZFrIbCBlIy_d7v1HGNE,2126
|
|
588
|
+
autobyteus/workflow/streaming/agent_event_multiplexer.py,sha256=VlBucqJJNHO7uwPAD7u5-0zTvmAkkqouaRyihJW5A6g,3765
|
|
589
|
+
autobyteus/workflow/streaming/workflow_event_bridge.py,sha256=BBgMQw1gruW-EgtK3SM-O21GG2qjaRem3BIWtsSlu_c,2461
|
|
590
|
+
autobyteus/workflow/streaming/workflow_event_notifier.py,sha256=E2rDtvH0izlYupL00HvdFPL21PmpexYn0lmAchb04bA,3612
|
|
591
|
+
autobyteus/workflow/streaming/workflow_event_stream.py,sha256=XTOvbx1EWIh2x_-Nl5UcY6jCPnsgdS4GvoHjfRKj8yM,1540
|
|
592
|
+
autobyteus/workflow/streaming/workflow_stream_event_payloads.py,sha256=NVaC4Ak84fskMIOg3_0PMUYNCEQAwAQHucRfDzQk-nE,1428
|
|
593
|
+
autobyteus/workflow/streaming/workflow_stream_events.py,sha256=j3uKwdV6Xl7JW0Qgawusk8L10atDfP8h5TsC-4IF8B0,2212
|
|
594
|
+
autobyteus/workflow/utils/__init__.py,sha256=SzaMZHnJBIJKcT_r-HOeyIcuxzRu2bGeFkOcMLJaalk,222
|
|
595
|
+
autobyteus/workflow/utils/wait_for_idle.py,sha256=EYko8MLjzFYLHijIG1qOMRmh6kVqZfNCI5Q3zA0qPCg,1953
|
|
596
|
+
autobyteus-1.2.3.dist-info/licenses/LICENSE,sha256=Ompok_c8HRsXRwmax-pGR9OZRRxZC9RPp4JB6eTJd0M,1360
|
|
597
|
+
autobyteus-1.2.3.dist-info/METADATA,sha256=W0B9Dnfrho_FhPqXPlb6aKxT6b-VH-Wrkvy_IE0-Jww,14883
|
|
598
|
+
autobyteus-1.2.3.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
599
|
+
autobyteus-1.2.3.dist-info/top_level.txt,sha256=OeVeFlKcnysp6uMGe8TDaoFeuh4NUK4wZIfNjXCWKTE,11
|
|
600
|
+
autobyteus-1.2.3.dist-info/RECORD,,
|