autobyteus 1.1.2__py3-none-any.whl → 1.1.4__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 +1 -1
- autobyteus/agent/bootstrap_steps/__init__.py +2 -0
- autobyteus/agent/bootstrap_steps/agent_bootstrapper.py +2 -0
- autobyteus/agent/bootstrap_steps/mcp_server_prewarming_step.py +71 -0
- autobyteus/agent/bootstrap_steps/system_prompt_processing_step.py +4 -2
- autobyteus/agent/context/agent_config.py +36 -5
- autobyteus/agent/events/worker_event_dispatcher.py +1 -2
- autobyteus/agent/handlers/inter_agent_message_event_handler.py +1 -1
- autobyteus/agent/handlers/llm_user_message_ready_event_handler.py +2 -2
- autobyteus/agent/handlers/tool_result_event_handler.py +48 -20
- autobyteus/agent/handlers/user_input_message_event_handler.py +1 -1
- autobyteus/agent/input_processor/__init__.py +1 -7
- autobyteus/agent/llm_response_processor/provider_aware_tool_usage_processor.py +41 -12
- autobyteus/agent/message/context_file_type.py +6 -0
- autobyteus/agent/message/send_message_to.py +68 -99
- autobyteus/agent/phases/discover.py +2 -1
- autobyteus/agent/runtime/agent_worker.py +25 -34
- autobyteus/agent/shutdown_steps/__init__.py +17 -0
- autobyteus/agent/shutdown_steps/agent_shutdown_orchestrator.py +63 -0
- autobyteus/agent/shutdown_steps/base_shutdown_step.py +33 -0
- autobyteus/agent/shutdown_steps/llm_instance_cleanup_step.py +45 -0
- autobyteus/agent/shutdown_steps/mcp_server_cleanup_step.py +32 -0
- autobyteus/agent/tool_execution_result_processor/__init__.py +9 -0
- autobyteus/agent/tool_execution_result_processor/base_processor.py +46 -0
- autobyteus/agent/tool_execution_result_processor/processor_definition.py +36 -0
- autobyteus/agent/tool_execution_result_processor/processor_meta.py +36 -0
- autobyteus/agent/tool_execution_result_processor/processor_registry.py +70 -0
- autobyteus/agent/workspace/base_workspace.py +17 -2
- autobyteus/cli/__init__.py +1 -1
- autobyteus/cli/cli_display.py +1 -1
- autobyteus/cli/workflow_tui/__init__.py +4 -0
- autobyteus/cli/workflow_tui/app.py +210 -0
- autobyteus/cli/workflow_tui/state.py +189 -0
- autobyteus/cli/workflow_tui/widgets/__init__.py +6 -0
- autobyteus/cli/workflow_tui/widgets/agent_list_sidebar.py +149 -0
- autobyteus/cli/workflow_tui/widgets/focus_pane.py +335 -0
- autobyteus/cli/workflow_tui/widgets/logo.py +27 -0
- autobyteus/cli/workflow_tui/widgets/renderables.py +70 -0
- autobyteus/cli/workflow_tui/widgets/shared.py +51 -0
- autobyteus/cli/workflow_tui/widgets/status_bar.py +14 -0
- autobyteus/events/event_types.py +3 -0
- autobyteus/llm/api/lmstudio_llm.py +37 -0
- autobyteus/llm/api/openai_compatible_llm.py +20 -3
- autobyteus/llm/llm_factory.py +2 -0
- autobyteus/llm/lmstudio_provider.py +89 -0
- autobyteus/llm/providers.py +1 -0
- autobyteus/llm/token_counter/token_counter_factory.py +2 -0
- autobyteus/tools/__init__.py +2 -0
- autobyteus/tools/ask_user_input.py +2 -1
- autobyteus/tools/base_tool.py +2 -0
- autobyteus/tools/bash/bash_executor.py +2 -1
- autobyteus/tools/browser/session_aware/browser_session_aware_navigate_to.py +2 -0
- autobyteus/tools/browser/session_aware/browser_session_aware_web_element_trigger.py +3 -0
- autobyteus/tools/browser/session_aware/browser_session_aware_webpage_reader.py +3 -0
- autobyteus/tools/browser/session_aware/browser_session_aware_webpage_screenshot_taker.py +3 -0
- autobyteus/tools/browser/standalone/google_search_ui.py +2 -0
- autobyteus/tools/browser/standalone/navigate_to.py +2 -0
- autobyteus/tools/browser/standalone/web_page_pdf_generator.py +3 -0
- autobyteus/tools/browser/standalone/webpage_image_downloader.py +3 -0
- autobyteus/tools/browser/standalone/webpage_reader.py +2 -0
- autobyteus/tools/browser/standalone/webpage_screenshot_taker.py +3 -0
- autobyteus/tools/file/file_reader.py +36 -9
- autobyteus/tools/file/file_writer.py +37 -9
- autobyteus/tools/functional_tool.py +5 -4
- autobyteus/tools/image_downloader.py +2 -0
- autobyteus/tools/mcp/__init__.py +10 -7
- autobyteus/tools/mcp/call_handlers/__init__.py +0 -2
- autobyteus/tools/mcp/config_service.py +1 -6
- autobyteus/tools/mcp/factory.py +12 -26
- autobyteus/tools/mcp/server/__init__.py +16 -0
- autobyteus/tools/mcp/server/base_managed_mcp_server.py +139 -0
- autobyteus/tools/mcp/server/http_managed_mcp_server.py +29 -0
- autobyteus/tools/mcp/server/proxy.py +36 -0
- autobyteus/tools/mcp/server/stdio_managed_mcp_server.py +33 -0
- autobyteus/tools/mcp/server_instance_manager.py +93 -0
- autobyteus/tools/mcp/tool.py +28 -46
- autobyteus/tools/mcp/tool_registrar.py +179 -0
- autobyteus/tools/mcp/types.py +10 -21
- autobyteus/tools/pdf_downloader.py +2 -1
- autobyteus/tools/registry/tool_definition.py +20 -7
- autobyteus/tools/registry/tool_registry.py +75 -28
- autobyteus/tools/timer.py +2 -0
- autobyteus/tools/tool_category.py +14 -4
- autobyteus/tools/tool_meta.py +6 -1
- autobyteus/tools/tool_origin.py +10 -0
- autobyteus/workflow/agentic_workflow.py +93 -0
- autobyteus/{agent/workflow → workflow}/base_agentic_workflow.py +19 -27
- autobyteus/workflow/bootstrap_steps/__init__.py +20 -0
- autobyteus/workflow/bootstrap_steps/agent_tool_injection_step.py +34 -0
- autobyteus/workflow/bootstrap_steps/base_workflow_bootstrap_step.py +23 -0
- autobyteus/workflow/bootstrap_steps/coordinator_initialization_step.py +41 -0
- autobyteus/workflow/bootstrap_steps/coordinator_prompt_preparation_step.py +108 -0
- autobyteus/workflow/bootstrap_steps/workflow_bootstrapper.py +50 -0
- autobyteus/workflow/bootstrap_steps/workflow_runtime_queue_initialization_step.py +25 -0
- autobyteus/workflow/context/__init__.py +17 -0
- autobyteus/workflow/context/team_manager.py +147 -0
- autobyteus/workflow/context/workflow_config.py +30 -0
- autobyteus/workflow/context/workflow_context.py +61 -0
- autobyteus/workflow/context/workflow_node_config.py +76 -0
- autobyteus/workflow/context/workflow_runtime_state.py +53 -0
- autobyteus/workflow/events/__init__.py +29 -0
- autobyteus/workflow/events/workflow_event_dispatcher.py +39 -0
- autobyteus/workflow/events/workflow_events.py +53 -0
- autobyteus/workflow/events/workflow_input_event_queue_manager.py +21 -0
- autobyteus/workflow/exceptions.py +8 -0
- autobyteus/workflow/factory/__init__.py +9 -0
- autobyteus/workflow/factory/workflow_factory.py +99 -0
- autobyteus/workflow/handlers/__init__.py +19 -0
- autobyteus/workflow/handlers/base_workflow_event_handler.py +16 -0
- autobyteus/workflow/handlers/inter_agent_message_request_event_handler.py +61 -0
- autobyteus/workflow/handlers/lifecycle_workflow_event_handler.py +27 -0
- autobyteus/workflow/handlers/process_user_message_event_handler.py +46 -0
- autobyteus/workflow/handlers/tool_approval_workflow_event_handler.py +39 -0
- autobyteus/workflow/handlers/workflow_event_handler_registry.py +23 -0
- autobyteus/workflow/phases/__init__.py +11 -0
- autobyteus/workflow/phases/workflow_operational_phase.py +19 -0
- autobyteus/workflow/phases/workflow_phase_manager.py +48 -0
- autobyteus/workflow/runtime/__init__.py +13 -0
- autobyteus/workflow/runtime/workflow_runtime.py +82 -0
- autobyteus/workflow/runtime/workflow_worker.py +117 -0
- autobyteus/workflow/shutdown_steps/__init__.py +17 -0
- autobyteus/workflow/shutdown_steps/agent_team_shutdown_step.py +42 -0
- autobyteus/workflow/shutdown_steps/base_workflow_shutdown_step.py +16 -0
- autobyteus/workflow/shutdown_steps/bridge_cleanup_step.py +28 -0
- autobyteus/workflow/shutdown_steps/sub_workflow_shutdown_step.py +41 -0
- autobyteus/workflow/shutdown_steps/workflow_shutdown_orchestrator.py +35 -0
- autobyteus/workflow/streaming/__init__.py +26 -0
- autobyteus/workflow/streaming/agent_event_bridge.py +48 -0
- autobyteus/workflow/streaming/agent_event_multiplexer.py +70 -0
- autobyteus/workflow/streaming/workflow_event_bridge.py +50 -0
- autobyteus/workflow/streaming/workflow_event_notifier.py +83 -0
- autobyteus/workflow/streaming/workflow_event_stream.py +33 -0
- autobyteus/workflow/streaming/workflow_stream_event_payloads.py +28 -0
- autobyteus/workflow/streaming/workflow_stream_events.py +45 -0
- autobyteus/workflow/utils/__init__.py +9 -0
- autobyteus/workflow/utils/wait_for_idle.py +46 -0
- autobyteus/workflow/workflow_builder.py +151 -0
- {autobyteus-1.1.2.dist-info → autobyteus-1.1.4.dist-info}/METADATA +16 -13
- {autobyteus-1.1.2.dist-info → autobyteus-1.1.4.dist-info}/RECORD +156 -75
- {autobyteus-1.1.2.dist-info → autobyteus-1.1.4.dist-info}/top_level.txt +1 -0
- examples/__init__.py +1 -0
- examples/discover_phase_transitions.py +104 -0
- examples/run_browser_agent.py +260 -0
- examples/run_google_slides_agent.py +286 -0
- examples/run_mcp_browser_client.py +174 -0
- examples/run_mcp_google_slides_client.py +270 -0
- examples/run_mcp_list_tools.py +189 -0
- examples/run_poem_writer.py +274 -0
- examples/run_sqlite_agent.py +293 -0
- examples/workflow/__init__.py +1 -0
- examples/workflow/run_basic_research_workflow.py +189 -0
- examples/workflow/run_code_review_workflow.py +269 -0
- examples/workflow/run_debate_workflow.py +212 -0
- examples/workflow/run_workflow_with_tui.py +153 -0
- autobyteus/agent/context/agent_phase_manager.py +0 -264
- autobyteus/agent/context/phases.py +0 -49
- autobyteus/agent/group/__init__.py +0 -0
- autobyteus/agent/group/agent_group.py +0 -164
- autobyteus/agent/group/agent_group_context.py +0 -81
- autobyteus/agent/input_processor/content_prefixing_input_processor.py +0 -41
- autobyteus/agent/input_processor/metadata_appending_input_processor.py +0 -34
- autobyteus/agent/input_processor/passthrough_input_processor.py +0 -33
- autobyteus/agent/workflow/__init__.py +0 -11
- autobyteus/agent/workflow/agentic_workflow.py +0 -89
- autobyteus/tools/mcp/call_handlers/sse_handler.py +0 -22
- autobyteus/tools/mcp/registrar.py +0 -323
- autobyteus/workflow/simple_task.py +0 -98
- autobyteus/workflow/task.py +0 -147
- autobyteus/workflow/workflow.py +0 -49
- {autobyteus-1.1.2.dist-info → autobyteus-1.1.4.dist-info}/WHEEL +0 -0
- {autobyteus-1.1.2.dist-info → autobyteus-1.1.4.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,55 +1,48 @@
|
|
|
1
1
|
autobyteus/__init__.py,sha256=ij7pzJD0e838u_nQIypAlXkJQgUkcB898Gqw2Dovv-s,110
|
|
2
2
|
autobyteus/check_requirements.py,sha256=nLWmqMlGiAToQuub68IpL2EhRxFZ1CyCwRCMi2C5hrY,853
|
|
3
3
|
autobyteus/agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
autobyteus/agent/agent.py,sha256=
|
|
4
|
+
autobyteus/agent/agent.py,sha256=OLHU73lGlfbrwqke3cpnY8HE5zZEvYb0Cqqsxu_LKD0,4926
|
|
5
5
|
autobyteus/agent/exceptions.py,sha256=tfXvey5SkT70X6kcu29o8YO91KB0hI9_uLrba91_G2s,237
|
|
6
6
|
autobyteus/agent/remote_agent.py,sha256=DPhAWobptj82HZaACbtLkXQBYIotgr3yZ6u4D9TJmeE,14458
|
|
7
7
|
autobyteus/agent/tool_invocation.py,sha256=Kt1ge4kUGzC5f6ONdoBNGDUr9OwSAIEKmGFrtGzjewM,2312
|
|
8
|
-
autobyteus/agent/bootstrap_steps/__init__.py,sha256=
|
|
9
|
-
autobyteus/agent/bootstrap_steps/agent_bootstrapper.py,sha256=
|
|
8
|
+
autobyteus/agent/bootstrap_steps/__init__.py,sha256=k3_J4MXu7PaTuUXK-D2Uax8kh4BnSNm22sDlQw6GFA4,906
|
|
9
|
+
autobyteus/agent/bootstrap_steps/agent_bootstrapper.py,sha256=tPxD4yQ_i3-rl9XOGaKrLMdpymBqrzHkkkzRW0xhPBw,4336
|
|
10
10
|
autobyteus/agent/bootstrap_steps/agent_runtime_queue_initialization_step.py,sha256=wulFdVAwR4jTZtJgHwLYf07r76KKCKpwa1Cho2AqjSw,3265
|
|
11
11
|
autobyteus/agent/bootstrap_steps/base_bootstrap_step.py,sha256=8XaGHJva2Fo4T3fACK36FbEcrblj105oVhffYFEQO1A,1349
|
|
12
|
-
autobyteus/agent/bootstrap_steps/
|
|
12
|
+
autobyteus/agent/bootstrap_steps/mcp_server_prewarming_step.py,sha256=M_OnynyLRmyQsfEeGQ8aH-NIhbBgmXhEBRHopvkNXJc,3432
|
|
13
|
+
autobyteus/agent/bootstrap_steps/system_prompt_processing_step.py,sha256=uqJvnj8Mm_m43RsKwc_lQfHH1D2jEBbHFWbZcQZnQtc,5703
|
|
13
14
|
autobyteus/agent/bootstrap_steps/workspace_context_initialization_step.py,sha256=FMF9fhD6Wgas4TpQbSwKiL43OZBmwh_cAA3G_5jRJhM,2112
|
|
14
15
|
autobyteus/agent/context/__init__.py,sha256=7LXLRuI_9Por2g_B4p89jLG3rZeJ5OYlmTXkjT4OGBY,364
|
|
15
|
-
autobyteus/agent/context/agent_config.py,sha256=
|
|
16
|
+
autobyteus/agent/context/agent_config.py,sha256=m_Z5Os9hAGjVgAIyXp2AjueuccxnXtcjFdV526IqgHk,6586
|
|
16
17
|
autobyteus/agent/context/agent_context.py,sha256=3Vd1c4EF6JY7rOKar7TQSXNNSNnpB-hYuhGqVQdi52g,5726
|
|
17
|
-
autobyteus/agent/context/agent_phase_manager.py,sha256=K6sYzaY-7k3EffuxsuNM01Gela5T_RFiQZ-ljhP9JeE,15610
|
|
18
18
|
autobyteus/agent/context/agent_runtime_state.py,sha256=CIoOJwGR9-H-vYBfq-4eQRP5uSoBcmlAFUGSru8xZ7A,5125
|
|
19
|
-
autobyteus/agent/context/phases.py,sha256=NrA5HS6rGm0nv74HaZW2l-dul1yJJyr-ukLZKXzYXWE,2871
|
|
20
19
|
autobyteus/agent/events/__init__.py,sha256=8AL83PBRLkEptTzPznn_XpGXq2-S56Yxx3WarNcsc3U,1507
|
|
21
20
|
autobyteus/agent/events/agent_events.py,sha256=plrBY3Cr_nUhrwvkpED_2qyPq2Slc0ciiupsWdPvmwo,3821
|
|
22
21
|
autobyteus/agent/events/agent_input_event_queue_manager.py,sha256=VfynrdVSPkKEH94yg9p1WBOoV52JQX8MRJhJ-GU7fcY,10461
|
|
23
22
|
autobyteus/agent/events/notifiers.py,sha256=UTLFC2OeBMftku97rAFSZU8J12Ji8s4iPeEZTovyEBQ,7455
|
|
24
|
-
autobyteus/agent/events/worker_event_dispatcher.py,sha256=
|
|
23
|
+
autobyteus/agent/events/worker_event_dispatcher.py,sha256=wE63Qq4gw0JhkxvpuvbxUJHhbjzKSfhinjuF6epfR04,6165
|
|
25
24
|
autobyteus/agent/factory/__init__.py,sha256=4_PxMM-S_BRuYoQBHIffY6bXpBdEv-zFyuB6YaK93Yw,204
|
|
26
25
|
autobyteus/agent/factory/agent_factory.py,sha256=8vrsGTvZi0XIVZxpB3CHiiSLIv9Rdar9SaQ8Y5v5gLo,6673
|
|
27
|
-
autobyteus/agent/group/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
28
|
-
autobyteus/agent/group/agent_group.py,sha256=Y6ELJcDPGefOwkE3P4mlqfITxIcqUTI6XhfHUabhrD8,9304
|
|
29
|
-
autobyteus/agent/group/agent_group_context.py,sha256=kPsztFCClNdubdnOaJaYR9aYsL8QtWmPOuJjMOiUIm8,3437
|
|
30
26
|
autobyteus/agent/handlers/__init__.py,sha256=UFIEqdaET3zTYnHJAJpjiSVS9euWqQuaVMlVTN6dyAY,1510
|
|
31
27
|
autobyteus/agent/handlers/approved_tool_invocation_event_handler.py,sha256=ND9XzSXIQOaj16AOs37gaPGGSgU1BXRK7CrWK_-wL8Y,7857
|
|
32
28
|
autobyteus/agent/handlers/base_event_handler.py,sha256=G2vtFJT_vyObWTgrgwIgRwOssBQ-6A3gxHtc7S4SEuQ,1264
|
|
33
29
|
autobyteus/agent/handlers/event_handler_registry.py,sha256=95BCsKtxKFFSsliSJOCb6nw10TMbiRK2qM366DDuZKM,3474
|
|
34
30
|
autobyteus/agent/handlers/generic_event_handler.py,sha256=759BrDJI-sesY74YN3CX3OfTM44vLGyj6Sg1gd8eJ_w,1888
|
|
35
|
-
autobyteus/agent/handlers/inter_agent_message_event_handler.py,sha256=
|
|
31
|
+
autobyteus/agent/handlers/inter_agent_message_event_handler.py,sha256=cPofsprTTbWHfVNJkvjn_0VTLQ7pTzuCEMM1BgWzTF8,3286
|
|
36
32
|
autobyteus/agent/handlers/lifecycle_event_logger.py,sha256=-j5GhlCPauPwJMUOMUL53__wweZTsamhYXNbvQklnoY,2656
|
|
37
33
|
autobyteus/agent/handlers/llm_complete_response_received_event_handler.py,sha256=FL8HHQCWhQrHCPgGsQO0pQhmkFsefAYwrtCU4Kj5pM0,7775
|
|
38
|
-
autobyteus/agent/handlers/llm_user_message_ready_event_handler.py,sha256=
|
|
34
|
+
autobyteus/agent/handlers/llm_user_message_ready_event_handler.py,sha256=hUy4lSOMmTFWNZwtCGB4JWdhurUe49yr6Mf5p4RTNcs,7666
|
|
39
35
|
autobyteus/agent/handlers/tool_execution_approval_event_handler.py,sha256=Tda_LrlIPbEwVzf1I6u4Vb9sPmAbGQRqT_2-Q9ukLhw,4489
|
|
40
36
|
autobyteus/agent/handlers/tool_invocation_request_event_handler.py,sha256=AjNGQgRCQkjXvYThd_AaPj0Lzh1adEkhYJO83alxVAY,10957
|
|
41
|
-
autobyteus/agent/handlers/tool_result_event_handler.py,sha256
|
|
42
|
-
autobyteus/agent/handlers/user_input_message_event_handler.py,sha256=
|
|
37
|
+
autobyteus/agent/handlers/tool_result_event_handler.py,sha256=CXsEHVWJ9PJCD8d1E7ytTzQCnApJxk9bj3j6OfEvQ_A,7341
|
|
38
|
+
autobyteus/agent/handlers/user_input_message_event_handler.py,sha256=i_ltYlS3ELgZ-ymXviD4h9S2h24pOFV5EO5coaqNkXQ,4224
|
|
43
39
|
autobyteus/agent/hooks/__init__.py,sha256=a1do0Ribb2Hpf9t0Xqxhf3Ls7R6EQuWJtfTGQK7VjUM,495
|
|
44
40
|
autobyteus/agent/hooks/base_phase_hook.py,sha256=7JU3FgPzX06Yg6eJgB4GXzXcaWTpOcEMmyw5Ku0mwJk,2040
|
|
45
41
|
autobyteus/agent/hooks/hook_definition.py,sha256=4aA4iZnxMnw9n6sGThD-kCt3JPQSjPQDCd5D7Q7uzQs,1273
|
|
46
42
|
autobyteus/agent/hooks/hook_meta.py,sha256=QHqEDug46EgDHrZYyacdXkFhnE39Zq2oPbgBgB27E6I,1590
|
|
47
43
|
autobyteus/agent/hooks/hook_registry.py,sha256=j0EXgv-cVYacFePNur_yrPhx8aH5OFdINxg2U_Y3Xr4,4410
|
|
48
|
-
autobyteus/agent/input_processor/__init__.py,sha256=
|
|
44
|
+
autobyteus/agent/input_processor/__init__.py,sha256=uyxNlVWQXkHshNFp-9MkjRjMK0f7Ve0Mjx_d-q8C8Ic,330
|
|
49
45
|
autobyteus/agent/input_processor/base_user_input_processor.py,sha256=elmg4qLV0MARYsgE0zbDTU8gLFpRe4FmBda0lzanDmE,2197
|
|
50
|
-
autobyteus/agent/input_processor/content_prefixing_input_processor.py,sha256=NeFgL-eDMYDDEV4c6WY8o0r3Q7RSsN0KuvzLY48Hxi8,1958
|
|
51
|
-
autobyteus/agent/input_processor/metadata_appending_input_processor.py,sha256=2RyI8zzf97wn31JtiyQg_EPhP-DVH2uD3nrEEuAWS_0,1548
|
|
52
|
-
autobyteus/agent/input_processor/passthrough_input_processor.py,sha256=nQO4Lijhb2PK4yKzV6iQCUG_hX6A98OtEwpgdWnscec,1347
|
|
53
46
|
autobyteus/agent/input_processor/processor_definition.py,sha256=ISRHvjbBhlG2DYdgSK4hN3i8w1DJkgPOvCDY06TuslQ,2101
|
|
54
47
|
autobyteus/agent/input_processor/processor_meta.py,sha256=Ns_VcPbK4-xLlpbdFIC_xWfgoXDHVduVTNN7EUCUPgU,2241
|
|
55
48
|
autobyteus/agent/input_processor/processor_registry.py,sha256=uIDttiadUSO-1QO0Qmjmc-YkKKnrYXsjxRLNj7ihzco,5049
|
|
@@ -58,16 +51,16 @@ autobyteus/agent/llm_response_processor/base_processor.py,sha256=U9oKMwbz_oYYw__
|
|
|
58
51
|
autobyteus/agent/llm_response_processor/processor_definition.py,sha256=AMLmiL8dMlTpmBKmQrqrfNTfwJLyL6kLHYGqJ-Ly8bE,1464
|
|
59
52
|
autobyteus/agent/llm_response_processor/processor_meta.py,sha256=RC32R5SVTSpBEOdexVh_SOTIydv0_ElWGP7PsXB-q_Q,1813
|
|
60
53
|
autobyteus/agent/llm_response_processor/processor_registry.py,sha256=K31pYAujCqnuVXLd_c7gekJfczkagfLC2nI6TciWKBU,4768
|
|
61
|
-
autobyteus/agent/llm_response_processor/provider_aware_tool_usage_processor.py,sha256=
|
|
54
|
+
autobyteus/agent/llm_response_processor/provider_aware_tool_usage_processor.py,sha256=VMFhhZu-39xaZs3AWfPc_JIMjLNvIpjtv0GajigZlyw,3644
|
|
62
55
|
autobyteus/agent/message/__init__.py,sha256=xRs_zyqW1e_Z6R2hu8bGj6sB5s86ZgQQMDkqoRE9kGY,681
|
|
63
56
|
autobyteus/agent/message/agent_input_user_message.py,sha256=NCy-1CjB4SFj4O05cH6HyC-lK-nZaspUh7bc3iwemD8,4838
|
|
64
57
|
autobyteus/agent/message/context_file.py,sha256=VCwuN9qWKUHe1sZOWKQMwnbj1DzaeyfbML9wXU8SIL8,3376
|
|
65
|
-
autobyteus/agent/message/context_file_type.py,sha256=
|
|
58
|
+
autobyteus/agent/message/context_file_type.py,sha256=wpfL0o-0DU33uwS3Ufgc3eqFNiOfH7YgQVQuTRvTROQ,2541
|
|
66
59
|
autobyteus/agent/message/inter_agent_message.py,sha256=302oAt5PdrAqS1Cz80o7G6Kk3Ur1D9JNxze7Q0NI3dM,2436
|
|
67
60
|
autobyteus/agent/message/inter_agent_message_type.py,sha256=l-j0WB4F6yRXSSnHRKzNfmwnL4wX3usPN0JIrQthyEA,1130
|
|
68
|
-
autobyteus/agent/message/send_message_to.py,sha256=
|
|
61
|
+
autobyteus/agent/message/send_message_to.py,sha256=vWYOO4iNDdrqRo3KrUd8LE-AEqN_bjhbfcCtKQ_p2y8,5520
|
|
69
62
|
autobyteus/agent/phases/__init__.py,sha256=OC0T294mOGUk6pudSVLslHtfziBJEYd_VoA-LgWo9oE,558
|
|
70
|
-
autobyteus/agent/phases/discover.py,sha256=
|
|
63
|
+
autobyteus/agent/phases/discover.py,sha256=YuW0I8PyGysiyAf3jfR-cVesgSH5zi78uYZKqnM6dGU,1993
|
|
71
64
|
autobyteus/agent/phases/manager.py,sha256=-K3trAbDyXweGUxtgKPuUjQh7Cr2oFswR9KwhisT128,15604
|
|
72
65
|
autobyteus/agent/phases/phase_enum.py,sha256=Ubd_fraZxYRJUM7DdeLEjL0Vvm1RzBcCuOUgVKHBELE,2882
|
|
73
66
|
autobyteus/agent/phases/transition_decorator.py,sha256=jiby_dzeytKGQFjnTQYQ1gziYh7F-2RnShajpHWWhFQ,1553
|
|
@@ -75,7 +68,12 @@ autobyteus/agent/phases/transition_info.py,sha256=wqA_ANUbDzjsgESUtgH4svVczPA6-L
|
|
|
75
68
|
autobyteus/agent/runtime/__init__.py,sha256=VQLu_-t86WkvLKEnGmbPksP53CrqgchqY8eB-DS-SsI,457
|
|
76
69
|
autobyteus/agent/runtime/agent_runtime.py,sha256=cGN9_kNQcgbG6HTZNkBFv5-xeod6Z5wBTeZCzrTVX9o,6483
|
|
77
70
|
autobyteus/agent/runtime/agent_thread_pool_manager.py,sha256=-dyo3LQ4Mi1upUyyp-8EmQuRXWamIcESc1-WCVSS0dM,3607
|
|
78
|
-
autobyteus/agent/runtime/agent_worker.py,sha256=
|
|
71
|
+
autobyteus/agent/runtime/agent_worker.py,sha256=xGHjMMgDjTykIm5yBfIc1x0ylCGh8UQ1ITmoWyCKyZQ,11264
|
|
72
|
+
autobyteus/agent/shutdown_steps/__init__.py,sha256=583P5F3eBdqkmwBlnqua0PBZjHpnsfNEZgGxFw3x-4o,574
|
|
73
|
+
autobyteus/agent/shutdown_steps/agent_shutdown_orchestrator.py,sha256=5y8Ynm0zDbV00NkiJ4XNoM9U7T0vEp5E_fkUt4pTAVI,2475
|
|
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
|
|
79
77
|
autobyteus/agent/streaming/__init__.py,sha256=ul7QUIjv5q1nYwzrU1nsVBsKZwpthdmUGsP3UPWmJ34,447
|
|
80
78
|
autobyteus/agent/streaming/agent_event_stream.py,sha256=cNF0KnHenAfxYNnZwaQ4OwH-iswRr6DqFdC06O4wHOE,9723
|
|
81
79
|
autobyteus/agent/streaming/queue_streamer.py,sha256=lTMyFwuf_NBJL6hrUIoz5-pqWSlM7fgz1xcVB73y1bk,2354
|
|
@@ -87,32 +85,45 @@ autobyteus/agent/system_prompt_processor/processor_definition.py,sha256=r2ry7igU
|
|
|
87
85
|
autobyteus/agent/system_prompt_processor/processor_meta.py,sha256=aQLo0WE58HVQf4lkDxej2Lz4XFLWddUd24ZPWscnsyo,2356
|
|
88
86
|
autobyteus/agent/system_prompt_processor/processor_registry.py,sha256=VjjFiQ2z3Sxb_ZBVJ1omCcqompA2ttN815YEnx0R2lE,5007
|
|
89
87
|
autobyteus/agent/system_prompt_processor/tool_manifest_injector_processor.py,sha256=9p1HWI6DyK5-82ij6d7bPI8QHlxYcr9B4dZZG-X5Lrg,4087
|
|
88
|
+
autobyteus/agent/tool_execution_result_processor/__init__.py,sha256=GKiNSMvVvwuBce0z1wEUaf48NOzOqugzvB5Utxt8w7w,286
|
|
89
|
+
autobyteus/agent/tool_execution_result_processor/base_processor.py,sha256=0X_0W5dEYBZmWzVp6iiBwTCb0Gdm1Om_PxcoOyIHuW4,1546
|
|
90
|
+
autobyteus/agent/tool_execution_result_processor/processor_definition.py,sha256=Zr5a-DwKNdYuSO-UAD2R6Rg686YQAin5FhA6pWnxUVQ,1555
|
|
91
|
+
autobyteus/agent/tool_execution_result_processor/processor_meta.py,sha256=uUSvKeVVg6lq8aTCTvkKQjWlEOB2l0cn4FheC4s2hp8,1772
|
|
92
|
+
autobyteus/agent/tool_execution_result_processor/processor_registry.py,sha256=On8KGadeN17RCst3HuVPCPV5dbdG0raufpqwvUOv06I,2955
|
|
90
93
|
autobyteus/agent/utils/__init__.py,sha256=vau-Zjww0qxPyo9SetL7aLUEw-99PX8Nv8TEDngUlKs,210
|
|
91
94
|
autobyteus/agent/utils/wait_for_idle.py,sha256=S0jQ9-GyfXymTkv_VTG9tVmMQXSsLAU4hsfuAxspTp4,2464
|
|
92
|
-
autobyteus/agent/workflow/__init__.py,sha256=kqIBgWz7oAO4AGGrurNy142tRweSwt2hOmdOKqLNcyU,286
|
|
93
|
-
autobyteus/agent/workflow/agentic_workflow.py,sha256=dRgPAtIO3lUyEpjQcsSNY3OoR144XhabeTbr4rok5Ss,4018
|
|
94
|
-
autobyteus/agent/workflow/base_agentic_workflow.py,sha256=ihDRMEJCfc_l88sgu3quaKW6CoNhh-RaLG3fMQfJh5M,4070
|
|
95
95
|
autobyteus/agent/workspace/__init__.py,sha256=7a16HpWxic9zxxsmZeICnBGHK_Z2K9yJUv4z9YELKfw,277
|
|
96
|
-
autobyteus/agent/workspace/base_workspace.py,sha256=
|
|
96
|
+
autobyteus/agent/workspace/base_workspace.py,sha256=Kw9EZ_5iyatlf69VQaUf8nKgRjGxBef4VctLocLzHG0,3569
|
|
97
97
|
autobyteus/agent/workspace/workspace_config.py,sha256=UfDpOkCH5B7ddt227zoQdmq8bCvI0wTL9vPAB6tOH24,5571
|
|
98
98
|
autobyteus/agent/workspace/workspace_definition.py,sha256=l959gPAVSF17ym9P4y7vf4LuiibcVzom2y0AEmQT7Ak,1476
|
|
99
99
|
autobyteus/agent/workspace/workspace_meta.py,sha256=xuw1-lYQiK5YyyDDc_5uT3uOGL0FfwLC8zCQiSyyQro,1680
|
|
100
100
|
autobyteus/agent/workspace/workspace_registry.py,sha256=A_wADwvZOm1XutBgkn_-FBkqb4tS1fRtALrKe2XRDhw,3182
|
|
101
|
-
autobyteus/cli/__init__.py,sha256=
|
|
101
|
+
autobyteus/cli/__init__.py,sha256=FpcugZofPrQzll16-OFcDypbven0J2mBPxNVgQ3eAxY,266
|
|
102
102
|
autobyteus/cli/agent_cli.py,sha256=Ua6MnuVHmNgelnZQ8B8ZMFk2nyN-VNPijNzyucVVPis,4818
|
|
103
|
-
autobyteus/cli/cli_display.py,sha256=
|
|
103
|
+
autobyteus/cli/cli_display.py,sha256=F0mBDnaqmQJCfhqO-ccVxd_UGklCRuNoGZ4aa8ApMKs,9493
|
|
104
|
+
autobyteus/cli/workflow_tui/__init__.py,sha256=xbWMXwK_a-IX-dM3m1TJkm9SHT--bqiHVgkS5XCA6vM,127
|
|
105
|
+
autobyteus/cli/workflow_tui/app.py,sha256=DZPHPIrjz5-YBxwybDylokemtzqO9Ac49hdhkBdXCwQ,9681
|
|
106
|
+
autobyteus/cli/workflow_tui/state.py,sha256=JA3MOGpV25yin6dMO8AWRLSOgCEcd5oKtfNROU8RavM,9477
|
|
107
|
+
autobyteus/cli/workflow_tui/widgets/__init__.py,sha256=CsygQhYM_MoTURsJ9PpkZi_yXy-9g7Z8WQdNZ3BfD9E,169
|
|
108
|
+
autobyteus/cli/workflow_tui/widgets/agent_list_sidebar.py,sha256=qL3jZGsQuc-76fMESpsixD32dwOt5RH0Z0mS0QNECps,6626
|
|
109
|
+
autobyteus/cli/workflow_tui/widgets/focus_pane.py,sha256=ynqALGeViHqF2ZadidzStf1jnixdyqRAEw7A3YrQTbg,16756
|
|
110
|
+
autobyteus/cli/workflow_tui/widgets/logo.py,sha256=TvfxdBvDXknf7-2vD3xkHuZkiymhMDFaJaCLl2y7msI,906
|
|
111
|
+
autobyteus/cli/workflow_tui/widgets/renderables.py,sha256=hkRTjwz5DPSqaO8_8Zuvt1XxxAePZ9vGp582b3UMF18,3030
|
|
112
|
+
autobyteus/cli/workflow_tui/widgets/shared.py,sha256=vXUrJ0vU7gMLzi7j8mAdhSMgPMno1LanhHxkeyMOQtA,1732
|
|
113
|
+
autobyteus/cli/workflow_tui/widgets/status_bar.py,sha256=PLkw2IxJ4T2cDt-3HKRhnIme4luYIvXr1HpBVmfJH1c,455
|
|
104
114
|
autobyteus/events/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
105
115
|
autobyteus/events/event_emitter.py,sha256=WKKwISFo2yDx0OpLjGFtXEl3DVV1siB0lXdndIAHhBg,2522
|
|
106
116
|
autobyteus/events/event_manager.py,sha256=c5RMlCtKzkHgQZkePBvqxPAxxOu-NapUrl8c2oRDkT8,5841
|
|
107
|
-
autobyteus/events/event_types.py,sha256=
|
|
117
|
+
autobyteus/events/event_types.py,sha256=8-ekBWBT08U8sBByAPNnaCMErkTQbkDZsMQOsblmM2I,2769
|
|
108
118
|
autobyteus/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
109
119
|
autobyteus/llm/autobyteus_provider.py,sha256=WCLUZM24UUB9Gl32WKgwoyXx41pnRXJiz-c9PpiC_C4,6747
|
|
110
120
|
autobyteus/llm/base_llm.py,sha256=XwVnihE6Qy6L8HPWUIXTKCYcKgoxYuw2Om8PivwlbU0,11597
|
|
111
|
-
autobyteus/llm/llm_factory.py,sha256=
|
|
121
|
+
autobyteus/llm/llm_factory.py,sha256=DCLK_H-mV7uQtdPt5KAMMYgW4RpWN-OMPLoj_lKJHac,16552
|
|
122
|
+
autobyteus/llm/lmstudio_provider.py,sha256=cydBTwsnT8MGzok8_5liHzq5YcK37fovOuY9czXASWg,3522
|
|
112
123
|
autobyteus/llm/models.py,sha256=Dg_1dLAOwJ9H1NJWnQ7GaTdYiX8_ESbh_tZN67dl8-I,5825
|
|
113
124
|
autobyteus/llm/ollama_provider.py,sha256=xInqOsZjHQ_1xzvO67vAR7NBausMeUCtRG1FY236lUQ,4230
|
|
114
125
|
autobyteus/llm/ollama_provider_resolver.py,sha256=O0eKyE6Lj6ozhyWV72sOb-A7Iw9cwFHsBjcD-HH6tHM,1774
|
|
115
|
-
autobyteus/llm/providers.py,sha256=
|
|
126
|
+
autobyteus/llm/providers.py,sha256=ws6NgD6467wxzKhb06oUqzZGQNLktzcdxViHxn9tjGo,354
|
|
116
127
|
autobyteus/llm/user_message.py,sha256=5FfDOKN-ohBhQy3mTTezv4zTAwcfmcyE0zODNCfRxdo,3200
|
|
117
128
|
autobyteus/llm/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
118
129
|
autobyteus/llm/api/autobyteus_llm.py,sha256=iJJ2luB1YVg0lEuS8nHPm8h1axouSGEGvoFk2g4o2jo,4896
|
|
@@ -123,10 +134,11 @@ autobyteus/llm/api/gemini_llm.py,sha256=pIH72Lodw5-w0XWKeybUza55cQ5BJChdgSzbWEVw
|
|
|
123
134
|
autobyteus/llm/api/grok_llm.py,sha256=oZIkJrRhbvcKSrho5hLWqqRxO5SUfbwutKW1g-mPQC0,875
|
|
124
135
|
autobyteus/llm/api/groq_llm.py,sha256=pq30UuR4NGVCVxMxcGTK2AVBTHtCymAi44hlkfvsXiY,3482
|
|
125
136
|
autobyteus/llm/api/kimi_llm.py,sha256=oUgmP_D0ppr0zKhgRVyjxRMP8cEMGXB2DFUgXYqRlCg,873
|
|
137
|
+
autobyteus/llm/api/lmstudio_llm.py,sha256=f0SDcX3U0MWI985DLwf73Z3uPNFP9XI6xMxRLdRZ584,1446
|
|
126
138
|
autobyteus/llm/api/mistral_llm.py,sha256=VdVqEXp5GdXZJQ7NVXmiV9AVDYltb3neqo2EugDIMds,5019
|
|
127
139
|
autobyteus/llm/api/nvidia_llm.py,sha256=jh1cz1zQtCVwYxFSFW9y6LXCW6rv8FdvjTCHvyoBzwc,3913
|
|
128
140
|
autobyteus/llm/api/ollama_llm.py,sha256=hOB4FciwLhivKEKL8_UXM_qVxFGD8gop0xtXbQkDHo0,5959
|
|
129
|
-
autobyteus/llm/api/openai_compatible_llm.py,sha256=
|
|
141
|
+
autobyteus/llm/api/openai_compatible_llm.py,sha256=JNfgEJMRGinieo7RwY9jrdM7qusGvorMsggtq7LQ5fM,8691
|
|
130
142
|
autobyteus/llm/api/openai_llm.py,sha256=414fWDFvTm7IkG3STfYCWT4mz1FQwEGnD4N5MpTyf6M,905
|
|
131
143
|
autobyteus/llm/extensions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
132
144
|
autobyteus/llm/extensions/base_extension.py,sha256=0HE-od2MxITaBMHCzIrnkQ6n40-0R7jxA7GxPFeJ8Gg,1322
|
|
@@ -139,7 +151,7 @@ autobyteus/llm/token_counter/deepseek_token_counter.py,sha256=YWCng71H6h5ZQX0Drj
|
|
|
139
151
|
autobyteus/llm/token_counter/kimi_token_counter.py,sha256=KuzgcbSWiqybCKHaukd-n917zEgUFebGXMAxlkZxue8,854
|
|
140
152
|
autobyteus/llm/token_counter/mistral_token_counter.py,sha256=YAUPqksnonTQRd1C7NjjFUPsjEDq_AKWxTc5GNTVGqU,4760
|
|
141
153
|
autobyteus/llm/token_counter/openai_token_counter.py,sha256=hGpKSo52NjtLKU8ZMHr76243wglFkfM9-ycSXJW-cwE,2811
|
|
142
|
-
autobyteus/llm/token_counter/token_counter_factory.py,sha256=
|
|
154
|
+
autobyteus/llm/token_counter/token_counter_factory.py,sha256=8lrIfKCOrhqKO96yhAuH24ilPuRMpMYgO-cdGeJU0qI,2102
|
|
143
155
|
autobyteus/llm/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
144
156
|
autobyteus/llm/utils/image_payload_formatter.py,sha256=2T21VK2Ql-AoxHGkfQGv2UX6CjMMBMzv1Hy4ekUdzfU,2661
|
|
145
157
|
autobyteus/llm/utils/llm_config.py,sha256=Q1_k0EnRqmUgbh9QeSs2F78fyPHA4cfVvJJE9iXQ2-w,9047
|
|
@@ -177,28 +189,29 @@ autobyteus/rpc/server/base_method_handler.py,sha256=6sKWucR1vUYeritjJPHIX_sCQOD2
|
|
|
177
189
|
autobyteus/rpc/server/method_handlers.py,sha256=Zqrr1R3yu_hVD0qCOPpxXm4ujkvdds9wCCneIeT3gU8,14702
|
|
178
190
|
autobyteus/rpc/server/sse_server_handler.py,sha256=3F1LNLw6fXcB08hmWOUhGZROYhpPdk8xwz2TakiR-2M,16273
|
|
179
191
|
autobyteus/rpc/server/stdio_server_handler.py,sha256=pSAvVtxyo0Hytzld7WINeKHvGBqEjp0Bad-xkY2Rul4,7398
|
|
180
|
-
autobyteus/tools/__init__.py,sha256=
|
|
181
|
-
autobyteus/tools/ask_user_input.py,sha256=
|
|
182
|
-
autobyteus/tools/base_tool.py,sha256=
|
|
183
|
-
autobyteus/tools/functional_tool.py,sha256=
|
|
184
|
-
autobyteus/tools/image_downloader.py,sha256=
|
|
192
|
+
autobyteus/tools/__init__.py,sha256=82FKptxtN04HG_1YnnNnOzdpJKgKKhF7gAGdfkLLhNk,3004
|
|
193
|
+
autobyteus/tools/ask_user_input.py,sha256=2KHv7kRR9yyd5VKLgW-vJiE4HiYiFozHsVN4_5NhhdE,1649
|
|
194
|
+
autobyteus/tools/base_tool.py,sha256=x8Hjth7koJ6Brgi70phlm46K5SC9ofH4qokl4QqM9JQ,5159
|
|
195
|
+
autobyteus/tools/functional_tool.py,sha256=_WBv_mZCTIaekBwlOLiV8A7nLZhJiR-HYG6WJDij-eg,10393
|
|
196
|
+
autobyteus/tools/image_downloader.py,sha256=IQ-P1IBwLvbp8jyhtxLu54acWldJ6miFYkVIz7tHCMQ,4868
|
|
185
197
|
autobyteus/tools/parameter_schema.py,sha256=y_CJywuOO1o14lTtwaXAVOR3B55JZAKJyZ175v-EJsE,10818
|
|
186
|
-
autobyteus/tools/pdf_downloader.py,sha256=
|
|
187
|
-
autobyteus/tools/timer.py,sha256=
|
|
188
|
-
autobyteus/tools/tool_category.py,sha256=
|
|
198
|
+
autobyteus/tools/pdf_downloader.py,sha256=0WeznZhkYvXvgU2CH21q6LSVEQm8S1mAm7gtw_CjsJM,3927
|
|
199
|
+
autobyteus/tools/timer.py,sha256=hPei4QONtpdQrSS72_SNw6-j-gVd5NT2RScAhqMhRSY,7384
|
|
200
|
+
autobyteus/tools/tool_category.py,sha256=S1g-aE9eXod94evR8e-L7PfT0f17UUYSI9u663rPPZI,649
|
|
189
201
|
autobyteus/tools/tool_config.py,sha256=gnzGweccECNmCeufkzbskHeFOt3f0431DyAmMhqNVn4,3564
|
|
190
|
-
autobyteus/tools/tool_meta.py,sha256=
|
|
202
|
+
autobyteus/tools/tool_meta.py,sha256=X2JOY5fcPSvUMdgUQr0zTV5bRDuAmF7vuUMax5X5DhE,4417
|
|
203
|
+
autobyteus/tools/tool_origin.py,sha256=X1RqyDMWg2n7v0TciJHh5eiXgDDoU86BEQL3hx975jk,269
|
|
191
204
|
autobyteus/tools/tool_state.py,sha256=CwmEu7GTdaE72QIsdsXQu0AmTxQTp5hMncFcY58PkGo,746
|
|
192
205
|
autobyteus/tools/utils.py,sha256=PuHGlARmNx5HA2YFVF5XA36MoeAyFL6voK10S12AYS0,546
|
|
193
206
|
autobyteus/tools/bash/__init__.py,sha256=X38g3OVhlr-6aLIYfcSyh8DzqHAEh8dSzfEH1NEH7aw,99
|
|
194
|
-
autobyteus/tools/bash/bash_executor.py,sha256=
|
|
207
|
+
autobyteus/tools/bash/bash_executor.py,sha256=j8geFGcWh8pNfr0O_jrixGQBHJC9yZ5GFH32hNDmAAg,2230
|
|
195
208
|
autobyteus/tools/browser/__init__.py,sha256=fNt3qo9ykOIhfG7CmbelCabMydhPTWL-5timHXBa8ZI,91
|
|
196
209
|
autobyteus/tools/browser/session_aware/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
197
|
-
autobyteus/tools/browser/session_aware/browser_session_aware_navigate_to.py,sha256=
|
|
210
|
+
autobyteus/tools/browser/session_aware/browser_session_aware_navigate_to.py,sha256=RuBtv9OfqSXIlSlIdaNv5Pcv82_FPnaK510kdHwr9sM,3099
|
|
198
211
|
autobyteus/tools/browser/session_aware/browser_session_aware_tool.py,sha256=Jw3z_KY0h-hcheav9cWmTPoKGth69DePfBs-SshxUAQ,1525
|
|
199
|
-
autobyteus/tools/browser/session_aware/browser_session_aware_web_element_trigger.py,sha256=
|
|
200
|
-
autobyteus/tools/browser/session_aware/browser_session_aware_webpage_reader.py,sha256=
|
|
201
|
-
autobyteus/tools/browser/session_aware/browser_session_aware_webpage_screenshot_taker.py,sha256=
|
|
212
|
+
autobyteus/tools/browser/session_aware/browser_session_aware_web_element_trigger.py,sha256=lgZF4bIReUQjlsIWNlNk8za_-oo9nGiZafRvO1wa0FE,7014
|
|
213
|
+
autobyteus/tools/browser/session_aware/browser_session_aware_webpage_reader.py,sha256=Gltfx7xx7Ku0Jpyf8uKoRe7SBjAfajr1jBqXGUcZvOc,3996
|
|
214
|
+
autobyteus/tools/browser/session_aware/browser_session_aware_webpage_screenshot_taker.py,sha256=xm3M2-9xCZ4GjjUQYcCmIwb-xtw1cPqW94ar5x3l9SE,4711
|
|
202
215
|
autobyteus/tools/browser/session_aware/shared_browser_session.py,sha256=WjdkY6vrE96hluwHQS8U0K5z3XE8QMw2-fDRv5VFhXA,326
|
|
203
216
|
autobyteus/tools/browser/session_aware/shared_browser_session_manager.py,sha256=OAFzqLHWWxtVnU-zYGYFPLwiVTzhW7C6UA3y70-lBQU,1103
|
|
204
217
|
autobyteus/tools/browser/session_aware/web_element_action.py,sha256=jPWGmqoTB7Hpk6APQOWglLUaJmf5c_nR8Hh0AbT4fkM,477
|
|
@@ -207,12 +220,12 @@ autobyteus/tools/browser/session_aware/factory/browser_session_aware_web_element
|
|
|
207
220
|
autobyteus/tools/browser/session_aware/factory/browser_session_aware_webpage_reader_factory.py,sha256=WmW9yU_KVjvDNSlxWPkdXljM9h4-zZRoZH7GP6sQndA,1335
|
|
208
221
|
autobyteus/tools/browser/session_aware/factory/browser_session_aware_webpage_screenshot_taker_factory.py,sha256=uxv7cLtlXg9Vdl82_r1K-wEHKfXzrmngGwT8rd5u4JQ,717
|
|
209
222
|
autobyteus/tools/browser/standalone/__init__.py,sha256=68N5TpeIyKMW4Y8b7kIO0lyUYIcNPBwZoTg_W9lMfpM,369
|
|
210
|
-
autobyteus/tools/browser/standalone/google_search_ui.py,sha256=
|
|
211
|
-
autobyteus/tools/browser/standalone/navigate_to.py,sha256=
|
|
212
|
-
autobyteus/tools/browser/standalone/web_page_pdf_generator.py,sha256=
|
|
213
|
-
autobyteus/tools/browser/standalone/webpage_image_downloader.py,sha256=
|
|
214
|
-
autobyteus/tools/browser/standalone/webpage_reader.py,sha256=
|
|
215
|
-
autobyteus/tools/browser/standalone/webpage_screenshot_taker.py,sha256=
|
|
223
|
+
autobyteus/tools/browser/standalone/google_search_ui.py,sha256=9tHusVs5jM2Zu1W48_YxAsePZJp9Z8-dOZptl7WURpM,5388
|
|
224
|
+
autobyteus/tools/browser/standalone/navigate_to.py,sha256=Z_V0DRzu-1zwYXTVMaCbCl9ltuEAPqoz7wGvq2IVaoQ,3458
|
|
225
|
+
autobyteus/tools/browser/standalone/web_page_pdf_generator.py,sha256=UvRrUjJMVyBrG1JqTg67DCrOGboI44Hvard2UO_k9WM,4041
|
|
226
|
+
autobyteus/tools/browser/standalone/webpage_image_downloader.py,sha256=oH4dnEQBx8DVhitP4tozoHRVO9ue-rGA_ZSJJyJotUI,7159
|
|
227
|
+
autobyteus/tools/browser/standalone/webpage_reader.py,sha256=9N_NlbB7YnrT_MpkP_nLzWKYopMLM6eWJJ2wQmuGgVI,4254
|
|
228
|
+
autobyteus/tools/browser/standalone/webpage_screenshot_taker.py,sha256=iy9qwl2zLaHxlc4kuZuLo3Q3tJfWGmiSekXZJzHDOJU,4424
|
|
216
229
|
autobyteus/tools/browser/standalone/factory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
217
230
|
autobyteus/tools/browser/standalone/factory/google_search_factory.py,sha256=bgsRr7gix1L96sVwAF19pbQklPPYNEhz2Et6JdIViwE,1120
|
|
218
231
|
autobyteus/tools/browser/standalone/factory/webpage_reader_factory.py,sha256=R9PJPf7MF3cP8q8ffMKU5-ihPJWHJkVDYXZswZNdGS0,1131
|
|
@@ -220,30 +233,35 @@ autobyteus/tools/browser/standalone/factory/webpage_screenshot_taker_factory.py,
|
|
|
220
233
|
autobyteus/tools/factory/__init__.py,sha256=EQXbTH6BcqK2SM3JEq2PkLwzZSczExv3KDvlhWHlsGQ,275
|
|
221
234
|
autobyteus/tools/factory/tool_factory.py,sha256=-gUhcBwiQu1FQiR0nAKJp1aUZ2sXbcz-pIn4f4heFbE,1066
|
|
222
235
|
autobyteus/tools/file/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
223
|
-
autobyteus/tools/file/file_reader.py,sha256=
|
|
224
|
-
autobyteus/tools/file/file_writer.py,sha256=
|
|
236
|
+
autobyteus/tools/file/file_reader.py,sha256=U8xtPXDkm-UHqizzHpTgq56-QuDLxhz8WhjlGgsseBU,2557
|
|
237
|
+
autobyteus/tools/file/file_writer.py,sha256=LQgd9arr3jLFEzpjv6WnTP9XhsD44wxBVphgznqf7O4,2681
|
|
225
238
|
autobyteus/tools/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
226
239
|
autobyteus/tools/handlers/shell_handler.py,sha256=ClTXqFR45iyD0gcoOPpKRX5p6g_6BI4a5JOLuKuQOIA,1065
|
|
227
|
-
autobyteus/tools/mcp/__init__.py,sha256=
|
|
228
|
-
autobyteus/tools/mcp/config_service.py,sha256=
|
|
229
|
-
autobyteus/tools/mcp/factory.py,sha256=
|
|
230
|
-
autobyteus/tools/mcp/registrar.py,sha256=skxzG9dwJXK3AK4ksf1s-1HSFllzLuMWO5lQi0DNGVg,15261
|
|
240
|
+
autobyteus/tools/mcp/__init__.py,sha256=gwT34UgJe2rU5y4bYNOLI-PyAmRQTMWKz_WC4f2LcyE,1553
|
|
241
|
+
autobyteus/tools/mcp/config_service.py,sha256=b6xShFAcCzouMG5ICyBfTK_ebtj79dEU6YKr3wn2xTI,11212
|
|
242
|
+
autobyteus/tools/mcp/factory.py,sha256=SmPR6mgmwLEfzfole-zKuptKnSyeZEBi1t9gBbwCtZY,2204
|
|
231
243
|
autobyteus/tools/mcp/schema_mapper.py,sha256=PJGEAlqCgkoCThLzmkG3jXOXYk6fR1ogjSpOiCuFKsc,7502
|
|
232
|
-
autobyteus/tools/mcp/
|
|
233
|
-
autobyteus/tools/mcp/
|
|
234
|
-
autobyteus/tools/mcp/
|
|
244
|
+
autobyteus/tools/mcp/server_instance_manager.py,sha256=XJTKrA__fyKDxsWHwr9oqoxCboH2T3cJDFszQLKHhH8,4678
|
|
245
|
+
autobyteus/tools/mcp/tool.py,sha256=HpXSjvQjwwDzGGww1Cz3j4yCCLDiCYEv0RG-q-2BU4o,3380
|
|
246
|
+
autobyteus/tools/mcp/tool_registrar.py,sha256=ZfCQxu9CPu2TAIeZzaRrai-NvMW87VC1TW8bHKzPBNs,8622
|
|
247
|
+
autobyteus/tools/mcp/types.py,sha256=KiQUPhqzro5VW7piA-eOXkBcE0FThOUgr9Pw_7iV6Us,4171
|
|
248
|
+
autobyteus/tools/mcp/call_handlers/__init__.py,sha256=elxV-ttOoQ3Ve5idyIetdCzFDGlQBQ9UAG9okIpaI5c,516
|
|
235
249
|
autobyteus/tools/mcp/call_handlers/base_handler.py,sha256=q-34xq6w-561rwujmoJVvhJMexe4-bhqBq8ORc_W6qA,1252
|
|
236
|
-
autobyteus/tools/mcp/call_handlers/sse_handler.py,sha256=W73gJA9trEAsDqdfkbVEfHiUtNDibRXiIM5J-nGfxqw,760
|
|
237
250
|
autobyteus/tools/mcp/call_handlers/stdio_handler.py,sha256=HKbZYvX3PEZkZ60xmXgvFpEo4oYgss26l3bgswQvx2g,3522
|
|
238
251
|
autobyteus/tools/mcp/call_handlers/streamable_http_handler.py,sha256=P3qMErRqHBaXtqnx_fz5NNqw7ecps856UmIsLJnniF8,2702
|
|
252
|
+
autobyteus/tools/mcp/server/__init__.py,sha256=yfCMAtVlfy1x8aKEnRz9_CHnco2zVSdepwIPSjywSNw,523
|
|
253
|
+
autobyteus/tools/mcp/server/base_managed_mcp_server.py,sha256=ep-EKh4uqorrNYvv7D27Kh4fxR1f-E3hYMclFcWq0p4,5512
|
|
254
|
+
autobyteus/tools/mcp/server/http_managed_mcp_server.py,sha256=vuRh0N8xczposZxwffHkHDWXtV-5Sji7clKh6J-VqY8,1270
|
|
255
|
+
autobyteus/tools/mcp/server/proxy.py,sha256=08F3m1I_IH2wrRXK29R_NPDB6ITHpo982Mq9G53hbUo,1660
|
|
256
|
+
autobyteus/tools/mcp/server/stdio_managed_mcp_server.py,sha256=vFI9icgRLedgxgEKrzNqSXMXtsdHvUcOCVhDvTSFb68,1375
|
|
239
257
|
autobyteus/tools/operation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
240
258
|
autobyteus/tools/operation/file_operation.py,sha256=bAehQ9PfHoCDpk9Wa7vx9h3ohzVuaGzzBUogxleTwq8,2375
|
|
241
259
|
autobyteus/tools/operation/file_rename_operation.py,sha256=pExiC69HUzYbKihlVumlGHMGxmmrsKQB0JfAM5x4JH0,1710
|
|
242
260
|
autobyteus/tools/operation/operation.py,sha256=9sIZnlrPct5CwkCKuwbspVKvjF4KumP6twmXRo1blwo,1702
|
|
243
261
|
autobyteus/tools/operation/shell_operation.py,sha256=_BiGIRGWCzzwPVtbqFwXpHOvnqH68YqJujQI-gWeKx0,1860
|
|
244
262
|
autobyteus/tools/registry/__init__.py,sha256=39TSHm7mD6NXhsrczsX5Mdr32US0I6z3Bzad4hgcrrA,250
|
|
245
|
-
autobyteus/tools/registry/tool_definition.py,sha256=
|
|
246
|
-
autobyteus/tools/registry/tool_registry.py,sha256=
|
|
263
|
+
autobyteus/tools/registry/tool_definition.py,sha256=JGxMSVjlF9n3Uk2oCGXMhxb6WN3G3IqJNJTKKxwF0dw,7124
|
|
264
|
+
autobyteus/tools/registry/tool_registry.py,sha256=eekF5q3GZr3FwnwITGni-gyc46Vob5u3WoApmvEHPQ8,7564
|
|
247
265
|
autobyteus/tools/usage/__init__.py,sha256=0kJoUH-m0d1AHTYJQyXlCjlXhMJ3e95Ykf-8J9lO2g4,224
|
|
248
266
|
autobyteus/tools/usage/formatters/__init__.py,sha256=BThdI_R8Dkda1eHJFr1cQ7nLCgf5KfSuvWokjPrnT9U,1424
|
|
249
267
|
autobyteus/tools/usage/formatters/anthropic_json_example_formatter.py,sha256=EVVPZ7e1tG3QRcEPjdOC0yTvnGisubfUm9geWbd9r2g,792
|
|
@@ -290,11 +308,74 @@ autobyteus/utils/file_utils.py,sha256=QK0LvrwA5c9FDjpSrfPPEQbu_AirteJNiLad9yRahD
|
|
|
290
308
|
autobyteus/utils/html_cleaner.py,sha256=mI2V83yFRfQe8NnN6fr6Ujpa0bPlq25NW5tTKaz2WGk,8672
|
|
291
309
|
autobyteus/utils/singleton.py,sha256=YVURj5nRcMtzwFPxgy6ic4MSe3IUXNf6XWYuiXyhDOg,814
|
|
292
310
|
autobyteus/workflow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
293
|
-
autobyteus/workflow/
|
|
294
|
-
autobyteus/workflow/
|
|
295
|
-
autobyteus/workflow/
|
|
296
|
-
autobyteus
|
|
297
|
-
autobyteus
|
|
298
|
-
autobyteus
|
|
299
|
-
autobyteus
|
|
300
|
-
autobyteus
|
|
311
|
+
autobyteus/workflow/agentic_workflow.py,sha256=u1A_HkgNlPmKn2nXz_0u_l9_DSyt4hxRJSyojGonvAA,3765
|
|
312
|
+
autobyteus/workflow/base_agentic_workflow.py,sha256=fb7JZZ58p7HL-jQdzHybrMSEMSGgenoJ3D4prnWIBtk,3602
|
|
313
|
+
autobyteus/workflow/exceptions.py,sha256=mIHDol7s6bQX_LP8y00zDAnpjDXlAL4-3P8rX2nxA-Q,407
|
|
314
|
+
autobyteus/workflow/workflow_builder.py,sha256=_e3hlCTclQLN81XyJjbZ8uHSvKe6sgpeKA_8yL51e9c,6889
|
|
315
|
+
autobyteus/workflow/bootstrap_steps/__init__.py,sha256=9C9HvkXHNYJfI-OfXvMWOyerA1r6j1n3gLX2nE4fAKU,1034
|
|
316
|
+
autobyteus/workflow/bootstrap_steps/agent_tool_injection_step.py,sha256=LLPCKwzh0tQI6aUrWWrWNsU92uK-YdP0xDCkv1LWgTU,1942
|
|
317
|
+
autobyteus/workflow/bootstrap_steps/base_workflow_bootstrap_step.py,sha256=mj6SvAbKVL_HFygRh5QkuEhOhDhi4djU8opBARLa8fM,880
|
|
318
|
+
autobyteus/workflow/bootstrap_steps/coordinator_initialization_step.py,sha256=zZqc2fxOwy1Crll6VEXt2a8UC7ROSG_jmXC5Kjs7fhk,1927
|
|
319
|
+
autobyteus/workflow/bootstrap_steps/coordinator_prompt_preparation_step.py,sha256=aOHjTg-Ch9J2Eo_qPhHTblzmeKpeU6etWaVbde-Wjwk,5533
|
|
320
|
+
autobyteus/workflow/bootstrap_steps/workflow_bootstrapper.py,sha256=0fz-eN5DCtWPsYZLMUeFh-OOKQSBpwhN6ry3tAB5AM8,2746
|
|
321
|
+
autobyteus/workflow/bootstrap_steps/workflow_runtime_queue_initialization_step.py,sha256=uE8Ixgv66BMpzkBR_ohXY5i3A4CsaKdFmod514dzYj4,1369
|
|
322
|
+
autobyteus/workflow/context/__init__.py,sha256=aOkJMgX6bo7Cq1UBC4oENgb7lZYhMdJJSLJ-3uUhnA0,653
|
|
323
|
+
autobyteus/workflow/context/team_manager.py,sha256=EfWBdVsjnT9FJOhEFDZhlrdsJ9-qshDBq5sm7gkX5kA,7659
|
|
324
|
+
autobyteus/workflow/context/workflow_config.py,sha256=E3ylRyeC8WO37qHri9TmyShXht6-UqpMZIixBjucG7o,1174
|
|
325
|
+
autobyteus/workflow/context/workflow_context.py,sha256=JwFZr6Mof0tqLRndlgrQEz9iAkpie1i_URNUtUCSDJ0,2695
|
|
326
|
+
autobyteus/workflow/context/workflow_node_config.py,sha256=ka_ku03tKOwU-q9Is1lCt-Bpfj39gZk9KEE3lfEtNe8,3212
|
|
327
|
+
autobyteus/workflow/context/workflow_runtime_state.py,sha256=zEfPSXL6rSVib7hQrUFCRvI1MX85P7g2RUsLC2FF6ok,2810
|
|
328
|
+
autobyteus/workflow/events/__init__.py,sha256=7qNll9W8bpJRg63bzvZDdLLXwKQfoxsLFd-RLFPDGpA,949
|
|
329
|
+
autobyteus/workflow/events/workflow_event_dispatcher.py,sha256=aRn-R32AkS0Z38QJmHxRMX1msqdy25almwjbD6-zcls,1729
|
|
330
|
+
autobyteus/workflow/events/workflow_events.py,sha256=5IeDgjkImXZMMkpBn3u4d3PiKiLDHuDndb3FA1I_ycs,1744
|
|
331
|
+
autobyteus/workflow/events/workflow_input_event_queue_manager.py,sha256=JtTicSrEBXT6gQcUo5XLxuZ78NIDl2A1GtwRI44MONU,942
|
|
332
|
+
autobyteus/workflow/factory/__init__.py,sha256=W9Hq6EaVlpvHNj3I_6MpWluuLOxdPvpibH4AXlFX1f0,235
|
|
333
|
+
autobyteus/workflow/factory/workflow_factory.py,sha256=VpxDguKhG7ng3Z8-2Equqd6ligIn3FsXjeGDyP8ppjQ,4829
|
|
334
|
+
autobyteus/workflow/handlers/__init__.py,sha256=kgTir-RKwzsuUpODMcNjIzqFrw2LU4KQ8vWRcz-2ZCg,989
|
|
335
|
+
autobyteus/workflow/handlers/base_workflow_event_handler.py,sha256=1nA02qJuK4bk6gH3lyVCS85nfQtAO5tOifUp31FHfYk,580
|
|
336
|
+
autobyteus/workflow/handlers/inter_agent_message_request_event_handler.py,sha256=w9cq_GWZHp2996hh4tbgM598BpCTcdFfXx5dyGf39Q8,3388
|
|
337
|
+
autobyteus/workflow/handlers/lifecycle_workflow_event_handler.py,sha256=AtP1BZahYgbe-WV423bzZRPgvcGqh-I3mv5YqqYHwFI,1348
|
|
338
|
+
autobyteus/workflow/handlers/process_user_message_event_handler.py,sha256=TDEFwfONgNyHXOFtC56FEcxkRLr9FDmtXXONIcYC2lY,2602
|
|
339
|
+
autobyteus/workflow/handlers/tool_approval_workflow_event_handler.py,sha256=2nw4FhhjYSfHyYoeXW4v2s9ziy-Cb0sR-YrYHZg-8bM,1881
|
|
340
|
+
autobyteus/workflow/handlers/workflow_event_handler_registry.py,sha256=o-qXbg9VY4Ce8EtOGdbAhRXleQsWVjVE_idPK5rQTU8,1207
|
|
341
|
+
autobyteus/workflow/phases/__init__.py,sha256=GLqzLOHeiWXnUYTSrG8kRVqARU-litYdnwcGoGs5u-Q,403
|
|
342
|
+
autobyteus/workflow/phases/workflow_operational_phase.py,sha256=Do7YTKQ-NFCaqXyXf2HnMDoT6_WK1S5Td7K8CI-nsHk,674
|
|
343
|
+
autobyteus/workflow/phases/workflow_phase_manager.py,sha256=rJ90brGy0NoWRktAPkFuOVL4vZwJ1wBBPxdcLamSXLs,2346
|
|
344
|
+
autobyteus/workflow/runtime/__init__.py,sha256=WYLVQfP2zwgg8GtJSInTJZyVdr1mxRfvQRtSERmQfQQ,451
|
|
345
|
+
autobyteus/workflow/runtime/workflow_runtime.py,sha256=hZCVk7D4nsdjUAEQIMsprbWUi1mDrASx3hDfnSOt4IM,3894
|
|
346
|
+
autobyteus/workflow/runtime/workflow_worker.py,sha256=3QgyoZ7ahPmXcKEBSvTD29mmv4VPU4LBfD0xnJ_26zk,5598
|
|
347
|
+
autobyteus/workflow/shutdown_steps/__init__.py,sha256=6_d81qvsu5ViWi5BIjQ2pxIYjVKOnhmdtI5v031KXv8,802
|
|
348
|
+
autobyteus/workflow/shutdown_steps/agent_team_shutdown_step.py,sha256=27pJ0ysP1PzGcuU3mkwPorPenypN7jlZb18gh4MUDmI,1883
|
|
349
|
+
autobyteus/workflow/shutdown_steps/base_workflow_shutdown_step.py,sha256=c4fRHV56aTEOEVya5cvVEu15dgCjq4h3V93IKqrk4Ho,638
|
|
350
|
+
autobyteus/workflow/shutdown_steps/bridge_cleanup_step.py,sha256=rCDKe-Wdm4SY7ua0NRlp9i7wnIlmwqh-Nqze-qeGYcw,1183
|
|
351
|
+
autobyteus/workflow/shutdown_steps/sub_workflow_shutdown_step.py,sha256=odjGy3p3ikk2c713Iopsfe9vEX6RWa-4ZqjnKfry7kY,1861
|
|
352
|
+
autobyteus/workflow/shutdown_steps/workflow_shutdown_orchestrator.py,sha256=uZ77Ajnt5rzICXcjgyv19ckXEXi_pFnFNCyl-5MXMME,1580
|
|
353
|
+
autobyteus/workflow/streaming/__init__.py,sha256=-MFvSEtsgOpjABgrzHwugiauasE_eCK9Z7n99ldLZDg,877
|
|
354
|
+
autobyteus/workflow/streaming/agent_event_bridge.py,sha256=pT8tgXfQhdGb4LQ286tZcwmQZFrIbCBlIy_d7v1HGNE,2126
|
|
355
|
+
autobyteus/workflow/streaming/agent_event_multiplexer.py,sha256=VlBucqJJNHO7uwPAD7u5-0zTvmAkkqouaRyihJW5A6g,3765
|
|
356
|
+
autobyteus/workflow/streaming/workflow_event_bridge.py,sha256=BBgMQw1gruW-EgtK3SM-O21GG2qjaRem3BIWtsSlu_c,2461
|
|
357
|
+
autobyteus/workflow/streaming/workflow_event_notifier.py,sha256=GA1XPqWTEvdljYAJpifxrQtILORAGGuxWNldARmdVKA,3654
|
|
358
|
+
autobyteus/workflow/streaming/workflow_event_stream.py,sha256=XTOvbx1EWIh2x_-Nl5UcY6jCPnsgdS4GvoHjfRKj8yM,1540
|
|
359
|
+
autobyteus/workflow/streaming/workflow_stream_event_payloads.py,sha256=jv1bVYg-75Fa93gcK6Apavxu-crpeJ0w4QMmEa4Csno,1470
|
|
360
|
+
autobyteus/workflow/streaming/workflow_stream_events.py,sha256=75P29jNgcL7Go7D9wVz236KTwPfmqc5K7hUvVnc94K0,2221
|
|
361
|
+
autobyteus/workflow/utils/__init__.py,sha256=SzaMZHnJBIJKcT_r-HOeyIcuxzRu2bGeFkOcMLJaalk,222
|
|
362
|
+
autobyteus/workflow/utils/wait_for_idle.py,sha256=FgHtz59DN0eg8Na1PkkVR55Ihdd2e5Gn_mr7RVHl4qI,2001
|
|
363
|
+
autobyteus-1.1.4.dist-info/licenses/LICENSE,sha256=Ompok_c8HRsXRwmax-pGR9OZRRxZC9RPp4JB6eTJd0M,1360
|
|
364
|
+
examples/__init__.py,sha256=BtTQJ6yeHyksK5GC3kfN6RFR6Gcrwq1TBmp6FIIj3Z8,40
|
|
365
|
+
examples/discover_phase_transitions.py,sha256=NiFK_XzDCpWwmNsQqf0Ou2w6L5bofKIKODq7sH5uPzk,3679
|
|
366
|
+
examples/run_browser_agent.py,sha256=qTsx0fxd21izx-IzMr1rIJPQ5azAPaLEfCLx4tFoLtQ,11500
|
|
367
|
+
examples/run_google_slides_agent.py,sha256=4mvswhjJELRCslbWS1ClyhK5lq8wivALFA_Vz_QmyBU,12875
|
|
368
|
+
examples/run_mcp_browser_client.py,sha256=6vEBxGtAuGffkFk-gr3NvqetO84IdhNzip5Jp7V1tSc,6772
|
|
369
|
+
examples/run_mcp_google_slides_client.py,sha256=EMG7nG3df3fCrOX_iIncDWSqDdBrifm7gGYWUnkCJ_c,11826
|
|
370
|
+
examples/run_mcp_list_tools.py,sha256=-dOM-7xyyDM2gp5e_8KZVGbX5ZxWqFQB9l-fHfR8XxY,7367
|
|
371
|
+
examples/run_poem_writer.py,sha256=SU0OECQH5XdSWTIDAX4gdXIciFA7-Q-mokHPLDw3F4U,12657
|
|
372
|
+
examples/run_sqlite_agent.py,sha256=lOTuRJAJyI37h3dsU0cvTTQPBw6CG1Ss8EeeAA7B5Og,12921
|
|
373
|
+
examples/workflow/__init__.py,sha256=oS0ThEVObEexu26BU2QQuNs6y855LYdCXAdfmx_WU1Y,49
|
|
374
|
+
examples/workflow/run_basic_research_workflow.py,sha256=SazESHnN2axdvD0t-UXVLYLd8oGoznDu1P6HZ32HYKQ,8083
|
|
375
|
+
examples/workflow/run_code_review_workflow.py,sha256=R3gtMvmp6btYiaGgAy7858CDq39-vAGtfiV4Kx5irs8,13004
|
|
376
|
+
examples/workflow/run_debate_workflow.py,sha256=UQPvnPEhqveNVeUHzvj3FhitsL2b1okWPi9PBed-2tI,10700
|
|
377
|
+
examples/workflow/run_workflow_with_tui.py,sha256=h-NND47KBtRk3TMNB5LIgLiAwrenOs6uZ-4xxhX0qFA,6209
|
|
378
|
+
autobyteus-1.1.4.dist-info/METADATA,sha256=VrML9iEOjU4wAcj9lwpl2ifVgMthULI2PIqxu0WDRsI,6947
|
|
379
|
+
autobyteus-1.1.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
380
|
+
autobyteus-1.1.4.dist-info/top_level.txt,sha256=vNmK1Y8Irbc0iDPdRtr9gIx5eLM-c2v1ntItkzICzHU,20
|
|
381
|
+
autobyteus-1.1.4.dist-info/RECORD,,
|
examples/__init__.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# file: autobyteus/examples/__init__.py
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
# file: autobyteus/examples/discover_phase_transitions.py
|
|
2
|
+
"""
|
|
3
|
+
This example script demonstrates how to use the PhaseTransitionDiscoverer
|
|
4
|
+
to programmatically find all valid phase transitions within the agent lifecycle.
|
|
5
|
+
|
|
6
|
+
This is useful for developers who want to create their own BasePhaseHook
|
|
7
|
+
subclasses, as it provides a definitive list of the source and target phases
|
|
8
|
+
they can hook into.
|
|
9
|
+
"""
|
|
10
|
+
import sys
|
|
11
|
+
from pathlib import Path
|
|
12
|
+
from typing import List, Dict, Any
|
|
13
|
+
|
|
14
|
+
# --- Boilerplate to make the script runnable from the project root ---
|
|
15
|
+
SCRIPT_DIR = Path(__file__).resolve().parent
|
|
16
|
+
PACKAGE_ROOT = SCRIPT_DIR.parent
|
|
17
|
+
if str(PACKAGE_ROOT) not in sys.path:
|
|
18
|
+
sys.path.insert(0, str(PACKAGE_ROOT))
|
|
19
|
+
|
|
20
|
+
try:
|
|
21
|
+
from autobyteus.agent.phases import PhaseTransitionDiscoverer, PhaseTransitionInfo
|
|
22
|
+
except ImportError as e:
|
|
23
|
+
print(f"Error importing autobyteus components: {e}", file=sys.stderr)
|
|
24
|
+
print("Please ensure that the autobyteus library is installed and accessible.", file=sys.stderr)
|
|
25
|
+
sys.exit(1)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
def _prepare_table_data(transitions: List[PhaseTransitionInfo]) -> List[Dict[str, str]]:
|
|
29
|
+
"""Transforms transition info objects into a list of dictionaries for printing."""
|
|
30
|
+
table_data = []
|
|
31
|
+
for t in transitions:
|
|
32
|
+
from_str = "\n".join([p.value for p in t.source_phases])
|
|
33
|
+
table_data.append({
|
|
34
|
+
"From": from_str,
|
|
35
|
+
"To": t.target_phase.value,
|
|
36
|
+
"Trigger": f"AgentPhaseManager.{t.triggering_method}()",
|
|
37
|
+
"Description": t.description,
|
|
38
|
+
})
|
|
39
|
+
return table_data
|
|
40
|
+
|
|
41
|
+
def _print_as_table(data: List[Dict[str, str]]):
|
|
42
|
+
"""Calculates column widths and prints the data in a formatted table."""
|
|
43
|
+
if not data:
|
|
44
|
+
return
|
|
45
|
+
|
|
46
|
+
headers = list(data[0].keys())
|
|
47
|
+
|
|
48
|
+
# Calculate max widths for each column
|
|
49
|
+
widths = {h: len(h) for h in headers}
|
|
50
|
+
for row in data:
|
|
51
|
+
for h in headers:
|
|
52
|
+
# Check max width line-by-line for multiline content
|
|
53
|
+
max_line_width = max(len(line) for line in row[h].split('\n')) if row[h] else 0
|
|
54
|
+
widths[h] = max(widths[h], max_line_width)
|
|
55
|
+
|
|
56
|
+
# --- Print Header ---
|
|
57
|
+
header_line = " | ".join(h.ljust(widths[h]) for h in headers)
|
|
58
|
+
separator_line = "-+-".join("-" * widths[h] for h in headers)
|
|
59
|
+
print(header_line)
|
|
60
|
+
print(separator_line)
|
|
61
|
+
|
|
62
|
+
# --- Print Rows ---
|
|
63
|
+
for row in data:
|
|
64
|
+
# Split multiline content to handle rowspan alignment
|
|
65
|
+
split_rows = [
|
|
66
|
+
{h: row[h].split('\n') for h in headers}
|
|
67
|
+
]
|
|
68
|
+
|
|
69
|
+
num_lines = max(len(split_rows[0][h]) for h in headers)
|
|
70
|
+
|
|
71
|
+
for i in range(num_lines):
|
|
72
|
+
line_parts = []
|
|
73
|
+
for h in headers:
|
|
74
|
+
cell_lines = split_rows[0][h]
|
|
75
|
+
part = cell_lines[i] if i < len(cell_lines) else ""
|
|
76
|
+
line_parts.append(part.ljust(widths[h]))
|
|
77
|
+
print(" | ".join(line_parts))
|
|
78
|
+
|
|
79
|
+
# Print a thin separator between table rows for readability
|
|
80
|
+
print("-+-".join("-" * (w) for w in widths.values()))
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
def main():
|
|
84
|
+
"""
|
|
85
|
+
Discovers and prints all available agent phase transitions.
|
|
86
|
+
"""
|
|
87
|
+
print("--- Discovering all available agent phase transitions ---")
|
|
88
|
+
print("This table shows every possible transition you can create a custom hook for.\n")
|
|
89
|
+
|
|
90
|
+
all_transitions = PhaseTransitionDiscoverer.discover()
|
|
91
|
+
|
|
92
|
+
if not all_transitions:
|
|
93
|
+
print("No transitions were discovered. This is unexpected.")
|
|
94
|
+
return
|
|
95
|
+
|
|
96
|
+
# Prepare and print the data
|
|
97
|
+
table_data = _prepare_table_data(all_transitions)
|
|
98
|
+
_print_as_table(table_data)
|
|
99
|
+
|
|
100
|
+
print(f"\nTotal of {len(all_transitions)} unique transitions discovered.")
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
if __name__ == "__main__":
|
|
104
|
+
main()
|