autobyteus 1.2.1__py3-none-any.whl → 1.3.0__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 +3 -3
- autobyteus/agent/bootstrap_steps/agent_bootstrapper.py +5 -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/working_context_snapshot_restore_step.py +38 -0
- autobyteus/agent/bootstrap_steps/workspace_context_initialization_step.py +2 -4
- autobyteus/agent/context/agent_config.py +47 -20
- autobyteus/agent/context/agent_context.py +23 -18
- autobyteus/agent/context/agent_runtime_state.py +21 -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 +69 -59
- autobyteus/agent/events/worker_event_dispatcher.py +21 -64
- autobyteus/agent/factory/agent_factory.py +83 -6
- 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 +44 -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/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 -183
- 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 +82 -0
- autobyteus/agent/streaming/stream_event_payloads.py +2 -223
- autobyteus/agent/streaming/stream_events.py +3 -140
- 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 +1 -2
- autobyteus/agent_team/bootstrap_steps/team_context_initialization_step.py +4 -4
- 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 +9 -6
- 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 +6 -6
- autobyteus/agent_team/streaming/agent_team_stream_event_payloads.py +4 -4
- autobyteus/agent_team/streaming/agent_team_stream_events.py +3 -3
- 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/task_notification_mode.py +19 -0
- autobyteus/agent_team/utils/wait_for_idle.py +4 -4
- autobyteus/cli/agent_cli.py +18 -10
- autobyteus/cli/agent_team_tui/app.py +14 -11
- autobyteus/cli/agent_team_tui/state.py +13 -15
- autobyteus/cli/agent_team_tui/widgets/agent_list_sidebar.py +15 -15
- autobyteus/cli/agent_team_tui/widgets/focus_pane.py +143 -36
- autobyteus/cli/agent_team_tui/widgets/renderables.py +1 -1
- autobyteus/cli/agent_team_tui/widgets/shared.py +25 -25
- 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 +11 -18
- 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 +35 -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 +205 -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/path_resolver.py +27 -0
- autobyteus/memory/policies/__init__.py +5 -0
- autobyteus/memory/policies/compaction_policy.py +16 -0
- autobyteus/memory/restore/__init__.py +1 -0
- autobyteus/memory/restore/working_context_snapshot_bootstrapper.py +61 -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 +9 -0
- autobyteus/memory/store/base_store.py +14 -0
- autobyteus/memory/store/file_store.py +98 -0
- autobyteus/memory/store/working_context_snapshot_store.py +28 -0
- autobyteus/memory/tool_interaction_builder.py +46 -0
- autobyteus/memory/turn_tracker.py +9 -0
- autobyteus/memory/working_context_snapshot.py +69 -0
- autobyteus/memory/working_context_snapshot_serializer.py +135 -0
- autobyteus/multimedia/audio/api/autobyteus_audio_client.py +19 -5
- autobyteus/multimedia/audio/api/gemini_audio_client.py +109 -16
- autobyteus/multimedia/audio/audio_client_factory.py +47 -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 +39 -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/tools/todo_tools/add_todo.py +2 -2
- autobyteus/task_management/tools/todo_tools/create_todo_list.py +2 -2
- autobyteus/task_management/tools/todo_tools/update_todo_status.py +2 -2
- autobyteus/tools/__init__.py +34 -47
- autobyteus/tools/base_tool.py +7 -0
- autobyteus/tools/file/__init__.py +2 -6
- autobyteus/tools/file/patch_file.py +149 -0
- autobyteus/tools/file/read_file.py +36 -5
- autobyteus/tools/file/write_file.py +4 -1
- autobyteus/tools/functional_tool.py +43 -6
- 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/types.py +61 -0
- autobyteus/tools/multimedia/audio_tools.py +70 -17
- autobyteus/tools/multimedia/download_media_tool.py +18 -4
- autobyteus/tools/multimedia/image_tools.py +246 -62
- 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 +43 -2
- 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/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 +64 -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 +3 -9
- 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.3.0.dist-info/METADATA +293 -0
- autobyteus-1.3.0.dist-info/RECORD +606 -0
- {autobyteus-1.2.1.dist-info → autobyteus-1.3.0.dist-info}/WHEEL +1 -1
- {autobyteus-1.2.1.dist-info → autobyteus-1.3.0.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/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/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/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 -84
- autobyteus/tools/browser/standalone/web_page_pdf_generator.py +0 -101
- autobyteus/tools/browser/standalone/webpage_image_downloader.py +0 -169
- autobyteus/tools/browser/standalone/webpage_reader.py +0 -105
- autobyteus/tools/browser/standalone/webpage_screenshot_taker.py +0 -105
- autobyteus/tools/file/edit_file.py +0 -200
- autobyteus/tools/file/list_directory.py +0 -168
- autobyteus/tools/file/search_files.py +0 -188
- autobyteus/tools/timer.py +0 -175
- 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.1.dist-info/METADATA +0 -205
- autobyteus-1.2.1.dist-info/RECORD +0 -511
- examples/__init__.py +0 -1
- examples/agent_team/__init__.py +0 -1
- examples/discover_phase_transitions.py +0 -104
- examples/run_agentic_software_engineer.py +0 -239
- 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/{tools/browser/session_aware → skills}/__init__.py +0 -0
- /autobyteus/tools/{browser/session_aware/factory → skill}/__init__.py +0 -0
- {autobyteus-1.2.1.dist-info → autobyteus-1.3.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,511 +0,0 @@
|
|
|
1
|
-
autobyteus/__init__.py,sha256=ij7pzJD0e838u_nQIypAlXkJQgUkcB898Gqw2Dovv-s,110
|
|
2
|
-
autobyteus/check_requirements.py,sha256=nLWmqMlGiAToQuub68IpL2EhRxFZ1CyCwRCMi2C5hrY,853
|
|
3
|
-
autobyteus/agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
autobyteus/agent/agent.py,sha256=OLHU73lGlfbrwqke3cpnY8HE5zZEvYb0Cqqsxu_LKD0,4926
|
|
5
|
-
autobyteus/agent/exceptions.py,sha256=tfXvey5SkT70X6kcu29o8YO91KB0hI9_uLrba91_G2s,237
|
|
6
|
-
autobyteus/agent/processor_option.py,sha256=kQhrp2AfwTWMVYPwq0Dg_vvlPDGBdcmO12IecCw4rEI,472
|
|
7
|
-
autobyteus/agent/remote_agent.py,sha256=DPhAWobptj82HZaACbtLkXQBYIotgr3yZ6u4D9TJmeE,14458
|
|
8
|
-
autobyteus/agent/sender_type.py,sha256=kCtm9BnJoXv3Ab6wBOToFliqGHQy9HEkIhP0GsXhyZI,641
|
|
9
|
-
autobyteus/agent/tool_invocation.py,sha256=oEtzk5g2T2mRLatebkSYcUbyz1JwF2ybBxd92yTKb28,3217
|
|
10
|
-
autobyteus/agent/bootstrap_steps/__init__.py,sha256=k3_J4MXu7PaTuUXK-D2Uax8kh4BnSNm22sDlQw6GFA4,906
|
|
11
|
-
autobyteus/agent/bootstrap_steps/agent_bootstrapper.py,sha256=tPxD4yQ_i3-rl9XOGaKrLMdpymBqrzHkkkzRW0xhPBw,4336
|
|
12
|
-
autobyteus/agent/bootstrap_steps/agent_runtime_queue_initialization_step.py,sha256=wulFdVAwR4jTZtJgHwLYf07r76KKCKpwa1Cho2AqjSw,3265
|
|
13
|
-
autobyteus/agent/bootstrap_steps/base_bootstrap_step.py,sha256=8XaGHJva2Fo4T3fACK36FbEcrblj105oVhffYFEQO1A,1349
|
|
14
|
-
autobyteus/agent/bootstrap_steps/mcp_server_prewarming_step.py,sha256=M_OnynyLRmyQsfEeGQ8aH-NIhbBgmXhEBRHopvkNXJc,3432
|
|
15
|
-
autobyteus/agent/bootstrap_steps/system_prompt_processing_step.py,sha256=C95rbKikJtBD0LdVqSYECJp6Xrtm2impAvOGKPQB-d8,5955
|
|
16
|
-
autobyteus/agent/bootstrap_steps/workspace_context_initialization_step.py,sha256=FMF9fhD6Wgas4TpQbSwKiL43OZBmwh_cAA3G_5jRJhM,2112
|
|
17
|
-
autobyteus/agent/context/__init__.py,sha256=1an2L4sKJ1tYbJKAhCLSw-oYzt5_lmUwh1SYClA5c3M,447
|
|
18
|
-
autobyteus/agent/context/agent_config.py,sha256=q04ohaBP8Wq2V0nK96YngFSLWCX7R02aAYfbIMRzAJc,6726
|
|
19
|
-
autobyteus/agent/context/agent_context.py,sha256=3Vd1c4EF6JY7rOKar7TQSXNNSNnpB-hYuhGqVQdi52g,5726
|
|
20
|
-
autobyteus/agent/context/agent_context_registry.py,sha256=GqwKn0EKKTRv6Vwwrb5kMRrwD9uH5NCh_Nvtmw82QTo,2748
|
|
21
|
-
autobyteus/agent/context/agent_runtime_state.py,sha256=BEd-3vuNcq5OUD0uYizdxNc9miZSiW79MINlajZbfEY,5695
|
|
22
|
-
autobyteus/agent/events/__init__.py,sha256=8AL83PBRLkEptTzPznn_XpGXq2-S56Yxx3WarNcsc3U,1507
|
|
23
|
-
autobyteus/agent/events/agent_events.py,sha256=plrBY3Cr_nUhrwvkpED_2qyPq2Slc0ciiupsWdPvmwo,3821
|
|
24
|
-
autobyteus/agent/events/agent_input_event_queue_manager.py,sha256=VfynrdVSPkKEH94yg9p1WBOoV52JQX8MRJhJ-GU7fcY,10461
|
|
25
|
-
autobyteus/agent/events/notifiers.py,sha256=tESyKbkPyGjT5Wk5V5ayasaVMN3ciL-X9smpsH6Svww,8033
|
|
26
|
-
autobyteus/agent/events/worker_event_dispatcher.py,sha256=wE63Qq4gw0JhkxvpuvbxUJHhbjzKSfhinjuF6epfR04,6165
|
|
27
|
-
autobyteus/agent/factory/__init__.py,sha256=4_PxMM-S_BRuYoQBHIffY6bXpBdEv-zFyuB6YaK93Yw,204
|
|
28
|
-
autobyteus/agent/factory/agent_factory.py,sha256=8vrsGTvZi0XIVZxpB3CHiiSLIv9Rdar9SaQ8Y5v5gLo,6673
|
|
29
|
-
autobyteus/agent/handlers/__init__.py,sha256=UFIEqdaET3zTYnHJAJpjiSVS9euWqQuaVMlVTN6dyAY,1510
|
|
30
|
-
autobyteus/agent/handlers/approved_tool_invocation_event_handler.py,sha256=ND9XzSXIQOaj16AOs37gaPGGSgU1BXRK7CrWK_-wL8Y,7857
|
|
31
|
-
autobyteus/agent/handlers/base_event_handler.py,sha256=G2vtFJT_vyObWTgrgwIgRwOssBQ-6A3gxHtc7S4SEuQ,1264
|
|
32
|
-
autobyteus/agent/handlers/event_handler_registry.py,sha256=95BCsKtxKFFSsliSJOCb6nw10TMbiRK2qM366DDuZKM,3474
|
|
33
|
-
autobyteus/agent/handlers/generic_event_handler.py,sha256=759BrDJI-sesY74YN3CX3OfTM44vLGyj6Sg1gd8eJ_w,1888
|
|
34
|
-
autobyteus/agent/handlers/inter_agent_message_event_handler.py,sha256=K6i-Ivp14IWPRmSc6Cek9LNC2i5PBK6S1ApYpgFg6rQ,3507
|
|
35
|
-
autobyteus/agent/handlers/lifecycle_event_logger.py,sha256=-j5GhlCPauPwJMUOMUL53__wweZTsamhYXNbvQklnoY,2656
|
|
36
|
-
autobyteus/agent/handlers/llm_complete_response_received_event_handler.py,sha256=75X_7Ge4TwWz32aZHi9PjWMWJZ87Fo2Mq2U-z06-6Hw,7959
|
|
37
|
-
autobyteus/agent/handlers/llm_user_message_ready_event_handler.py,sha256=4WgDXUY4rmjpP44X2THKMAt2NpAZ5GukPqVNmLt6XJM,9064
|
|
38
|
-
autobyteus/agent/handlers/tool_execution_approval_event_handler.py,sha256=Tda_LrlIPbEwVzf1I6u4Vb9sPmAbGQRqT_2-Q9ukLhw,4489
|
|
39
|
-
autobyteus/agent/handlers/tool_invocation_request_event_handler.py,sha256=AjNGQgRCQkjXvYThd_AaPj0Lzh1adEkhYJO83alxVAY,10957
|
|
40
|
-
autobyteus/agent/handlers/tool_result_event_handler.py,sha256=JJJVcmg6g12molgNfMmbypjaT1s8Bu74Af2hEmqrT4U,10699
|
|
41
|
-
autobyteus/agent/handlers/user_input_message_event_handler.py,sha256=_9H69xZNv2HR0MnIbcZ7k64NJmKUxe-Old_rI16ZhQE,5585
|
|
42
|
-
autobyteus/agent/hooks/__init__.py,sha256=a1do0Ribb2Hpf9t0Xqxhf3Ls7R6EQuWJtfTGQK7VjUM,495
|
|
43
|
-
autobyteus/agent/hooks/base_phase_hook.py,sha256=H5wDej9QOw9gJmy63tWB6mapNSdy6NP0w5dduP-YohI,2540
|
|
44
|
-
autobyteus/agent/hooks/hook_definition.py,sha256=4aA4iZnxMnw9n6sGThD-kCt3JPQSjPQDCd5D7Q7uzQs,1273
|
|
45
|
-
autobyteus/agent/hooks/hook_meta.py,sha256=QHqEDug46EgDHrZYyacdXkFhnE39Zq2oPbgBgB27E6I,1590
|
|
46
|
-
autobyteus/agent/hooks/hook_registry.py,sha256=1lXHqIN6J7jfVXjFv8i7nuGQbGj5HEXRCTAtc5MrSIA,4103
|
|
47
|
-
autobyteus/agent/input_processor/__init__.py,sha256=uyxNlVWQXkHshNFp-9MkjRjMK0f7Ve0Mjx_d-q8C8Ic,330
|
|
48
|
-
autobyteus/agent/input_processor/base_user_input_processor.py,sha256=7y11eGo4gT25nt1F-c3cNqkyBQwq1sCOkDkQ5SPhg2A,2650
|
|
49
|
-
autobyteus/agent/input_processor/processor_definition.py,sha256=ISRHvjbBhlG2DYdgSK4hN3i8w1DJkgPOvCDY06TuslQ,2101
|
|
50
|
-
autobyteus/agent/input_processor/processor_meta.py,sha256=Ns_VcPbK4-xLlpbdFIC_xWfgoXDHVduVTNN7EUCUPgU,2241
|
|
51
|
-
autobyteus/agent/input_processor/processor_registry.py,sha256=GMTw-XAeHvNaHcWEOpSQ9mCDeb4iT94slQa-pNH44M0,4651
|
|
52
|
-
autobyteus/agent/llm_response_processor/__init__.py,sha256=IeN_Bd0t46V3NYrviWzrLiM6IJBjhpf3lxX-ZQOfzUU,617
|
|
53
|
-
autobyteus/agent/llm_response_processor/base_processor.py,sha256=7NcvEwc-HXZD7otv9hzSvFseuZ7xOviZjtTTHGFQeuI,2846
|
|
54
|
-
autobyteus/agent/llm_response_processor/processor_definition.py,sha256=AMLmiL8dMlTpmBKmQrqrfNTfwJLyL6kLHYGqJ-Ly8bE,1464
|
|
55
|
-
autobyteus/agent/llm_response_processor/processor_meta.py,sha256=RC32R5SVTSpBEOdexVh_SOTIydv0_ElWGP7PsXB-q_Q,1813
|
|
56
|
-
autobyteus/agent/llm_response_processor/processor_registry.py,sha256=j9IK0ZLeXxOaX9L3YtmprwYNgWHqtMt_lEOZqgP675k,4536
|
|
57
|
-
autobyteus/agent/llm_response_processor/provider_aware_tool_usage_processor.py,sha256=nuFFYZa7qsqalXBPYhyQ1SuFtEXxLTjLvBi6-0jtRus,4458
|
|
58
|
-
autobyteus/agent/message/__init__.py,sha256=vIgKdHwCaRsaJNdi9jmGnenUZjrOhHq8hO0eZsi48hE,759
|
|
59
|
-
autobyteus/agent/message/agent_input_user_message.py,sha256=ntjK0kP3kw2o4NjQ2o2XuCv_rwqs3tjJD1s_fBHg6aE,4794
|
|
60
|
-
autobyteus/agent/message/context_file.py,sha256=161HOu_m7923GU9kI_EDEWtVckb2nuTyqDunBq8H2kg,3311
|
|
61
|
-
autobyteus/agent/message/context_file_type.py,sha256=PXGBxFKRa2ocFS09-UagPzrYAHpMi_ozS0DbQmZokZw,3192
|
|
62
|
-
autobyteus/agent/message/inter_agent_message.py,sha256=302oAt5PdrAqS1Cz80o7G6Kk3Ur1D9JNxze7Q0NI3dM,2436
|
|
63
|
-
autobyteus/agent/message/inter_agent_message_type.py,sha256=l-j0WB4F6yRXSSnHRKzNfmwnL4wX3usPN0JIrQthyEA,1130
|
|
64
|
-
autobyteus/agent/message/multimodal_message_builder.py,sha256=rPyfdqphWKMOeV5GImveR3__8yuDXIMbHx9cAypZGLU,2017
|
|
65
|
-
autobyteus/agent/message/send_message_to.py,sha256=SMIG5tqtWHbIatPsXJY8wzfb4tB-jQYFxLoAY8ExeVY,5923
|
|
66
|
-
autobyteus/agent/phases/__init__.py,sha256=OC0T294mOGUk6pudSVLslHtfziBJEYd_VoA-LgWo9oE,558
|
|
67
|
-
autobyteus/agent/phases/discover.py,sha256=YuW0I8PyGysiyAf3jfR-cVesgSH5zi78uYZKqnM6dGU,1993
|
|
68
|
-
autobyteus/agent/phases/manager.py,sha256=-K3trAbDyXweGUxtgKPuUjQh7Cr2oFswR9KwhisT128,15604
|
|
69
|
-
autobyteus/agent/phases/phase_enum.py,sha256=Ubd_fraZxYRJUM7DdeLEjL0Vvm1RzBcCuOUgVKHBELE,2882
|
|
70
|
-
autobyteus/agent/phases/transition_decorator.py,sha256=jiby_dzeytKGQFjnTQYQ1gziYh7F-2RnShajpHWWhFQ,1553
|
|
71
|
-
autobyteus/agent/phases/transition_info.py,sha256=wqA_ANUbDzjsgESUtgH4svVczPA6-LUdAtZm1MonoFA,1251
|
|
72
|
-
autobyteus/agent/runtime/__init__.py,sha256=VQLu_-t86WkvLKEnGmbPksP53CrqgchqY8eB-DS-SsI,457
|
|
73
|
-
autobyteus/agent/runtime/agent_runtime.py,sha256=Ibsl9o_Pnj_Vatd-eO0s_mzoantbIEo5M9zXw4vwn_I,6903
|
|
74
|
-
autobyteus/agent/runtime/agent_thread_pool_manager.py,sha256=-dyo3LQ4Mi1upUyyp-8EmQuRXWamIcESc1-WCVSS0dM,3607
|
|
75
|
-
autobyteus/agent/runtime/agent_worker.py,sha256=xGHjMMgDjTykIm5yBfIc1x0ylCGh8UQ1ITmoWyCKyZQ,11264
|
|
76
|
-
autobyteus/agent/shutdown_steps/__init__.py,sha256=583P5F3eBdqkmwBlnqua0PBZjHpnsfNEZgGxFw3x-4o,574
|
|
77
|
-
autobyteus/agent/shutdown_steps/agent_shutdown_orchestrator.py,sha256=5y8Ynm0zDbV00NkiJ4XNoM9U7T0vEp5E_fkUt4pTAVI,2475
|
|
78
|
-
autobyteus/agent/shutdown_steps/base_shutdown_step.py,sha256=YqHMD4opVvjCHHZdD38SxxJLhfAHL5523DNymUNHiD4,1083
|
|
79
|
-
autobyteus/agent/shutdown_steps/llm_instance_cleanup_step.py,sha256=f0zfOLNA_Ksp4Q0kBvikNlvoTXCnN-erQzSPMtmK44c,1863
|
|
80
|
-
autobyteus/agent/shutdown_steps/mcp_server_cleanup_step.py,sha256=_Ra9Fsf2KnPJAoGK0YdMH1wd0GdMonc9-MYY1GQookQ,1274
|
|
81
|
-
autobyteus/agent/streaming/__init__.py,sha256=ul7QUIjv5q1nYwzrU1nsVBsKZwpthdmUGsP3UPWmJ34,447
|
|
82
|
-
autobyteus/agent/streaming/agent_event_stream.py,sha256=xT1TyjWhn2At7yWbPJRA_kuu1HawHR3RoF6Lzs7rJ9M,10423
|
|
83
|
-
autobyteus/agent/streaming/queue_streamer.py,sha256=lTMyFwuf_NBJL6hrUIoz5-pqWSlM7fgz1xcVB73y1bk,2354
|
|
84
|
-
autobyteus/agent/streaming/stream_event_payloads.py,sha256=HQpsYtczNRUHVcyrZPd8LhqrHVuYoL76mOiy_Lr9mGo,9492
|
|
85
|
-
autobyteus/agent/streaming/stream_events.py,sha256=CZiSzn2YUPJZm0Bw0RH3mDEi8OM72n7P70cShz93cd8,6092
|
|
86
|
-
autobyteus/agent/system_prompt_processor/__init__.py,sha256=5CuF47Y6DKwOWNBQQ-WRQpIxH6Iww-1V0KPok3GCGq0,446
|
|
87
|
-
autobyteus/agent/system_prompt_processor/base_processor.py,sha256=1j-__ZFVKEfWgy7MsaxCUJHR9rkqpbZehnacE-WJ2UU,2170
|
|
88
|
-
autobyteus/agent/system_prompt_processor/processor_definition.py,sha256=r2ry7igUxaVrpAVmzAtR-O1ssFIhQEry-2PBs6YIZog,1767
|
|
89
|
-
autobyteus/agent/system_prompt_processor/processor_meta.py,sha256=aQLo0WE58HVQf4lkDxej2Lz4XFLWddUd24ZPWscnsyo,2356
|
|
90
|
-
autobyteus/agent/system_prompt_processor/processor_registry.py,sha256=ErRcf5LoxmvqNe3jATCFZyaQdtEuLEErIyfsuzwJ2sA,4639
|
|
91
|
-
autobyteus/agent/system_prompt_processor/tool_manifest_injector_processor.py,sha256=z3y17ELrjH1lo9-lc_Ptna4E1Y0SU5LXbsiemwkmyzA,4736
|
|
92
|
-
autobyteus/agent/tool_execution_result_processor/__init__.py,sha256=GKiNSMvVvwuBce0z1wEUaf48NOzOqugzvB5Utxt8w7w,286
|
|
93
|
-
autobyteus/agent/tool_execution_result_processor/base_processor.py,sha256=ivbHPOk-Da0M1FbGdtnN_OWZoRBTR9GYTdFNDLW9wN0,1999
|
|
94
|
-
autobyteus/agent/tool_execution_result_processor/processor_definition.py,sha256=Zr5a-DwKNdYuSO-UAD2R6Rg686YQAin5FhA6pWnxUVQ,1555
|
|
95
|
-
autobyteus/agent/tool_execution_result_processor/processor_meta.py,sha256=uUSvKeVVg6lq8aTCTvkKQjWlEOB2l0cn4FheC4s2hp8,1772
|
|
96
|
-
autobyteus/agent/tool_execution_result_processor/processor_registry.py,sha256=klCuVvgPIERqhPlIjvCrPnPGTNAHKsp8wS6Zw5jOk_o,3545
|
|
97
|
-
autobyteus/agent/utils/__init__.py,sha256=vau-Zjww0qxPyo9SetL7aLUEw-99PX8Nv8TEDngUlKs,210
|
|
98
|
-
autobyteus/agent/utils/wait_for_idle.py,sha256=S0jQ9-GyfXymTkv_VTG9tVmMQXSsLAU4hsfuAxspTp4,2464
|
|
99
|
-
autobyteus/agent/workspace/__init__.py,sha256=7a16HpWxic9zxxsmZeICnBGHK_Z2K9yJUv4z9YELKfw,277
|
|
100
|
-
autobyteus/agent/workspace/base_workspace.py,sha256=_-e88pRYrqpSbOBRj2V-zCubzmwiluI9KFXG2hadNJA,3569
|
|
101
|
-
autobyteus/agent/workspace/workspace_config.py,sha256=UfDpOkCH5B7ddt227zoQdmq8bCvI0wTL9vPAB6tOH24,5571
|
|
102
|
-
autobyteus/agent/workspace/workspace_definition.py,sha256=O8xKLkilE-C9D8DJ56ymfkTd4-5PtSD5pmm5rMocjlo,1476
|
|
103
|
-
autobyteus/agent/workspace/workspace_meta.py,sha256=xuw1-lYQiK5YyyDDc_5uT3uOGL0FfwLC8zCQiSyyQro,1680
|
|
104
|
-
autobyteus/agent/workspace/workspace_registry.py,sha256=A_wADwvZOm1XutBgkn_-FBkqb4tS1fRtALrKe2XRDhw,3182
|
|
105
|
-
autobyteus/agent_team/__init__.py,sha256=JzL7W4KLKQdFpV3WLAZJp0dM5DQWgD3xAqLr-iRoEas,53
|
|
106
|
-
autobyteus/agent_team/agent_team.py,sha256=M3GNiBgCTiYbbaGB4VquRHhPoLN8D9Hladv6hLJ_IrA,3722
|
|
107
|
-
autobyteus/agent_team/agent_team_builder.py,sha256=E4zDq9ZozHVwcm_ZXZQY0F5GcfXI9sMVrd0CL5RdQj0,9275
|
|
108
|
-
autobyteus/agent_team/base_agent_team.py,sha256=AtTCt0upZjbV5Jj-2wFI54lzUsYHkstErttIZXQOJL0,3199
|
|
109
|
-
autobyteus/agent_team/exceptions.py,sha256=24kOHkJoyW1AKF7KQPuy8HIEpqzcYm3N_kl7W5CluSc,389
|
|
110
|
-
autobyteus/agent_team/bootstrap_steps/__init__.py,sha256=Gw7ohC8lTB1h2IMKZkxn2Sp7eEjmr_BC0kwpIjn-xKg,1398
|
|
111
|
-
autobyteus/agent_team/bootstrap_steps/agent_configuration_preparation_step.py,sha256=eWXnqsJWwFTCkgr-yjoGszldNH1PWs9U4OkNkFafb-A,4471
|
|
112
|
-
autobyteus/agent_team/bootstrap_steps/agent_team_bootstrapper.py,sha256=gwrG-iRr4-fw5gMnw69V39s7eLzIsIMY-LGDKyzHBpE,3093
|
|
113
|
-
autobyteus/agent_team/bootstrap_steps/agent_team_runtime_queue_initialization_step.py,sha256=YWg297DapsF_6cjuu8DFooBWTiOvU-N-RxK1MGPemwY,1370
|
|
114
|
-
autobyteus/agent_team/bootstrap_steps/base_agent_team_bootstrap_step.py,sha256=gRkmv8XwghAbWAS-jMKgCpaky0VPGyWi-QFR9uYDnBA,899
|
|
115
|
-
autobyteus/agent_team/bootstrap_steps/coordinator_initialization_step.py,sha256=lWiGMC7XOsDEZ0W_qo2GFtuKDl7ZVKGOfS3ENsGp1Zw,1913
|
|
116
|
-
autobyteus/agent_team/bootstrap_steps/coordinator_prompt_preparation_step.py,sha256=wjzlo_UpZDFK5WNV-HFtFu-uu_IvxdwcAGmFxlzetQI,4561
|
|
117
|
-
autobyteus/agent_team/bootstrap_steps/task_notifier_initialization_step.py,sha256=1NL4GSGHLrcJM3XNUg4adMP1H06wd2DBXVGFCQRNAiw,2622
|
|
118
|
-
autobyteus/agent_team/bootstrap_steps/team_context_initialization_step.py,sha256=KeCfdqiNXznQi_MX52p5rVrydDsS3WdIleyd6AU5Qzc,2419
|
|
119
|
-
autobyteus/agent_team/context/__init__.py,sha256=drrtG4m5HFNxJgtpucBmTA81TlbQaSgNXww38ChgwzE,667
|
|
120
|
-
autobyteus/agent_team/context/agent_team_config.py,sha256=kA7BTHiPeM9iyN1Gg6acZP9WBhb7VHOvBnaCDA8juaY,1589
|
|
121
|
-
autobyteus/agent_team/context/agent_team_context.py,sha256=_QC-JyvH6Ld2Ysm-EubxbjqzJ1LLvrUkNAfUWKnulmo,2682
|
|
122
|
-
autobyteus/agent_team/context/agent_team_runtime_state.py,sha256=3G4YODdTkJo1-1SfKNP1k-0EIvD5irG4rgwWc-dX2vg,2808
|
|
123
|
-
autobyteus/agent_team/context/team_manager.py,sha256=m5_cjIwznicSHTq0HHquZrsn14DmvrTR94xzuaaC7NM,7287
|
|
124
|
-
autobyteus/agent_team/context/team_node_config.py,sha256=V_Ng_YoOcAXkujW6Y1STg39YKzcmMrZvgAgBDORO38Y,3186
|
|
125
|
-
autobyteus/agent_team/events/__init__.py,sha256=H2JMNRxeEmzIpbUFWmNR2IaIPXgcz301UIEQ8Yn0AuY,971
|
|
126
|
-
autobyteus/agent_team/events/agent_team_event_dispatcher.py,sha256=DlNOsYxGxsR5iOjWyf8p1dAyUitnbUq0_RQtelCX06s,1738
|
|
127
|
-
autobyteus/agent_team/events/agent_team_events.py,sha256=zql7P5-hpl2bkrY3HuQy5tHKHnDjs5XxjG06_KiD8Ys,1764
|
|
128
|
-
autobyteus/agent_team/events/agent_team_input_event_queue_manager.py,sha256=ZMz9eudtXR8OXcWwPmJs9oN2r4Ycf4VdgR32Yaf0-S4,953
|
|
129
|
-
autobyteus/agent_team/factory/__init__.py,sha256=52XlrxJp_1jb9VT9GS2IT0w4cI-ojlsQtGHm3unidCs,239
|
|
130
|
-
autobyteus/agent_team/factory/agent_team_factory.py,sha256=fsm7kz7rLS26X6NCh6vhfKf6_Px2wceDG2Wkx--6QE8,4704
|
|
131
|
-
autobyteus/agent_team/handlers/__init__.py,sha256=05n2SOnVOUWip4cZrpuN2q-q6AW2d2weribC9e99Gfg,1005
|
|
132
|
-
autobyteus/agent_team/handlers/agent_team_event_handler_registry.py,sha256=vTyhRwK6nW_92U76tc3-6wD2Yj4hLGEFRR6uiV2k93Q,1233
|
|
133
|
-
autobyteus/agent_team/handlers/base_agent_team_event_handler.py,sha256=C79gvVxSwE06D6qVJ1bnCxmT-lbAF4GrtiyIUFS0xOs,593
|
|
134
|
-
autobyteus/agent_team/handlers/inter_agent_message_request_event_handler.py,sha256=OGHJ6WxdNjLfggZDO6P8rr6xyfzJyLwKjOnv9A1q3FU,3335
|
|
135
|
-
autobyteus/agent_team/handlers/lifecycle_agent_team_event_handler.py,sha256=4-YR2GZkmJe_fZPYucvgpHEL-M5-XfBPDz8upvONeuI,1357
|
|
136
|
-
autobyteus/agent_team/handlers/process_user_message_event_handler.py,sha256=ig7ij2i5xwRV1OtQ3tJBiC7TBFasyd4NxVjX2ca-HJE,2573
|
|
137
|
-
autobyteus/agent_team/handlers/tool_approval_team_event_handler.py,sha256=PH6aTO_8KUtCHNKftiidN2yh-ln3d2S1A7rfCR4PXUY,2272
|
|
138
|
-
autobyteus/agent_team/phases/__init__.py,sha256=qxOrh0O1iWoluRQCkKaiBISEqW7D7vleYlueEje4QYs,419
|
|
139
|
-
autobyteus/agent_team/phases/agent_team_operational_phase.py,sha256=QsSNvCntqUIsJ0_f_7Tk-aMn5yVOo_W-CLWfvtAjQIU,675
|
|
140
|
-
autobyteus/agent_team/phases/agent_team_phase_manager.py,sha256=3NiHiSTowNcCQowWBZMTXsZy3dOzLaAKAa90E7XDe9M,2365
|
|
141
|
-
autobyteus/agent_team/runtime/__init__.py,sha256=6pQrzl2DXfnp3dn2fRSiMAfM3VSmKddJcYy5L1yWaW8,465
|
|
142
|
-
autobyteus/agent_team/runtime/agent_team_runtime.py,sha256=m-YqgAUJx3kvfHtwC9zY3eWZmB0Snkjk0Emo84Cp44M,3909
|
|
143
|
-
autobyteus/agent_team/runtime/agent_team_worker.py,sha256=Kha4l8Q7kxc3Kd3EWAC-e4yHYhUZwr05zHtcoqGL8ik,5595
|
|
144
|
-
autobyteus/agent_team/shutdown_steps/__init__.py,sha256=wfAEB3_o3Imk6Y9rPBUascqP_3T4cFx4-BBp4zcsXX8,812
|
|
145
|
-
autobyteus/agent_team/shutdown_steps/agent_team_shutdown_orchestrator.py,sha256=VNtKf3lmYRhO5mcsdfBKnrDhw3ucTB7yY8C8tO0Te1w,1561
|
|
146
|
-
autobyteus/agent_team/shutdown_steps/agent_team_shutdown_step.py,sha256=iACb44vQVOka99NZnZdgnFdAsXHL08I5R6hsAUcgqyI,1845
|
|
147
|
-
autobyteus/agent_team/shutdown_steps/base_agent_team_shutdown_step.py,sha256=CVzU4mMjU4FagEk_Q0ncENMCGzGSJ7I6YF_2YqJqsEc,651
|
|
148
|
-
autobyteus/agent_team/shutdown_steps/bridge_cleanup_step.py,sha256=uEJt4RuNIt7WiO25Wnowtg_TqOgd9l_fja88bXXLzIo,1165
|
|
149
|
-
autobyteus/agent_team/shutdown_steps/sub_team_shutdown_step.py,sha256=suPLoXXtPJx6FfXp_RH8Eev5d4Xd2iY_hMRM6wICcAo,1771
|
|
150
|
-
autobyteus/agent_team/streaming/__init__.py,sha256=wE3dZJ8b73h979nKPietRQXmImwvNrb2oyFossdPF00,891
|
|
151
|
-
autobyteus/agent_team/streaming/agent_event_bridge.py,sha256=hGJvLUK39-bBYxpq7pvpKs7Y68c07xtG4d4Ebp5GwtI,2130
|
|
152
|
-
autobyteus/agent_team/streaming/agent_event_multiplexer.py,sha256=Z3CMxsNaPXWVtaK5D8qSZiDQC_VokJQoHlbbfPc0Xng,3647
|
|
153
|
-
autobyteus/agent_team/streaming/agent_team_event_notifier.py,sha256=JFuXXCa5yCM0syyNFE7pZvvl5SD_u-1RJr33ytiFdVY,3519
|
|
154
|
-
autobyteus/agent_team/streaming/agent_team_event_stream.py,sha256=AZmly_WQWb6YpdS8IXmXjoOZjIck85LWFt4OkfW_Aa0,1493
|
|
155
|
-
autobyteus/agent_team/streaming/agent_team_stream_event_payloads.py,sha256=zMGy129gnFxmjZjdFUoa0gXHOM2oqcsaVJfJCoNLmkE,1689
|
|
156
|
-
autobyteus/agent_team/streaming/agent_team_stream_events.py,sha256=Gwzjnf6fRSlsGGzo_lJwWGCwAZpzJB2bxePpfBYTXU4,2668
|
|
157
|
-
autobyteus/agent_team/streaming/team_event_bridge.py,sha256=C6VVJM4xJnOl37AY60qGT9k7VMVj63bkXOxYWICBgAs,2347
|
|
158
|
-
autobyteus/agent_team/task_notification/__init__.py,sha256=USOq10z0IMfwIz2cNiq6_0qbvRqsLa4mvezWURiTMMo,531
|
|
159
|
-
autobyteus/agent_team/task_notification/activation_policy.py,sha256=jWN0BCXjiE9IZwHPc9kLFWKKIlQS6UwyRhEzZH0lRng,2821
|
|
160
|
-
autobyteus/agent_team/task_notification/system_event_driven_agent_task_notifier.py,sha256=taehm0OEgsO9AJxIs_M1gj4FPTxQV4eBy1wL2akoZX4,4777
|
|
161
|
-
autobyteus/agent_team/task_notification/task_activator.py,sha256=_7oijK61gupUCm_Z2oxQF2vojXmYlTuram8XvuJaT7Q,2728
|
|
162
|
-
autobyteus/agent_team/task_notification/task_notification_mode.py,sha256=YxejMhZpGOMX6CGUoJU9csI-Fd_O3LfmcEZBnriv5XM,845
|
|
163
|
-
autobyteus/agent_team/utils/__init__.py,sha256=Sa5TBbhq9N41ONlMhoLlCrtyxSiDjoR2Zu5C21OAig0,218
|
|
164
|
-
autobyteus/agent_team/utils/wait_for_idle.py,sha256=wrfo_t1T6DSXeHU-SWwsuxPJToNsr0Ol1TwqpoRxZ8I,1931
|
|
165
|
-
autobyteus/cli/__init__.py,sha256=FpcugZofPrQzll16-OFcDypbven0J2mBPxNVgQ3eAxY,266
|
|
166
|
-
autobyteus/cli/agent_cli.py,sha256=Ua6MnuVHmNgelnZQ8B8ZMFk2nyN-VNPijNzyucVVPis,4818
|
|
167
|
-
autobyteus/cli/cli_display.py,sha256=F0mBDnaqmQJCfhqO-ccVxd_UGklCRuNoGZ4aa8ApMKs,9493
|
|
168
|
-
autobyteus/cli/agent_team_tui/__init__.py,sha256=FP2rpjO1T5jdVYkT7Yvk-iDcxckOHy3JxRg-EEeKCfE,123
|
|
169
|
-
autobyteus/cli/agent_team_tui/app.py,sha256=8xc52eVjlXAAnthS7ISWDK0OxjZ8PQ7-5FwmiJjd2hU,9150
|
|
170
|
-
autobyteus/cli/agent_team_tui/state.py,sha256=hoOAwK_xUbghB4P3yZZZ3vQKs0JupXE2_zv_PeZB3G0,9378
|
|
171
|
-
autobyteus/cli/agent_team_tui/widgets/__init__.py,sha256=gWVULR5J-2Ra3m2hvUhO1jF1IX9uqk0bQhWL0t25Z4E,173
|
|
172
|
-
autobyteus/cli/agent_team_tui/widgets/agent_list_sidebar.py,sha256=1ynBsWEqaYBitHrbvgR-eRLGAULA2ZUM-V_hRHWAgX8,6557
|
|
173
|
-
autobyteus/cli/agent_team_tui/widgets/focus_pane.py,sha256=wS6yq9vUU4fTySb00k6zyzqImggD-5Q8DtOLJZCxaE0,16142
|
|
174
|
-
autobyteus/cli/agent_team_tui/widgets/logo.py,sha256=okzS4mG8Z1-dZDIGQ5F8XP9y6WwwRDVHmMmPz3oN9TM,780
|
|
175
|
-
autobyteus/cli/agent_team_tui/widgets/renderables.py,sha256=gaMrkLMcrohuOH2KjPvSmdbxHgljhCgl6m9OEfw2nDU,3393
|
|
176
|
-
autobyteus/cli/agent_team_tui/widgets/shared.py,sha256=mUnJVWaM72u1U8nYfSgsaOTfKFOdGcHqIpLgb837BpU,1976
|
|
177
|
-
autobyteus/cli/agent_team_tui/widgets/status_bar.py,sha256=WE8Z6gjAkAdrK5Yufl7qqIitIL6TX0lOCQiTa9FZkt4,457
|
|
178
|
-
autobyteus/cli/agent_team_tui/widgets/task_plan_panel.py,sha256=FmJXBVuTFJsuCQCcyKUOj15_Um5E6WgGuyPkHQzafQQ,3451
|
|
179
|
-
autobyteus/cli/workflow_tui/__init__.py,sha256=xbWMXwK_a-IX-dM3m1TJkm9SHT--bqiHVgkS5XCA6vM,127
|
|
180
|
-
autobyteus/cli/workflow_tui/app.py,sha256=DZPHPIrjz5-YBxwybDylokemtzqO9Ac49hdhkBdXCwQ,9681
|
|
181
|
-
autobyteus/cli/workflow_tui/state.py,sha256=JA3MOGpV25yin6dMO8AWRLSOgCEcd5oKtfNROU8RavM,9477
|
|
182
|
-
autobyteus/cli/workflow_tui/widgets/__init__.py,sha256=CsygQhYM_MoTURsJ9PpkZi_yXy-9g7Z8WQdNZ3BfD9E,169
|
|
183
|
-
autobyteus/cli/workflow_tui/widgets/agent_list_sidebar.py,sha256=qL3jZGsQuc-76fMESpsixD32dwOt5RH0Z0mS0QNECps,6626
|
|
184
|
-
autobyteus/cli/workflow_tui/widgets/focus_pane.py,sha256=ynqALGeViHqF2ZadidzStf1jnixdyqRAEw7A3YrQTbg,16756
|
|
185
|
-
autobyteus/cli/workflow_tui/widgets/logo.py,sha256=TvfxdBvDXknf7-2vD3xkHuZkiymhMDFaJaCLl2y7msI,906
|
|
186
|
-
autobyteus/cli/workflow_tui/widgets/renderables.py,sha256=hkRTjwz5DPSqaO8_8Zuvt1XxxAePZ9vGp582b3UMF18,3030
|
|
187
|
-
autobyteus/cli/workflow_tui/widgets/shared.py,sha256=vXUrJ0vU7gMLzi7j8mAdhSMgPMno1LanhHxkeyMOQtA,1732
|
|
188
|
-
autobyteus/cli/workflow_tui/widgets/status_bar.py,sha256=PLkw2IxJ4T2cDt-3HKRhnIme4luYIvXr1HpBVmfJH1c,455
|
|
189
|
-
autobyteus/clients/__init__.py,sha256=19KBdiG_V9DU0R1GsAPc4iSKk4HQhegI9PpJF_O_j44,331
|
|
190
|
-
autobyteus/clients/autobyteus_client.py,sha256=NyM6-yCKigs_LIoIVNUEec7FS12TpdEyncdg0lDWHHE,12563
|
|
191
|
-
autobyteus/clients/cert_utils.py,sha256=SL3CF9aoRzVScElXn258kh1YnxqE2Av7DRmu0QHUYMw,3808
|
|
192
|
-
autobyteus/clients/certificates/cert.pem,sha256=qb4Te3q7-b-_09GvHtX5dV--5_Vo_Dn_M6nbtCjrtoQ,2098
|
|
193
|
-
autobyteus/events/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
194
|
-
autobyteus/events/event_emitter.py,sha256=WKKwISFo2yDx0OpLjGFtXEl3DVV1siB0lXdndIAHhBg,2522
|
|
195
|
-
autobyteus/events/event_manager.py,sha256=c5RMlCtKzkHgQZkePBvqxPAxxOu-NapUrl8c2oRDkT8,5841
|
|
196
|
-
autobyteus/events/event_types.py,sha256=Q_7fksiJMY7RzT85eVmRfWDd34_9RPhnJ5xzS7qMqoU,3081
|
|
197
|
-
autobyteus/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
198
|
-
autobyteus/llm/autobyteus_provider.py,sha256=TuEXpiTkCN6V-hBc4ss8vR-4lA83VEmdlFDDmcooCzw,8387
|
|
199
|
-
autobyteus/llm/base_llm.py,sha256=OCiInGSNApZ-bcrdEMt3siOFwNkB9UwFGfqVNYImzEo,8036
|
|
200
|
-
autobyteus/llm/llm_factory.py,sha256=9UyZ9KqWNH-fVRaicIabicbxMHlQdWM59nrXyy8Y4hc,20081
|
|
201
|
-
autobyteus/llm/lmstudio_provider.py,sha256=RkM_drORSZ2zcSxN2Th5Upiva2oesIPw-6viqe2w9dY,4315
|
|
202
|
-
autobyteus/llm/models.py,sha256=ownBklNZrtJ_HWeMexa2T3s9TjWG0xggOt7wYrRs2l4,6963
|
|
203
|
-
autobyteus/llm/ollama_provider.py,sha256=CfcgC-DEWULjTwJiWazB5IXjErEyy1zZ41glrWhpj0g,4427
|
|
204
|
-
autobyteus/llm/ollama_provider_resolver.py,sha256=tH7kg2LbVjVVi3Y7veKXY0k2yEIqqOpfPUBAQvDwCYE,1889
|
|
205
|
-
autobyteus/llm/providers.py,sha256=q9olzK1SRlsgJVbkwQH9jqVDCu3wK1-Ta6aNm4Zg8pM,392
|
|
206
|
-
autobyteus/llm/runtimes.py,sha256=MzFNo3R1U3uWYAkuk-uuaba01Y0dDKQgVY_ElH_0dxU,315
|
|
207
|
-
autobyteus/llm/user_message.py,sha256=2hmICY_W7lwjYco3qT4zY1ELsBkpyxR2CjOgh33NMq0,3546
|
|
208
|
-
autobyteus/llm/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
209
|
-
autobyteus/llm/api/autobyteus_llm.py,sha256=xwby9QELHFgrg1GoDSd66huY7kJ280dbxSdT2OZAGyQ,4919
|
|
210
|
-
autobyteus/llm/api/bedrock_llm.py,sha256=8B7dNSkQPRfRi8GAPEB31A2pZLZfTIQUtxXjQ_E4rAE,3768
|
|
211
|
-
autobyteus/llm/api/claude_llm.py,sha256=quPfUmg3oASRKVer01_tIcBxrqNP-xIenCU-tWbfTlU,5286
|
|
212
|
-
autobyteus/llm/api/deepseek_llm.py,sha256=TEWtXAqM4OuKH1etj5kknzkbPsRGvEpWzTq_CoAU6po,894
|
|
213
|
-
autobyteus/llm/api/gemini_llm.py,sha256=273psG-IlDR4dAbzTjUDmcjbrRC8Fhc6BCHn19sVKRQ,5540
|
|
214
|
-
autobyteus/llm/api/grok_llm.py,sha256=oZIkJrRhbvcKSrho5hLWqqRxO5SUfbwutKW1g-mPQC0,875
|
|
215
|
-
autobyteus/llm/api/groq_llm.py,sha256=btkyeVPjke-fWxuC42r7p8DXYuAVJy3gfYpnTLmZoHU,3485
|
|
216
|
-
autobyteus/llm/api/kimi_llm.py,sha256=oUgmP_D0ppr0zKhgRVyjxRMP8cEMGXB2DFUgXYqRlCg,873
|
|
217
|
-
autobyteus/llm/api/lmstudio_llm.py,sha256=7A7BokUKj-kioTaSuEw_MKofd7d5BnmxK6pyTFGOgSk,1281
|
|
218
|
-
autobyteus/llm/api/mistral_llm.py,sha256=ijPrtCir2vW3EPxsLIdOCjB_56_r7yf28ZKMc7GDxF8,7036
|
|
219
|
-
autobyteus/llm/api/nvidia_llm.py,sha256=zHRuhJjS4KedRAb1hpb9jxO3Pnw0Eu8Dc9mKrotMsOE,3990
|
|
220
|
-
autobyteus/llm/api/ollama_llm.py,sha256=PmrgxOS-RU59DxUAw4aAvKeJHghpWcb3PKgsZk-wZTo,6971
|
|
221
|
-
autobyteus/llm/api/openai_compatible_llm.py,sha256=TFEem7RLpqtB9-ExHYBDk9dC0iJe2fAeLLJRE6sGciM,9108
|
|
222
|
-
autobyteus/llm/api/openai_llm.py,sha256=414fWDFvTm7IkG3STfYCWT4mz1FQwEGnD4N5MpTyf6M,905
|
|
223
|
-
autobyteus/llm/api/qwen_llm.py,sha256=wN4fHEfjpuece0xd19elwknBeRKJnhj--btNQl3_e_o,877
|
|
224
|
-
autobyteus/llm/api/zhipu_llm.py,sha256=RrwWaSTvmQ1dF-fMK0QAxrlbB4PmLlcd9_1zXL67D4I,892
|
|
225
|
-
autobyteus/llm/extensions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
226
|
-
autobyteus/llm/extensions/base_extension.py,sha256=ZqwmwNKBURFseAeRec53tpC4v1mnRTubdifk575eqlo,1273
|
|
227
|
-
autobyteus/llm/extensions/extension_registry.py,sha256=b4b3U5cQB9kZpJpqmT_e1lviLzjGQBsp7gJuYppjpjU,1254
|
|
228
|
-
autobyteus/llm/extensions/token_usage_tracking_extension.py,sha256=ZBdMoRXwura4v49suQiedDk-wQDKqxdW2tXZmxBQYu4,3793
|
|
229
|
-
autobyteus/llm/token_counter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
230
|
-
autobyteus/llm/token_counter/base_token_counter.py,sha256=NSY6rdSmBNn9MEAY4vSdnuB2BRRRwoP3rDp9ulBTAWA,2019
|
|
231
|
-
autobyteus/llm/token_counter/claude_token_counter.py,sha256=-gIB8uafY3fVy5Fefk0NTVH2NAFy0gfT8znHlpLQSwo,2620
|
|
232
|
-
autobyteus/llm/token_counter/deepseek_token_counter.py,sha256=YWCng71H6h5ZQX0DrjqfMua-SeCH1ATizWLvxxr591s,859
|
|
233
|
-
autobyteus/llm/token_counter/kimi_token_counter.py,sha256=KuzgcbSWiqybCKHaukd-n917zEgUFebGXMAxlkZxue8,854
|
|
234
|
-
autobyteus/llm/token_counter/mistral_token_counter.py,sha256=YAUPqksnonTQRd1C7NjjFUPsjEDq_AKWxTc5GNTVGqU,4760
|
|
235
|
-
autobyteus/llm/token_counter/openai_token_counter.py,sha256=hGpKSo52NjtLKU8ZMHr76243wglFkfM9-ycSXJW-cwE,2811
|
|
236
|
-
autobyteus/llm/token_counter/token_counter_factory.py,sha256=PeH_uPHWCWPrfrQYSShzDQsygw0D5XdurzPzcKBoRU4,2363
|
|
237
|
-
autobyteus/llm/token_counter/zhipu_token_counter.py,sha256=5vU__vhclgqgPBg1jq8Cy4e22ltzG4CCm-xWrUiW6qk,846
|
|
238
|
-
autobyteus/llm/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
239
|
-
autobyteus/llm/utils/llm_config.py,sha256=yzRlUmeyGkKvb-jfywGaR3tWGeQ2l6f8GZ8KdFzHNDk,9911
|
|
240
|
-
autobyteus/llm/utils/media_payload_formatter.py,sha256=S-pZxIlGHuKzzrHbqv7SUx99BfYlZ7dVUGcUrGDShF0,3676
|
|
241
|
-
autobyteus/llm/utils/messages.py,sha256=YH9diNwRu-vua72HDZJnwsfpDNK6i69Uw805nkjv0zY,1740
|
|
242
|
-
autobyteus/llm/utils/rate_limiter.py,sha256=VxGw3AImu0V6BDRiL3ICsLQ8iMT3zszGrAeOKaazbn0,1295
|
|
243
|
-
autobyteus/llm/utils/response_types.py,sha256=UWSDvxhaot2ad4c6NSM-A46J8ruGs1qMShWpYBczMB0,1004
|
|
244
|
-
autobyteus/llm/utils/token_pricing_config.py,sha256=6oRkG6R-BrP54sTI5Btjpy4s2c7bSAP7uZpzXldxx3E,4509
|
|
245
|
-
autobyteus/llm/utils/token_usage.py,sha256=C8YJH_-sYKJHVcE47hwwk-p0VTAFF0ezFGjSbc0mbzI,601
|
|
246
|
-
autobyteus/llm/utils/token_usage_tracker.py,sha256=RC4zL5k343-wLm0jXc-rwAOMhpxs_1klnrh-xi2J7W8,4220
|
|
247
|
-
autobyteus/multimedia/__init__.py,sha256=8sssScdnrek2-1-s7wStlOc37ZilLTf0cJzMqVzW4Zw,589
|
|
248
|
-
autobyteus/multimedia/providers.py,sha256=odBXtoEXYtFULX_lnBR9rGEcWOAzMbUD0qF2Fr_Y1Nc,133
|
|
249
|
-
autobyteus/multimedia/runtimes.py,sha256=mgmA06Ng7Gh6UW6YNi0O5CmwV6oDw3kX2qxLssUqG0o,180
|
|
250
|
-
autobyteus/multimedia/audio/__init__.py,sha256=RsUo63rEz8_HLJ7RonaSrYkoDKwhBmHomeseTnBX-Hg,287
|
|
251
|
-
autobyteus/multimedia/audio/audio_client_factory.py,sha256=UAE0cnFXyYB9YePMTs44jw3bws_2BdMAYzFNDbhV6cg,7729
|
|
252
|
-
autobyteus/multimedia/audio/audio_model.py,sha256=tiFRspsfrlOifjPH7wJDNxT7Rl695RkjD5VLNiJvI0Q,4069
|
|
253
|
-
autobyteus/multimedia/audio/autobyteus_audio_provider.py,sha256=p4vfp8orsKiYGtrtNYfXyJlP95b-FKWRxiACug0GfuI,4934
|
|
254
|
-
autobyteus/multimedia/audio/base_audio_client.py,sha256=zl12JZrvDUmKEnNhEtdY7jXK0TYmil9rUgIkU_VWbL0,1498
|
|
255
|
-
autobyteus/multimedia/audio/api/__init__.py,sha256=M6A3fmXx5nn3R_0wozcph4ANTA25RGG4L4-a-M4OAoc,240
|
|
256
|
-
autobyteus/multimedia/audio/api/autobyteus_audio_client.py,sha256=KhhWCWSdbmYp3rVM3pASjWr4qZHD69Xi23hUZ1mLCgU,2641
|
|
257
|
-
autobyteus/multimedia/audio/api/gemini_audio_client.py,sha256=Mg9c7_7am8iuBNQQv1To37H8mY1Vc1xx5ZKtEfp5Sig,6410
|
|
258
|
-
autobyteus/multimedia/audio/api/openai_audio_client.py,sha256=wNuNBgD1CdTjs7IV-bOD6wBeqf_NYR5YO4vz_QyeVIA,4017
|
|
259
|
-
autobyteus/multimedia/image/__init__.py,sha256=YWwPtRgbTtPoZBgAmjt87P-pTREOZEpJzDbKhD9jSRg,287
|
|
260
|
-
autobyteus/multimedia/image/autobyteus_image_provider.py,sha256=mioCkUnp-ogNAt53lpdjijd5sxmvr6piCutiA3jWih0,5044
|
|
261
|
-
autobyteus/multimedia/image/base_image_client.py,sha256=sDm2n8yol590tWkujYc_FDf2cuyBNP0t4voRz9vuGr4,2819
|
|
262
|
-
autobyteus/multimedia/image/image_client_factory.py,sha256=EuRHvfydezimOOl62n1gLKtXFLaVhGZF_Ujw2NsSRFc,5639
|
|
263
|
-
autobyteus/multimedia/image/image_model.py,sha256=BxkWiQr30Fp5o6mLYMYD_6XAnElZQCU5yYe-MBN52jk,4077
|
|
264
|
-
autobyteus/multimedia/image/api/__init__.py,sha256=Vh_FC_6rxcPhJqFpAvgv3yBqHYVmxrzjyVSSrCM7rww,255
|
|
265
|
-
autobyteus/multimedia/image/api/autobyteus_image_client.py,sha256=MYkd-w9AMjNEEGiCaDepbMty1b0cBhyOFF3P2ybv4jc,4184
|
|
266
|
-
autobyteus/multimedia/image/api/gemini_image_client.py,sha256=OXYd9av43VjezuiaqSNehiA28EMlGlvGR2C4FC0tDes,6108
|
|
267
|
-
autobyteus/multimedia/image/api/openai_image_client.py,sha256=eiC2hh3y7flLQPWQQiuaesaTR-PBa9UD96go41mFEt8,6240
|
|
268
|
-
autobyteus/multimedia/utils/__init__.py,sha256=pH2c5CB2V-QXVl6SgL6N70KKH0VShByhZHS8m7L9TCg,298
|
|
269
|
-
autobyteus/multimedia/utils/api_utils.py,sha256=dbrIQzRnoz66CwaZOIG4353h5ccbTEIvUPUSRfgIWOQ,613
|
|
270
|
-
autobyteus/multimedia/utils/multimedia_config.py,sha256=1CU1G0LqURt6DOrcvj2UnPUQ0Q2Mh4vzeKJEGbHoIno,953
|
|
271
|
-
autobyteus/multimedia/utils/response_types.py,sha256=aiyGwkH4K4NryOFDM4-X4M907ZVGKtvTKMJz6QEXKTA,359
|
|
272
|
-
autobyteus/prompt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
273
|
-
autobyteus/prompt/prompt_builder.py,sha256=2hStweYFSIXN9kif86G8Fj7VdjsIVceJYiCNboauEGk,1886
|
|
274
|
-
autobyteus/prompt/prompt_template.py,sha256=taNEAUNXLt0a3WP_bNqzeNgSIIM7rgubqBBYWHRR1Kw,1539
|
|
275
|
-
autobyteus/rpc/__init__.py,sha256=c6aEkKg5EwvIBx8oR4Or2mvv5afk4vRoM3X2n7wUBi0,2429
|
|
276
|
-
autobyteus/rpc/hosting.py,sha256=VEPmD-LYKwp6jdjg7NzweCFHJWMHj2EoKjjOhQ2IwZw,11297
|
|
277
|
-
autobyteus/rpc/protocol.py,sha256=U2wgIcZ2UuaEDijsjMv1-9WaeuJy027W_hgRGOkN8TA,12653
|
|
278
|
-
autobyteus/rpc/server_main.py,sha256=PTPwGXEEyq2ezBsPqTietFLyMdOBGLiCsPUOuUdVETc,9807
|
|
279
|
-
autobyteus/rpc/transport_type.py,sha256=Su6QmHC6wo607C5ntomsk-miJ5CxJomzkrHqmSzUlLM,319
|
|
280
|
-
autobyteus/rpc/client/__init__.py,sha256=PsWBpoVsVgQPA6FI9jbmkRJS4TxlXX76N75PYrODKIY,717
|
|
281
|
-
autobyteus/rpc/client/abstract_client_connection.py,sha256=Glw9YLjThFFbaWuv0AIZJ6YFBnYFuVMCe01eAe76VvQ,4681
|
|
282
|
-
autobyteus/rpc/client/client_connection_manager.py,sha256=Pbij-1BWibBMEymPdARVMCOlwEwDLyZ51kSF-BxeNrk,7181
|
|
283
|
-
autobyteus/rpc/client/sse_client_connection.py,sha256=rTaL3NssFDAvc7aGF7-rVzGRUwJQ5uwF2vPFEoRpIJg,17683
|
|
284
|
-
autobyteus/rpc/client/stdio_client_connection.py,sha256=iYZaEyrAGFUty9R6ejrW6q_t9KFLKfMD5jpgZwe3d8Y,14450
|
|
285
|
-
autobyteus/rpc/config/__init__.py,sha256=N-AfTHyplx-vLZ-5jrTD7zcODFUt1CVuVTfsrxlMtkk,362
|
|
286
|
-
autobyteus/rpc/config/agent_server_config.py,sha256=mJfs4AuPwBNHARWrA5luXWCE3Vby3AM11y5jwU9nFnQ,7612
|
|
287
|
-
autobyteus/rpc/config/agent_server_registry.py,sha256=MNeJmV-5K5vljUHECCdPWorPF0r99li3eeT3ceG0hks,5749
|
|
288
|
-
autobyteus/rpc/server/__init__.py,sha256=dRJ4LulIrcbmaFptxAG1UP1F5fi3nmpHO2IuXeD96J8,806
|
|
289
|
-
autobyteus/rpc/server/agent_server_endpoint.py,sha256=LV2EGpL56ZjOSvnaJB7l8uQS_WvUlbvvpLztVIPFWcU,10409
|
|
290
|
-
autobyteus/rpc/server/base_method_handler.py,sha256=6sKWucR1vUYeritjJPHIX_sCQOD2cSm_QZXDXp0G7kg,1381
|
|
291
|
-
autobyteus/rpc/server/method_handlers.py,sha256=Zqrr1R3yu_hVD0qCOPpxXm4ujkvdds9wCCneIeT3gU8,14702
|
|
292
|
-
autobyteus/rpc/server/sse_server_handler.py,sha256=3F1LNLw6fXcB08hmWOUhGZROYhpPdk8xwz2TakiR-2M,16273
|
|
293
|
-
autobyteus/rpc/server/stdio_server_handler.py,sha256=pSAvVtxyo0Hytzld7WINeKHvGBqEjp0Bad-xkY2Rul4,7398
|
|
294
|
-
autobyteus/task_management/__init__.py,sha256=A6KzMAVVpcz7N7CYDNOwILsmz3yvgfcHMLLDGqRpur4,2052
|
|
295
|
-
autobyteus/task_management/base_task_plan.py,sha256=3G-IT9KeFYpJA1jiePRKUNaCze9QyB9I1lJ1mDnLezI,2606
|
|
296
|
-
autobyteus/task_management/deliverable.py,sha256=cXuWD7UhP_oElhUzLGGdCwE8Fn4IokURuanz4zg35Ps,490
|
|
297
|
-
autobyteus/task_management/events.py,sha256=1i2G2H5KC9Y0ibz5OgQIgIguVqcdILfXb8bc9QFdHvk,821
|
|
298
|
-
autobyteus/task_management/in_memory_task_plan.py,sha256=roKwt35JLY_1ETp3rglDZLMXNFWpem_Yje4sWr8YZlA,6107
|
|
299
|
-
autobyteus/task_management/task.py,sha256=nsxvcYavYG7I-AQo4JBHV7n6iYtZJuBJ3cOJXF4vtEs,2598
|
|
300
|
-
autobyteus/task_management/todo.py,sha256=9GOdu766TTae6hrJkizPMGYyJPOIRq_Il20kgeZFug8,1265
|
|
301
|
-
autobyteus/task_management/todo_list.py,sha256=07ZFfi12vy7ZsruG9UVx0cAdu0nmVhz7IAyqLOMJUP0,3083
|
|
302
|
-
autobyteus/task_management/converters/__init__.py,sha256=gQ4eZqSjtzvaPQUvOSG1a6lM-UeIOHEG1aWo22tsamo,230
|
|
303
|
-
autobyteus/task_management/converters/task_plan_converter.py,sha256=Nd5xFG4Yn_OknXYR4aLXvtuVKz5kMDIm6_VqzaDq8uw,2087
|
|
304
|
-
autobyteus/task_management/deliverables/__init__.py,sha256=RYBzSxKgzPnh8uE0TA2hA_SiI3dv3_dgvME0K-5AvvI,150
|
|
305
|
-
autobyteus/task_management/deliverables/file_deliverable.py,sha256=tTdpgdAtXwkZ-US0n8ilEl6CYI8dRVXhGEdBBCTay8c,425
|
|
306
|
-
autobyteus/task_management/schemas/__init__.py,sha256=j3MZYJKMYq0xS88MkdMv8hdlzgQ1_9onLQNgVwmNX6I,644
|
|
307
|
-
autobyteus/task_management/schemas/deliverable_schema.py,sha256=8_3F93gAeTfp6NeHqhIQLWFMpVwfiDuSOk0lnHnxxFU,603
|
|
308
|
-
autobyteus/task_management/schemas/task_definition.py,sha256=ytFK2kikLnQjPgSj6X6OTethqljvTEnZ9U-tcxubZF8,2154
|
|
309
|
-
autobyteus/task_management/schemas/task_status_report.py,sha256=505LgQFHDORrWeV55swbaeKuw4DvMJx5yYeRUxx7ko8,1882
|
|
310
|
-
autobyteus/task_management/schemas/todo_definition.py,sha256=o5DKyCCVx6XqiZyKe025Ap-17X5S1uRdIq0lPXI4EuU,756
|
|
311
|
-
autobyteus/task_management/tools/__init__.py,sha256=88T-wwjQeAN5LDOegiAbc0suj1e-WZi1z78IhNnuRTE,690
|
|
312
|
-
autobyteus/task_management/tools/task_tools/__init__.py,sha256=fRLxldmTxvBBBgXCv5eNMicxjHcFxjg6Tt57OYc1E3Q,523
|
|
313
|
-
autobyteus/task_management/tools/task_tools/assign_task_to.py,sha256=LDdA3SDX3WtI4FNH9dFkgEk9H4ASHYPfg6HsvuaQaKQ,6278
|
|
314
|
-
autobyteus/task_management/tools/task_tools/create_task.py,sha256=enT0301ZYNmtarIuBvHsA7LTtoo9RB5C8qAMD4SqOBA,3263
|
|
315
|
-
autobyteus/task_management/tools/task_tools/create_tasks.py,sha256=tjeupKNhg_RNxFZ1QrOwDojFQPuHWaBs0R0owtqINP8,3090
|
|
316
|
-
autobyteus/task_management/tools/task_tools/get_my_tasks.py,sha256=6DZRY-gumQx5thCaZ5ppJ-izBV8n-K2jHNh4-wTPOFw,3314
|
|
317
|
-
autobyteus/task_management/tools/task_tools/get_task_plan_status.py,sha256=3j96d4u1oYV70XGfrTFj9ahcS9wQl9f0gG9_tMN0VzQ,2747
|
|
318
|
-
autobyteus/task_management/tools/task_tools/update_task_status.py,sha256=yo3UpPsDS4DsdEmVL3H4Jr9f24bggSKJ3CAPi_DlDkk,5913
|
|
319
|
-
autobyteus/task_management/tools/todo_tools/__init__.py,sha256=kyTQV5UfccRt3Nos-TMN42A_dbDuTESMQK1FibzoP3o,476
|
|
320
|
-
autobyteus/task_management/tools/todo_tools/add_todo.py,sha256=kJA-0xGin5j2UB1g04tGgOGKkyov4KmaXdUf4O5h6nc,3247
|
|
321
|
-
autobyteus/task_management/tools/todo_tools/create_todo_list.py,sha256=ot-WgoNWPT4lJPDOfzehr_1b4GhhuOFyuGHeL7rQEkA,3521
|
|
322
|
-
autobyteus/task_management/tools/todo_tools/get_todo_list.py,sha256=zAZcnhrgm9g-ZXn4GGBWvY_RayLmmDBB0WbDGvvhfuY,1929
|
|
323
|
-
autobyteus/task_management/tools/todo_tools/update_todo_status.py,sha256=X_i2giq6CjliZuAc5QMPambdfG9wbhZQ2zhM8Q0jK50,3727
|
|
324
|
-
autobyteus/tools/__init__.py,sha256=dJtk8S3aviwRPidGboKN2b6AMGak5w531IVRjx-UsIk,4557
|
|
325
|
-
autobyteus/tools/base_tool.py,sha256=s7wf06jqxWBX3pu18cgooxN9RQ8u6W3GCV8I5Zwi8UA,8738
|
|
326
|
-
autobyteus/tools/functional_tool.py,sha256=OvHKXRd4dGqJb0MieaJXY1PKJdOCvaec3KsM5Lz5eP4,10613
|
|
327
|
-
autobyteus/tools/pydantic_schema_converter.py,sha256=qDVCXDBUWuXxYzO0d_taFum1gd1Av1VvHCvTzTtilF0,3402
|
|
328
|
-
autobyteus/tools/search_tool.py,sha256=EJw0-VxkMKDOYRvA1q6jJXexxy4BgFoG9YuUbEn4xmU,3336
|
|
329
|
-
autobyteus/tools/timer.py,sha256=JHEvrXA9-zMtIYjSCtriF_dJR_zARI0qIVREpHZOpAo,7461
|
|
330
|
-
autobyteus/tools/tool_category.py,sha256=pSf3C4kDc5ZGRYLmlGaU0th9YgdI-3TSS_yOdqbEzLU,740
|
|
331
|
-
autobyteus/tools/tool_config.py,sha256=gnzGweccECNmCeufkzbskHeFOt3f0431DyAmMhqNVn4,3564
|
|
332
|
-
autobyteus/tools/tool_meta.py,sha256=oTWknZdssNvIp9LBUycnkGqroFfL8G4RLg-vx0RgR2w,2828
|
|
333
|
-
autobyteus/tools/tool_origin.py,sha256=X1RqyDMWg2n7v0TciJHh5eiXgDDoU86BEQL3hx975jk,269
|
|
334
|
-
autobyteus/tools/tool_state.py,sha256=CwmEu7GTdaE72QIsdsXQu0AmTxQTp5hMncFcY58PkGo,746
|
|
335
|
-
autobyteus/tools/utils.py,sha256=PuHGlARmNx5HA2YFVF5XA36MoeAyFL6voK10S12AYS0,546
|
|
336
|
-
autobyteus/tools/bash/__init__.py,sha256=X38g3OVhlr-6aLIYfcSyh8DzqHAEh8dSzfEH1NEH7aw,99
|
|
337
|
-
autobyteus/tools/bash/bash_executor.py,sha256=fx48VsiLRtVhI_p6xcCuyoNukANOB1PrqG0sTj1jhPw,4502
|
|
338
|
-
autobyteus/tools/browser/__init__.py,sha256=fNt3qo9ykOIhfG7CmbelCabMydhPTWL-5timHXBa8ZI,91
|
|
339
|
-
autobyteus/tools/browser/session_aware/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
340
|
-
autobyteus/tools/browser/session_aware/browser_session_aware_navigate_to.py,sha256=GIZI6UbrqmrMAe3ZvXxjB73yM42MHsTMBO9ZjmlE5ic,3096
|
|
341
|
-
autobyteus/tools/browser/session_aware/browser_session_aware_tool.py,sha256=Jw3z_KY0h-hcheav9cWmTPoKGth69DePfBs-SshxUAQ,1525
|
|
342
|
-
autobyteus/tools/browser/session_aware/browser_session_aware_web_element_trigger.py,sha256=THHpM6LBIe5sV8U-GQzCaRUDUXmOZOQOYOVpeQqqzzM,7019
|
|
343
|
-
autobyteus/tools/browser/session_aware/browser_session_aware_webpage_reader.py,sha256=QBFvjHzHeYXLfU2UypM8JxXZLe7VMJKxE0kaPqSHGw4,3992
|
|
344
|
-
autobyteus/tools/browser/session_aware/browser_session_aware_webpage_screenshot_taker.py,sha256=O_E4r4zetVjKUHlSrPTJZTYAp-3-AnACnQrM9U7PeRw,4708
|
|
345
|
-
autobyteus/tools/browser/session_aware/shared_browser_session.py,sha256=WjdkY6vrE96hluwHQS8U0K5z3XE8QMw2-fDRv5VFhXA,326
|
|
346
|
-
autobyteus/tools/browser/session_aware/shared_browser_session_manager.py,sha256=OAFzqLHWWxtVnU-zYGYFPLwiVTzhW7C6UA3y70-lBQU,1103
|
|
347
|
-
autobyteus/tools/browser/session_aware/web_element_action.py,sha256=jPWGmqoTB7Hpk6APQOWglLUaJmf5c_nR8Hh0AbT4fkM,477
|
|
348
|
-
autobyteus/tools/browser/session_aware/factory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
349
|
-
autobyteus/tools/browser/session_aware/factory/browser_session_aware_web_element_trigger_factory.py,sha256=PsRjQMScKF3ceMEEFvlfr20OQ-sKdbQ6YWRrQffZF80,687
|
|
350
|
-
autobyteus/tools/browser/session_aware/factory/browser_session_aware_webpage_reader_factory.py,sha256=WmW9yU_KVjvDNSlxWPkdXljM9h4-zZRoZH7GP6sQndA,1335
|
|
351
|
-
autobyteus/tools/browser/session_aware/factory/browser_session_aware_webpage_screenshot_taker_factory.py,sha256=uxv7cLtlXg9Vdl82_r1K-wEHKfXzrmngGwT8rd5u4JQ,717
|
|
352
|
-
autobyteus/tools/browser/standalone/__init__.py,sha256=0J-_GM5vmp3iaHBDZXXRaj5gB3EGE0cRHJyJ3N-RDQg,324
|
|
353
|
-
autobyteus/tools/browser/standalone/navigate_to.py,sha256=V6ztflnTjQU_nRpFsukALhZgbxYH_RoySSnNCAociog,3544
|
|
354
|
-
autobyteus/tools/browser/standalone/web_page_pdf_generator.py,sha256=xs1vUAPUDrvprgDRgrB5V69xbjlwBp7Vyh8aTMpAm8k,4132
|
|
355
|
-
autobyteus/tools/browser/standalone/webpage_image_downloader.py,sha256=dgJmVDqhkZuR_ks7z2nnODKkgd2DCtb_CLfaWtv9ND8,7254
|
|
356
|
-
autobyteus/tools/browser/standalone/webpage_reader.py,sha256=TU7YvWwWGW7eVjRpTQ42uE35cFKCZ4NYjuXNRxm_yG0,4323
|
|
357
|
-
autobyteus/tools/browser/standalone/webpage_screenshot_taker.py,sha256=XnpGSy4mmFvkJysoD3Qere0oFj-6eM8mqZvpYIUMwrY,4518
|
|
358
|
-
autobyteus/tools/browser/standalone/factory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
359
|
-
autobyteus/tools/browser/standalone/factory/webpage_reader_factory.py,sha256=R9PJPf7MF3cP8q8ffMKU5-ihPJWHJkVDYXZswZNdGS0,1131
|
|
360
|
-
autobyteus/tools/browser/standalone/factory/webpage_screenshot_taker_factory.py,sha256=NMS2laBlZAJiXPPub4YRhz1pXtZkfAeMhfRcSAfqu4M,597
|
|
361
|
-
autobyteus/tools/factory/__init__.py,sha256=EQXbTH6BcqK2SM3JEq2PkLwzZSczExv3KDvlhWHlsGQ,275
|
|
362
|
-
autobyteus/tools/factory/tool_factory.py,sha256=-gUhcBwiQu1FQiR0nAKJp1aUZ2sXbcz-pIn4f4heFbE,1066
|
|
363
|
-
autobyteus/tools/file/__init__.py,sha256=avoDkUIalKqh-Gk_tIkWzlLZHD4s2n0yqUWwXbxlBPw,292
|
|
364
|
-
autobyteus/tools/file/edit_file.py,sha256=NIVyLzuSiYeg45yhjofBLpUdzh5aTABMRXJyFLoBLSc,9004
|
|
365
|
-
autobyteus/tools/file/list_directory.py,sha256=I2pdBZ805VXmolGg6P7S8S867uSm5QjfT5fSEdkHyrY,6573
|
|
366
|
-
autobyteus/tools/file/read_file.py,sha256=hYyA_zP1AYts7taVjwIPa0dn3o0sgAcLDLRVlMV5ZZg,2553
|
|
367
|
-
autobyteus/tools/file/search_files.py,sha256=xrF-DA2KrTIETLhAQ55bl5aUkatIZG67NFadQqfCqtU,7381
|
|
368
|
-
autobyteus/tools/file/write_file.py,sha256=SD6DIEHVyju2VefwdHvHe6Y_foGczblqBbIasrqZAqE,2680
|
|
369
|
-
autobyteus/tools/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
370
|
-
autobyteus/tools/handlers/shell_handler.py,sha256=ClTXqFR45iyD0gcoOPpKRX5p6g_6BI4a5JOLuKuQOIA,1065
|
|
371
|
-
autobyteus/tools/mcp/__init__.py,sha256=gwT34UgJe2rU5y4bYNOLI-PyAmRQTMWKz_WC4f2LcyE,1553
|
|
372
|
-
autobyteus/tools/mcp/config_service.py,sha256=7OoqZGVxBob4IeeBjChFCpwyI9IJIxlOQDh-OjCffrY,11466
|
|
373
|
-
autobyteus/tools/mcp/factory.py,sha256=vNQ719v1hMo0s98OWKKylHhO_cynyghWRejzot4RWSE,2204
|
|
374
|
-
autobyteus/tools/mcp/schema_mapper.py,sha256=DDCPN_BJ1twe-9VIGVZaksmrQZVVNnL0uuD9-AeToTw,4413
|
|
375
|
-
autobyteus/tools/mcp/server_instance_manager.py,sha256=pGZZCH9Qp7n6jefwyDsvoo0Pxe7AWCcqIqnXgWt8hyg,6289
|
|
376
|
-
autobyteus/tools/mcp/tool.py,sha256=tELqogRQbfLdMnr4_r_1dKflUr-RRmTp0s0LvLBL43Q,3398
|
|
377
|
-
autobyteus/tools/mcp/tool_registrar.py,sha256=SoXJhs-x7JabNBgqKJE_1acC8R1fHV3fjIUELl1stV0,11325
|
|
378
|
-
autobyteus/tools/mcp/types.py,sha256=KiQUPhqzro5VW7piA-eOXkBcE0FThOUgr9Pw_7iV6Us,4171
|
|
379
|
-
autobyteus/tools/mcp/server/__init__.py,sha256=yfCMAtVlfy1x8aKEnRz9_CHnco2zVSdepwIPSjywSNw,523
|
|
380
|
-
autobyteus/tools/mcp/server/base_managed_mcp_server.py,sha256=ep-EKh4uqorrNYvv7D27Kh4fxR1f-E3hYMclFcWq0p4,5512
|
|
381
|
-
autobyteus/tools/mcp/server/http_managed_mcp_server.py,sha256=Kit7zcJxaRXfAXMxYqCKVcl4MfNsgRfXK9kjDaQFkMA,1969
|
|
382
|
-
autobyteus/tools/mcp/server/proxy.py,sha256=08F3m1I_IH2wrRXK29R_NPDB6ITHpo982Mq9G53hbUo,1660
|
|
383
|
-
autobyteus/tools/mcp/server/stdio_managed_mcp_server.py,sha256=a84GOnhWLg4vx6yo5dI8BlqUA_fdi0M5eNo2a-tGWwM,2085
|
|
384
|
-
autobyteus/tools/multimedia/__init__.py,sha256=UgucHEd7HCUvBQpyXnjk64ZOlJ2FOCBPe0Ikg8PsEDM,330
|
|
385
|
-
autobyteus/tools/multimedia/audio_tools.py,sha256=WI0rFucPREwK_gzE2f9EK3v9A4NYf-rPWkPtbjl-lsA,4316
|
|
386
|
-
autobyteus/tools/multimedia/download_media_tool.py,sha256=LNC1IRjkp2wirEZr-mSQcx_fEkXj8YTJjpECzRcyhsk,6556
|
|
387
|
-
autobyteus/tools/multimedia/image_tools.py,sha256=No4e3pawqfTta6e_Ej2sCCwH45xlWrloBjQP3gzBJww,7682
|
|
388
|
-
autobyteus/tools/multimedia/media_reader_tool.py,sha256=5MMCn9fbSsy1gVUZcvvS4QPCkzbl-hLuUDyzLQchJhM,5831
|
|
389
|
-
autobyteus/tools/operation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
390
|
-
autobyteus/tools/operation/file_operation.py,sha256=bAehQ9PfHoCDpk9Wa7vx9h3ohzVuaGzzBUogxleTwq8,2375
|
|
391
|
-
autobyteus/tools/operation/file_rename_operation.py,sha256=pExiC69HUzYbKihlVumlGHMGxmmrsKQB0JfAM5x4JH0,1710
|
|
392
|
-
autobyteus/tools/operation/operation.py,sha256=9sIZnlrPct5CwkCKuwbspVKvjF4KumP6twmXRo1blwo,1702
|
|
393
|
-
autobyteus/tools/operation/shell_operation.py,sha256=_BiGIRGWCzzwPVtbqFwXpHOvnqH68YqJujQI-gWeKx0,1860
|
|
394
|
-
autobyteus/tools/registry/__init__.py,sha256=39TSHm7mD6NXhsrczsX5Mdr32US0I6z3Bzad4hgcrrA,250
|
|
395
|
-
autobyteus/tools/registry/tool_definition.py,sha256=Hlr85O4lak47YMY7H4J-NA9iDKuF10hpS5BRCE9xDcM,9242
|
|
396
|
-
autobyteus/tools/registry/tool_registry.py,sha256=z6xm0CnlrF-e3MUQiLdivR3k2nYv9fPdbIPYmnRk76U,8644
|
|
397
|
-
autobyteus/tools/search/__init__.py,sha256=amxh1rGPc8Tz3jN3G4DSAE79N7KkRgrs1P_0TJHlFSY,507
|
|
398
|
-
autobyteus/tools/search/base_strategy.py,sha256=xsOhJVoiEJ8wsOkq4JnVSkgBqha735Jtcm1Qp-0PhVw,987
|
|
399
|
-
autobyteus/tools/search/client.py,sha256=04q9BZDEHPEl9ur8cCm9Pnb-iqAlDUkNlLUZ8WD_M38,833
|
|
400
|
-
autobyteus/tools/search/factory.py,sha256=AElxRbeaePHfFzeXAzoyefu3evvS7sncqQpAKVCjSBI,3665
|
|
401
|
-
autobyteus/tools/search/google_cse_strategy.py,sha256=LpWptdBSNCCB2vlhOxTt3Q0U1sEmTc6qKLM5F-rcRkY,2874
|
|
402
|
-
autobyteus/tools/search/providers.py,sha256=VE-alemtM_ozz2sbyK17-dbLQVYRYdx7WURiFYPx8Oc,242
|
|
403
|
-
autobyteus/tools/search/serpapi_strategy.py,sha256=9oVOZa4psAu73DhWxnxjMquuTEDLxKvpMun8OuLSgjI,2692
|
|
404
|
-
autobyteus/tools/search/serper_strategy.py,sha256=QWXp8DU1D42gmPvQwtGl-kRP0Tl80zjsQe7NvDe1JuI,3602
|
|
405
|
-
autobyteus/tools/usage/__init__.py,sha256=0kJoUH-m0d1AHTYJQyXlCjlXhMJ3e95Ykf-8J9lO2g4,224
|
|
406
|
-
autobyteus/tools/usage/formatters/__init__.py,sha256=BThdI_R8Dkda1eHJFr1cQ7nLCgf5KfSuvWokjPrnT9U,1424
|
|
407
|
-
autobyteus/tools/usage/formatters/anthropic_json_example_formatter.py,sha256=EVVPZ7e1tG3QRcEPjdOC0yTvnGisubfUm9geWbd9r2g,792
|
|
408
|
-
autobyteus/tools/usage/formatters/anthropic_json_schema_formatter.py,sha256=Cwd4teoZcs64q1xemVYIW9lviH7A0t2jmg3W7TYv_Rs,869
|
|
409
|
-
autobyteus/tools/usage/formatters/base_formatter.py,sha256=15YQHEV-uHREoi5INA6KWVrniatMbBPIGz82bVkZos8,1283
|
|
410
|
-
autobyteus/tools/usage/formatters/default_json_example_formatter.py,sha256=vngcw6jI_tqvgzrOJ7vvhStb2I35YYpdK31EyyW_nrc,9069
|
|
411
|
-
autobyteus/tools/usage/formatters/default_json_schema_formatter.py,sha256=mZuHp_irHco3_S-VotSBvv5BRFDlTsmdmSIH3Ut71jY,958
|
|
412
|
-
autobyteus/tools/usage/formatters/default_xml_example_formatter.py,sha256=JRr7ksL3N_YMeFm2CY6RQxVwK4sbVKeSWQdZIy0ieiI,7185
|
|
413
|
-
autobyteus/tools/usage/formatters/default_xml_schema_formatter.py,sha256=XsTLXKQfvJ1kshRi2jN0aIoOWn1t1oolrzl-H4wCRAE,6585
|
|
414
|
-
autobyteus/tools/usage/formatters/gemini_json_example_formatter.py,sha256=S56Ld3xN4X0U4VL645j-ZY2IAweMf4nKny6Sy8F6__4,3866
|
|
415
|
-
autobyteus/tools/usage/formatters/gemini_json_schema_formatter.py,sha256=za6FhkrbDUcezc9-u4w4_ytQAQyR8OpKypC_CCTYlBY,875
|
|
416
|
-
autobyteus/tools/usage/formatters/google_json_example_formatter.py,sha256=qw3WxLDg4iBRm6r4k2qYX8IkCQVtJV3ljMjk1iTCVsM,3908
|
|
417
|
-
autobyteus/tools/usage/formatters/google_json_schema_formatter.py,sha256=gKeuR_QhiebFGja303rg9q9CxgynJxIoCd4SrXuXRUU,868
|
|
418
|
-
autobyteus/tools/usage/formatters/openai_json_example_formatter.py,sha256=-Ggx3VoS64Pwq035P-Gd7b8gfPTHSSU2rAdN3xTSZI8,4131
|
|
419
|
-
autobyteus/tools/usage/formatters/openai_json_schema_formatter.py,sha256=3pN4CnmWiBJaZMhV7qnWcSKPpyZ2cEdiU-FVMRfPT1w,948
|
|
420
|
-
autobyteus/tools/usage/parsers/__init__.py,sha256=4y235cYvUm60v30m4KCwQ4g9x9yP81QYBhSkUmjFWAU,915
|
|
421
|
-
autobyteus/tools/usage/parsers/_json_extractor.py,sha256=Q7BJsEcFkEZJ8q-ifIl-7t4FXZgFoFEwFXAGvKFYhCk,3601
|
|
422
|
-
autobyteus/tools/usage/parsers/_string_decoders.py,sha256=8dp5FfDIehHh5A7sKmomeEdTXqsMSJyHiuolFvipu68,638
|
|
423
|
-
autobyteus/tools/usage/parsers/anthropic_xml_tool_usage_parser.py,sha256=xAVq7bPlyfZK5YBVsNlXyyc-1J4kyVr4-wDNI0ekl_o,433
|
|
424
|
-
autobyteus/tools/usage/parsers/base_parser.py,sha256=iNHVUXMzAydnhYeEBgcXU0g8L_H9KTMavOEd-iwDLbk,1366
|
|
425
|
-
autobyteus/tools/usage/parsers/default_json_tool_usage_parser.py,sha256=s5B8TT5jwBpFQyDYzxPVRUptsHT3WHsJGK9XWSAnDbg,3803
|
|
426
|
-
autobyteus/tools/usage/parsers/default_xml_tool_usage_parser.py,sha256=esamQXffzI5-lsvRmOHwqF3WYOdMVW5zBdzPYVpBjgk,12344
|
|
427
|
-
autobyteus/tools/usage/parsers/exceptions.py,sha256=CncCSH4IJUYPaCTilj1oPgfZWdCycIxQBrWiSKuWXtc,468
|
|
428
|
-
autobyteus/tools/usage/parsers/gemini_json_tool_usage_parser.py,sha256=bL9i4jqWKDXK7thOblfozggLfGPKMNIpIsTcYFEYtcA,3721
|
|
429
|
-
autobyteus/tools/usage/parsers/openai_json_tool_usage_parser.py,sha256=_p8Uyzv29yhhAG7MPgp7a5JEPZYNCx6ffUbRBb3eYwU,7111
|
|
430
|
-
autobyteus/tools/usage/parsers/provider_aware_tool_usage_parser.py,sha256=OVPQpNlDCvAIKE5kKXFUIMdaTTK3pyJW2oCQ_bkOPBk,2829
|
|
431
|
-
autobyteus/tools/usage/providers/__init__.py,sha256=C8GmfzYwzSS2OGv7MbvxtRe0OsIALvkC7rN7OWvA5p4,445
|
|
432
|
-
autobyteus/tools/usage/providers/tool_manifest_provider.py,sha256=r-q9YkNYXEbNApAjufvxGuU4JPiu78x6u60wjTZcnfM,4668
|
|
433
|
-
autobyteus/tools/usage/registries/__init__.py,sha256=S1jYYPqAjvD1rY0b8zkffBnKz8-_ptftfbgr1lqb7I8,547
|
|
434
|
-
autobyteus/tools/usage/registries/tool_formatter_pair.py,sha256=Deki2aAEsFY0OSrMQf-4wZcyIInGI7EKQ2ZKenaFtMU,593
|
|
435
|
-
autobyteus/tools/usage/registries/tool_formatting_registry.py,sha256=zKUDxsoo7X3fw783lpJIzETzTlkXJGoHYmO2rXU1efI,3337
|
|
436
|
-
autobyteus/tools/usage/registries/tool_usage_parser_registry.py,sha256=kVgnq1hwTdb2C5SH5TGQLd6-bzDzfFLwk2qodrzwLWY,2667
|
|
437
|
-
autobyteus/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
438
|
-
autobyteus/utils/dynamic_enum.py,sha256=c_mgKtKrjb958LlCWeAApl1LMvVB7U_0SWl-8XFhRag,1339
|
|
439
|
-
autobyteus/utils/file_utils.py,sha256=QK0LvrwA5c9FDjpSrfPPEQbu_AirteJNiLad9yRahDY,512
|
|
440
|
-
autobyteus/utils/html_cleaner.py,sha256=mI2V83yFRfQe8NnN6fr6Ujpa0bPlq25NW5tTKaz2WGk,8672
|
|
441
|
-
autobyteus/utils/parameter_schema.py,sha256=WoBXXdUIA6zBwMIr5CIO1lVkNN8m1c0gV6sIcCsSNSI,13010
|
|
442
|
-
autobyteus/utils/singleton.py,sha256=YVURj5nRcMtzwFPxgy6ic4MSe3IUXNf6XWYuiXyhDOg,814
|
|
443
|
-
autobyteus/workflow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
444
|
-
autobyteus/workflow/agentic_workflow.py,sha256=u1A_HkgNlPmKn2nXz_0u_l9_DSyt4hxRJSyojGonvAA,3765
|
|
445
|
-
autobyteus/workflow/base_agentic_workflow.py,sha256=fb7JZZ58p7HL-jQdzHybrMSEMSGgenoJ3D4prnWIBtk,3602
|
|
446
|
-
autobyteus/workflow/exceptions.py,sha256=mIHDol7s6bQX_LP8y00zDAnpjDXlAL4-3P8rX2nxA-Q,407
|
|
447
|
-
autobyteus/workflow/workflow_builder.py,sha256=_e3hlCTclQLN81XyJjbZ8uHSvKe6sgpeKA_8yL51e9c,6889
|
|
448
|
-
autobyteus/workflow/bootstrap_steps/__init__.py,sha256=9C9HvkXHNYJfI-OfXvMWOyerA1r6j1n3gLX2nE4fAKU,1034
|
|
449
|
-
autobyteus/workflow/bootstrap_steps/agent_tool_injection_step.py,sha256=LLPCKwzh0tQI6aUrWWrWNsU92uK-YdP0xDCkv1LWgTU,1942
|
|
450
|
-
autobyteus/workflow/bootstrap_steps/base_workflow_bootstrap_step.py,sha256=mj6SvAbKVL_HFygRh5QkuEhOhDhi4djU8opBARLa8fM,880
|
|
451
|
-
autobyteus/workflow/bootstrap_steps/coordinator_initialization_step.py,sha256=zZqc2fxOwy1Crll6VEXt2a8UC7ROSG_jmXC5Kjs7fhk,1927
|
|
452
|
-
autobyteus/workflow/bootstrap_steps/coordinator_prompt_preparation_step.py,sha256=gVKte0a0SxBC31SiwbTk3dsJZ611mESXfcscpmuVzdI,5534
|
|
453
|
-
autobyteus/workflow/bootstrap_steps/workflow_bootstrapper.py,sha256=0fz-eN5DCtWPsYZLMUeFh-OOKQSBpwhN6ry3tAB5AM8,2746
|
|
454
|
-
autobyteus/workflow/bootstrap_steps/workflow_runtime_queue_initialization_step.py,sha256=uE8Ixgv66BMpzkBR_ohXY5i3A4CsaKdFmod514dzYj4,1369
|
|
455
|
-
autobyteus/workflow/context/__init__.py,sha256=aOkJMgX6bo7Cq1UBC4oENgb7lZYhMdJJSLJ-3uUhnA0,653
|
|
456
|
-
autobyteus/workflow/context/team_manager.py,sha256=EfWBdVsjnT9FJOhEFDZhlrdsJ9-qshDBq5sm7gkX5kA,7659
|
|
457
|
-
autobyteus/workflow/context/workflow_config.py,sha256=E3ylRyeC8WO37qHri9TmyShXht6-UqpMZIixBjucG7o,1174
|
|
458
|
-
autobyteus/workflow/context/workflow_context.py,sha256=JwFZr6Mof0tqLRndlgrQEz9iAkpie1i_URNUtUCSDJ0,2695
|
|
459
|
-
autobyteus/workflow/context/workflow_node_config.py,sha256=ka_ku03tKOwU-q9Is1lCt-Bpfj39gZk9KEE3lfEtNe8,3212
|
|
460
|
-
autobyteus/workflow/context/workflow_runtime_state.py,sha256=zEfPSXL6rSVib7hQrUFCRvI1MX85P7g2RUsLC2FF6ok,2810
|
|
461
|
-
autobyteus/workflow/events/__init__.py,sha256=7qNll9W8bpJRg63bzvZDdLLXwKQfoxsLFd-RLFPDGpA,949
|
|
462
|
-
autobyteus/workflow/events/workflow_event_dispatcher.py,sha256=aRn-R32AkS0Z38QJmHxRMX1msqdy25almwjbD6-zcls,1729
|
|
463
|
-
autobyteus/workflow/events/workflow_events.py,sha256=5IeDgjkImXZMMkpBn3u4d3PiKiLDHuDndb3FA1I_ycs,1744
|
|
464
|
-
autobyteus/workflow/events/workflow_input_event_queue_manager.py,sha256=JtTicSrEBXT6gQcUo5XLxuZ78NIDl2A1GtwRI44MONU,942
|
|
465
|
-
autobyteus/workflow/factory/__init__.py,sha256=W9Hq6EaVlpvHNj3I_6MpWluuLOxdPvpibH4AXlFX1f0,235
|
|
466
|
-
autobyteus/workflow/factory/workflow_factory.py,sha256=VpxDguKhG7ng3Z8-2Equqd6ligIn3FsXjeGDyP8ppjQ,4829
|
|
467
|
-
autobyteus/workflow/handlers/__init__.py,sha256=kgTir-RKwzsuUpODMcNjIzqFrw2LU4KQ8vWRcz-2ZCg,989
|
|
468
|
-
autobyteus/workflow/handlers/base_workflow_event_handler.py,sha256=1nA02qJuK4bk6gH3lyVCS85nfQtAO5tOifUp31FHfYk,580
|
|
469
|
-
autobyteus/workflow/handlers/inter_agent_message_request_event_handler.py,sha256=w9cq_GWZHp2996hh4tbgM598BpCTcdFfXx5dyGf39Q8,3388
|
|
470
|
-
autobyteus/workflow/handlers/lifecycle_workflow_event_handler.py,sha256=AtP1BZahYgbe-WV423bzZRPgvcGqh-I3mv5YqqYHwFI,1348
|
|
471
|
-
autobyteus/workflow/handlers/process_user_message_event_handler.py,sha256=TDEFwfONgNyHXOFtC56FEcxkRLr9FDmtXXONIcYC2lY,2602
|
|
472
|
-
autobyteus/workflow/handlers/tool_approval_workflow_event_handler.py,sha256=2nw4FhhjYSfHyYoeXW4v2s9ziy-Cb0sR-YrYHZg-8bM,1881
|
|
473
|
-
autobyteus/workflow/handlers/workflow_event_handler_registry.py,sha256=o-qXbg9VY4Ce8EtOGdbAhRXleQsWVjVE_idPK5rQTU8,1207
|
|
474
|
-
autobyteus/workflow/phases/__init__.py,sha256=GLqzLOHeiWXnUYTSrG8kRVqARU-litYdnwcGoGs5u-Q,403
|
|
475
|
-
autobyteus/workflow/phases/workflow_operational_phase.py,sha256=Do7YTKQ-NFCaqXyXf2HnMDoT6_WK1S5Td7K8CI-nsHk,674
|
|
476
|
-
autobyteus/workflow/phases/workflow_phase_manager.py,sha256=rJ90brGy0NoWRktAPkFuOVL4vZwJ1wBBPxdcLamSXLs,2346
|
|
477
|
-
autobyteus/workflow/runtime/__init__.py,sha256=WYLVQfP2zwgg8GtJSInTJZyVdr1mxRfvQRtSERmQfQQ,451
|
|
478
|
-
autobyteus/workflow/runtime/workflow_runtime.py,sha256=hZCVk7D4nsdjUAEQIMsprbWUi1mDrASx3hDfnSOt4IM,3894
|
|
479
|
-
autobyteus/workflow/runtime/workflow_worker.py,sha256=3QgyoZ7ahPmXcKEBSvTD29mmv4VPU4LBfD0xnJ_26zk,5598
|
|
480
|
-
autobyteus/workflow/shutdown_steps/__init__.py,sha256=6_d81qvsu5ViWi5BIjQ2pxIYjVKOnhmdtI5v031KXv8,802
|
|
481
|
-
autobyteus/workflow/shutdown_steps/agent_team_shutdown_step.py,sha256=27pJ0ysP1PzGcuU3mkwPorPenypN7jlZb18gh4MUDmI,1883
|
|
482
|
-
autobyteus/workflow/shutdown_steps/base_workflow_shutdown_step.py,sha256=c4fRHV56aTEOEVya5cvVEu15dgCjq4h3V93IKqrk4Ho,638
|
|
483
|
-
autobyteus/workflow/shutdown_steps/bridge_cleanup_step.py,sha256=rCDKe-Wdm4SY7ua0NRlp9i7wnIlmwqh-Nqze-qeGYcw,1183
|
|
484
|
-
autobyteus/workflow/shutdown_steps/sub_workflow_shutdown_step.py,sha256=odjGy3p3ikk2c713Iopsfe9vEX6RWa-4ZqjnKfry7kY,1861
|
|
485
|
-
autobyteus/workflow/shutdown_steps/workflow_shutdown_orchestrator.py,sha256=uZ77Ajnt5rzICXcjgyv19ckXEXi_pFnFNCyl-5MXMME,1580
|
|
486
|
-
autobyteus/workflow/streaming/__init__.py,sha256=-MFvSEtsgOpjABgrzHwugiauasE_eCK9Z7n99ldLZDg,877
|
|
487
|
-
autobyteus/workflow/streaming/agent_event_bridge.py,sha256=pT8tgXfQhdGb4LQ286tZcwmQZFrIbCBlIy_d7v1HGNE,2126
|
|
488
|
-
autobyteus/workflow/streaming/agent_event_multiplexer.py,sha256=VlBucqJJNHO7uwPAD7u5-0zTvmAkkqouaRyihJW5A6g,3765
|
|
489
|
-
autobyteus/workflow/streaming/workflow_event_bridge.py,sha256=BBgMQw1gruW-EgtK3SM-O21GG2qjaRem3BIWtsSlu_c,2461
|
|
490
|
-
autobyteus/workflow/streaming/workflow_event_notifier.py,sha256=GA1XPqWTEvdljYAJpifxrQtILORAGGuxWNldARmdVKA,3654
|
|
491
|
-
autobyteus/workflow/streaming/workflow_event_stream.py,sha256=XTOvbx1EWIh2x_-Nl5UcY6jCPnsgdS4GvoHjfRKj8yM,1540
|
|
492
|
-
autobyteus/workflow/streaming/workflow_stream_event_payloads.py,sha256=jv1bVYg-75Fa93gcK6Apavxu-crpeJ0w4QMmEa4Csno,1470
|
|
493
|
-
autobyteus/workflow/streaming/workflow_stream_events.py,sha256=75P29jNgcL7Go7D9wVz236KTwPfmqc5K7hUvVnc94K0,2221
|
|
494
|
-
autobyteus/workflow/utils/__init__.py,sha256=SzaMZHnJBIJKcT_r-HOeyIcuxzRu2bGeFkOcMLJaalk,222
|
|
495
|
-
autobyteus/workflow/utils/wait_for_idle.py,sha256=FgHtz59DN0eg8Na1PkkVR55Ihdd2e5Gn_mr7RVHl4qI,2001
|
|
496
|
-
autobyteus-1.2.1.dist-info/licenses/LICENSE,sha256=Ompok_c8HRsXRwmax-pGR9OZRRxZC9RPp4JB6eTJd0M,1360
|
|
497
|
-
examples/__init__.py,sha256=BtTQJ6yeHyksK5GC3kfN6RFR6Gcrwq1TBmp6FIIj3Z8,40
|
|
498
|
-
examples/discover_phase_transitions.py,sha256=NiFK_XzDCpWwmNsQqf0Ou2w6L5bofKIKODq7sH5uPzk,3679
|
|
499
|
-
examples/run_agentic_software_engineer.py,sha256=-1GzNFTBUFJh31olYLW0vGJAMY0L8BlJdMyNy3FT9ew,10967
|
|
500
|
-
examples/run_browser_agent.py,sha256=tpBJGIYYvVsNZAUo_WsZbhV_8fdeORUoHlQ8uQvnXPM,11737
|
|
501
|
-
examples/run_google_slides_agent.py,sha256=R3skoCO7gxNKCdqm_Px3YVlzSh5WzJc7KAxqO-x7sJc,13105
|
|
502
|
-
examples/run_mcp_browser_client.py,sha256=6vEBxGtAuGffkFk-gr3NvqetO84IdhNzip5Jp7V1tSc,6772
|
|
503
|
-
examples/run_mcp_google_slides_client.py,sha256=l5B4sgDyyVEfL52WUiZw9mJjL5vOuD5ZJlnzIJbA-iw,11824
|
|
504
|
-
examples/run_mcp_list_tools.py,sha256=-dOM-7xyyDM2gp5e_8KZVGbX5ZxWqFQB9l-fHfR8XxY,7367
|
|
505
|
-
examples/run_poem_writer.py,sha256=C64YXkEYa3ZzUYv1AqZqe0NbLU8FEnUbujh22taRJu0,13141
|
|
506
|
-
examples/run_sqlite_agent.py,sha256=wy1Mp_F7RR0WmvfmxsPLG9JFPi6SpTVd0x_Ep76bUQ8,13159
|
|
507
|
-
examples/agent_team/__init__.py,sha256=WIg0HENp1TUClJ3p2gIRn0C-VW9Qr7Ttqtedr4xQ3Jo,51
|
|
508
|
-
autobyteus-1.2.1.dist-info/METADATA,sha256=1cQU7gEO6YR_sUD41ygzM0aHfMmwIbYOtbv5HdxGY0c,10174
|
|
509
|
-
autobyteus-1.2.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
510
|
-
autobyteus-1.2.1.dist-info/top_level.txt,sha256=vNmK1Y8Irbc0iDPdRtr9gIx5eLM-c2v1ntItkzICzHU,20
|
|
511
|
-
autobyteus-1.2.1.dist-info/RECORD,,
|
examples/__init__.py
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
# file: autobyteus/examples/__init__.py
|
examples/agent_team/__init__.py
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
# file: autobyteus/examples/agent_team/__init__.py
|