autobyteus 1.1.4__py3-none-any.whl → 1.1.5__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.
Files changed (167) hide show
  1. autobyteus/agent/context/__init__.py +4 -2
  2. autobyteus/agent/context/agent_config.py +0 -4
  3. autobyteus/agent/context/agent_context_registry.py +73 -0
  4. autobyteus/agent/events/notifiers.py +4 -0
  5. autobyteus/agent/handlers/inter_agent_message_event_handler.py +7 -2
  6. autobyteus/agent/handlers/llm_complete_response_received_event_handler.py +19 -19
  7. autobyteus/agent/handlers/user_input_message_event_handler.py +15 -0
  8. autobyteus/agent/message/send_message_to.py +29 -23
  9. autobyteus/agent/runtime/agent_runtime.py +10 -2
  10. autobyteus/agent/sender_type.py +15 -0
  11. autobyteus/agent/streaming/agent_event_stream.py +6 -0
  12. autobyteus/agent/streaming/stream_event_payloads.py +12 -0
  13. autobyteus/agent/streaming/stream_events.py +3 -0
  14. autobyteus/agent/system_prompt_processor/tool_manifest_injector_processor.py +7 -4
  15. autobyteus/agent_team/__init__.py +1 -0
  16. autobyteus/agent_team/agent_team.py +93 -0
  17. autobyteus/agent_team/agent_team_builder.py +184 -0
  18. autobyteus/agent_team/base_agent_team.py +86 -0
  19. autobyteus/agent_team/bootstrap_steps/__init__.py +24 -0
  20. autobyteus/agent_team/bootstrap_steps/agent_configuration_preparation_step.py +73 -0
  21. autobyteus/agent_team/bootstrap_steps/agent_team_bootstrapper.py +54 -0
  22. autobyteus/agent_team/bootstrap_steps/agent_team_runtime_queue_initialization_step.py +25 -0
  23. autobyteus/agent_team/bootstrap_steps/base_agent_team_bootstrap_step.py +23 -0
  24. autobyteus/agent_team/bootstrap_steps/coordinator_initialization_step.py +41 -0
  25. autobyteus/agent_team/bootstrap_steps/coordinator_prompt_preparation_step.py +85 -0
  26. autobyteus/agent_team/bootstrap_steps/task_notifier_initialization_step.py +51 -0
  27. autobyteus/agent_team/bootstrap_steps/team_context_initialization_step.py +45 -0
  28. autobyteus/agent_team/context/__init__.py +17 -0
  29. autobyteus/agent_team/context/agent_team_config.py +33 -0
  30. autobyteus/agent_team/context/agent_team_context.py +61 -0
  31. autobyteus/agent_team/context/agent_team_runtime_state.py +56 -0
  32. autobyteus/agent_team/context/team_manager.py +147 -0
  33. autobyteus/agent_team/context/team_node_config.py +76 -0
  34. autobyteus/agent_team/events/__init__.py +29 -0
  35. autobyteus/agent_team/events/agent_team_event_dispatcher.py +39 -0
  36. autobyteus/agent_team/events/agent_team_events.py +53 -0
  37. autobyteus/agent_team/events/agent_team_input_event_queue_manager.py +21 -0
  38. autobyteus/agent_team/exceptions.py +8 -0
  39. autobyteus/agent_team/factory/__init__.py +9 -0
  40. autobyteus/agent_team/factory/agent_team_factory.py +99 -0
  41. autobyteus/agent_team/handlers/__init__.py +19 -0
  42. autobyteus/agent_team/handlers/agent_team_event_handler_registry.py +23 -0
  43. autobyteus/agent_team/handlers/base_agent_team_event_handler.py +16 -0
  44. autobyteus/agent_team/handlers/inter_agent_message_request_event_handler.py +61 -0
  45. autobyteus/agent_team/handlers/lifecycle_agent_team_event_handler.py +27 -0
  46. autobyteus/agent_team/handlers/process_user_message_event_handler.py +46 -0
  47. autobyteus/agent_team/handlers/tool_approval_team_event_handler.py +48 -0
  48. autobyteus/agent_team/phases/__init__.py +11 -0
  49. autobyteus/agent_team/phases/agent_team_operational_phase.py +19 -0
  50. autobyteus/agent_team/phases/agent_team_phase_manager.py +48 -0
  51. autobyteus/agent_team/runtime/__init__.py +13 -0
  52. autobyteus/agent_team/runtime/agent_team_runtime.py +82 -0
  53. autobyteus/agent_team/runtime/agent_team_worker.py +117 -0
  54. autobyteus/agent_team/shutdown_steps/__init__.py +17 -0
  55. autobyteus/agent_team/shutdown_steps/agent_team_shutdown_orchestrator.py +35 -0
  56. autobyteus/agent_team/shutdown_steps/agent_team_shutdown_step.py +42 -0
  57. autobyteus/agent_team/shutdown_steps/base_agent_team_shutdown_step.py +16 -0
  58. autobyteus/agent_team/shutdown_steps/bridge_cleanup_step.py +28 -0
  59. autobyteus/agent_team/shutdown_steps/sub_team_shutdown_step.py +41 -0
  60. autobyteus/agent_team/streaming/__init__.py +26 -0
  61. autobyteus/agent_team/streaming/agent_event_bridge.py +48 -0
  62. autobyteus/agent_team/streaming/agent_event_multiplexer.py +70 -0
  63. autobyteus/agent_team/streaming/agent_team_event_notifier.py +64 -0
  64. autobyteus/agent_team/streaming/agent_team_event_stream.py +33 -0
  65. autobyteus/agent_team/streaming/agent_team_stream_event_payloads.py +32 -0
  66. autobyteus/agent_team/streaming/agent_team_stream_events.py +56 -0
  67. autobyteus/agent_team/streaming/team_event_bridge.py +50 -0
  68. autobyteus/agent_team/task_notification/__init__.py +11 -0
  69. autobyteus/agent_team/task_notification/system_event_driven_agent_task_notifier.py +164 -0
  70. autobyteus/agent_team/task_notification/task_notification_mode.py +24 -0
  71. autobyteus/agent_team/utils/__init__.py +9 -0
  72. autobyteus/agent_team/utils/wait_for_idle.py +46 -0
  73. autobyteus/cli/agent_team_tui/__init__.py +4 -0
  74. autobyteus/cli/agent_team_tui/app.py +210 -0
  75. autobyteus/cli/agent_team_tui/state.py +180 -0
  76. autobyteus/cli/agent_team_tui/widgets/__init__.py +6 -0
  77. autobyteus/cli/agent_team_tui/widgets/agent_list_sidebar.py +149 -0
  78. autobyteus/cli/agent_team_tui/widgets/focus_pane.py +320 -0
  79. autobyteus/cli/agent_team_tui/widgets/logo.py +20 -0
  80. autobyteus/cli/agent_team_tui/widgets/renderables.py +77 -0
  81. autobyteus/cli/agent_team_tui/widgets/shared.py +60 -0
  82. autobyteus/cli/agent_team_tui/widgets/status_bar.py +14 -0
  83. autobyteus/cli/agent_team_tui/widgets/task_board_panel.py +82 -0
  84. autobyteus/events/event_types.py +7 -2
  85. autobyteus/llm/api/autobyteus_llm.py +11 -12
  86. autobyteus/llm/api/lmstudio_llm.py +10 -13
  87. autobyteus/llm/api/ollama_llm.py +8 -13
  88. autobyteus/llm/autobyteus_provider.py +73 -46
  89. autobyteus/llm/llm_factory.py +102 -140
  90. autobyteus/llm/lmstudio_provider.py +63 -48
  91. autobyteus/llm/models.py +83 -53
  92. autobyteus/llm/ollama_provider.py +69 -61
  93. autobyteus/llm/ollama_provider_resolver.py +1 -0
  94. autobyteus/llm/providers.py +13 -13
  95. autobyteus/llm/runtimes.py +11 -0
  96. autobyteus/task_management/__init__.py +43 -0
  97. autobyteus/task_management/base_task_board.py +68 -0
  98. autobyteus/task_management/converters/__init__.py +11 -0
  99. autobyteus/task_management/converters/task_board_converter.py +64 -0
  100. autobyteus/task_management/converters/task_plan_converter.py +48 -0
  101. autobyteus/task_management/deliverable.py +16 -0
  102. autobyteus/task_management/deliverables/__init__.py +8 -0
  103. autobyteus/task_management/deliverables/file_deliverable.py +15 -0
  104. autobyteus/task_management/events.py +27 -0
  105. autobyteus/task_management/in_memory_task_board.py +126 -0
  106. autobyteus/task_management/schemas/__init__.py +15 -0
  107. autobyteus/task_management/schemas/deliverable_schema.py +13 -0
  108. autobyteus/task_management/schemas/plan_definition.py +35 -0
  109. autobyteus/task_management/schemas/task_status_report.py +27 -0
  110. autobyteus/task_management/task_plan.py +110 -0
  111. autobyteus/task_management/tools/__init__.py +14 -0
  112. autobyteus/task_management/tools/get_task_board_status.py +68 -0
  113. autobyteus/task_management/tools/publish_task_plan.py +113 -0
  114. autobyteus/task_management/tools/update_task_status.py +135 -0
  115. autobyteus/tools/bash/bash_executor.py +59 -14
  116. autobyteus/tools/mcp/config_service.py +63 -58
  117. autobyteus/tools/mcp/server/http_managed_mcp_server.py +14 -2
  118. autobyteus/tools/mcp/server/stdio_managed_mcp_server.py +14 -2
  119. autobyteus/tools/mcp/server_instance_manager.py +30 -4
  120. autobyteus/tools/mcp/tool_registrar.py +103 -50
  121. autobyteus/tools/parameter_schema.py +17 -11
  122. autobyteus/tools/registry/tool_definition.py +24 -29
  123. autobyteus/tools/tool_category.py +1 -0
  124. autobyteus/tools/usage/formatters/default_json_example_formatter.py +78 -3
  125. autobyteus/tools/usage/formatters/default_xml_example_formatter.py +23 -3
  126. autobyteus/tools/usage/formatters/gemini_json_example_formatter.py +6 -0
  127. autobyteus/tools/usage/formatters/google_json_example_formatter.py +7 -0
  128. autobyteus/tools/usage/formatters/openai_json_example_formatter.py +6 -4
  129. autobyteus/tools/usage/parsers/gemini_json_tool_usage_parser.py +23 -7
  130. autobyteus/tools/usage/parsers/provider_aware_tool_usage_parser.py +14 -25
  131. autobyteus/tools/usage/providers/__init__.py +2 -12
  132. autobyteus/tools/usage/providers/tool_manifest_provider.py +36 -29
  133. autobyteus/tools/usage/registries/__init__.py +7 -12
  134. autobyteus/tools/usage/registries/tool_formatter_pair.py +15 -0
  135. autobyteus/tools/usage/registries/tool_formatting_registry.py +58 -0
  136. autobyteus/tools/usage/registries/tool_usage_parser_registry.py +55 -0
  137. {autobyteus-1.1.4.dist-info → autobyteus-1.1.5.dist-info}/METADATA +3 -3
  138. {autobyteus-1.1.4.dist-info → autobyteus-1.1.5.dist-info}/RECORD +146 -72
  139. examples/agent_team/__init__.py +1 -0
  140. examples/run_browser_agent.py +17 -15
  141. examples/run_google_slides_agent.py +17 -16
  142. examples/run_poem_writer.py +22 -12
  143. examples/run_sqlite_agent.py +17 -15
  144. autobyteus/tools/mcp/call_handlers/__init__.py +0 -16
  145. autobyteus/tools/mcp/call_handlers/base_handler.py +0 -40
  146. autobyteus/tools/mcp/call_handlers/stdio_handler.py +0 -76
  147. autobyteus/tools/mcp/call_handlers/streamable_http_handler.py +0 -55
  148. autobyteus/tools/usage/providers/json_example_provider.py +0 -32
  149. autobyteus/tools/usage/providers/json_schema_provider.py +0 -35
  150. autobyteus/tools/usage/providers/json_tool_usage_parser_provider.py +0 -28
  151. autobyteus/tools/usage/providers/xml_example_provider.py +0 -28
  152. autobyteus/tools/usage/providers/xml_schema_provider.py +0 -29
  153. autobyteus/tools/usage/providers/xml_tool_usage_parser_provider.py +0 -26
  154. autobyteus/tools/usage/registries/json_example_formatter_registry.py +0 -51
  155. autobyteus/tools/usage/registries/json_schema_formatter_registry.py +0 -51
  156. autobyteus/tools/usage/registries/json_tool_usage_parser_registry.py +0 -42
  157. autobyteus/tools/usage/registries/xml_example_formatter_registry.py +0 -30
  158. autobyteus/tools/usage/registries/xml_schema_formatter_registry.py +0 -33
  159. autobyteus/tools/usage/registries/xml_tool_usage_parser_registry.py +0 -30
  160. examples/workflow/__init__.py +0 -1
  161. examples/workflow/run_basic_research_workflow.py +0 -189
  162. examples/workflow/run_code_review_workflow.py +0 -269
  163. examples/workflow/run_debate_workflow.py +0 -212
  164. examples/workflow/run_workflow_with_tui.py +0 -153
  165. {autobyteus-1.1.4.dist-info → autobyteus-1.1.5.dist-info}/WHEEL +0 -0
  166. {autobyteus-1.1.4.dist-info → autobyteus-1.1.5.dist-info}/licenses/LICENSE +0 -0
  167. {autobyteus-1.1.4.dist-info → autobyteus-1.1.5.dist-info}/top_level.txt +0 -0
@@ -4,6 +4,7 @@ autobyteus/agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
4
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
+ autobyteus/agent/sender_type.py,sha256=Qlj2GBGVHXCRAKj7CMkd416bO_qcudoY730iM-LfJfM,559
7
8
  autobyteus/agent/tool_invocation.py,sha256=Kt1ge4kUGzC5f6ONdoBNGDUr9OwSAIEKmGFrtGzjewM,2312
8
9
  autobyteus/agent/bootstrap_steps/__init__.py,sha256=k3_J4MXu7PaTuUXK-D2Uax8kh4BnSNm22sDlQw6GFA4,906
9
10
  autobyteus/agent/bootstrap_steps/agent_bootstrapper.py,sha256=tPxD4yQ_i3-rl9XOGaKrLMdpymBqrzHkkkzRW0xhPBw,4336
@@ -12,14 +13,15 @@ autobyteus/agent/bootstrap_steps/base_bootstrap_step.py,sha256=8XaGHJva2Fo4T3fAC
12
13
  autobyteus/agent/bootstrap_steps/mcp_server_prewarming_step.py,sha256=M_OnynyLRmyQsfEeGQ8aH-NIhbBgmXhEBRHopvkNXJc,3432
13
14
  autobyteus/agent/bootstrap_steps/system_prompt_processing_step.py,sha256=uqJvnj8Mm_m43RsKwc_lQfHH1D2jEBbHFWbZcQZnQtc,5703
14
15
  autobyteus/agent/bootstrap_steps/workspace_context_initialization_step.py,sha256=FMF9fhD6Wgas4TpQbSwKiL43OZBmwh_cAA3G_5jRJhM,2112
15
- autobyteus/agent/context/__init__.py,sha256=7LXLRuI_9Por2g_B4p89jLG3rZeJ5OYlmTXkjT4OGBY,364
16
- autobyteus/agent/context/agent_config.py,sha256=m_Z5Os9hAGjVgAIyXp2AjueuccxnXtcjFdV526IqgHk,6586
16
+ autobyteus/agent/context/__init__.py,sha256=1an2L4sKJ1tYbJKAhCLSw-oYzt5_lmUwh1SYClA5c3M,447
17
+ autobyteus/agent/context/agent_config.py,sha256=hu6b0Dklo9R9xZCCBzvgNSq06bZnOLQmsguRajCyALI,6334
17
18
  autobyteus/agent/context/agent_context.py,sha256=3Vd1c4EF6JY7rOKar7TQSXNNSNnpB-hYuhGqVQdi52g,5726
19
+ autobyteus/agent/context/agent_context_registry.py,sha256=GqwKn0EKKTRv6Vwwrb5kMRrwD9uH5NCh_Nvtmw82QTo,2748
18
20
  autobyteus/agent/context/agent_runtime_state.py,sha256=CIoOJwGR9-H-vYBfq-4eQRP5uSoBcmlAFUGSru8xZ7A,5125
19
21
  autobyteus/agent/events/__init__.py,sha256=8AL83PBRLkEptTzPznn_XpGXq2-S56Yxx3WarNcsc3U,1507
20
22
  autobyteus/agent/events/agent_events.py,sha256=plrBY3Cr_nUhrwvkpED_2qyPq2Slc0ciiupsWdPvmwo,3821
21
23
  autobyteus/agent/events/agent_input_event_queue_manager.py,sha256=VfynrdVSPkKEH94yg9p1WBOoV52JQX8MRJhJ-GU7fcY,10461
22
- autobyteus/agent/events/notifiers.py,sha256=UTLFC2OeBMftku97rAFSZU8J12Ji8s4iPeEZTovyEBQ,7455
24
+ autobyteus/agent/events/notifiers.py,sha256=--U1DMKwSdOyV0wWuWqzxykG6wgq0la6VHiVx62Twcs,7771
23
25
  autobyteus/agent/events/worker_event_dispatcher.py,sha256=wE63Qq4gw0JhkxvpuvbxUJHhbjzKSfhinjuF6epfR04,6165
24
26
  autobyteus/agent/factory/__init__.py,sha256=4_PxMM-S_BRuYoQBHIffY6bXpBdEv-zFyuB6YaK93Yw,204
25
27
  autobyteus/agent/factory/agent_factory.py,sha256=8vrsGTvZi0XIVZxpB3CHiiSLIv9Rdar9SaQ8Y5v5gLo,6673
@@ -28,14 +30,14 @@ autobyteus/agent/handlers/approved_tool_invocation_event_handler.py,sha256=ND9Xz
28
30
  autobyteus/agent/handlers/base_event_handler.py,sha256=G2vtFJT_vyObWTgrgwIgRwOssBQ-6A3gxHtc7S4SEuQ,1264
29
31
  autobyteus/agent/handlers/event_handler_registry.py,sha256=95BCsKtxKFFSsliSJOCb6nw10TMbiRK2qM366DDuZKM,3474
30
32
  autobyteus/agent/handlers/generic_event_handler.py,sha256=759BrDJI-sesY74YN3CX3OfTM44vLGyj6Sg1gd8eJ_w,1888
31
- autobyteus/agent/handlers/inter_agent_message_event_handler.py,sha256=cPofsprTTbWHfVNJkvjn_0VTLQ7pTzuCEMM1BgWzTF8,3286
33
+ autobyteus/agent/handlers/inter_agent_message_event_handler.py,sha256=YjDtISJ39v7-xfK8WZ1roJdj308uCsECo6OMKVM8hjI,3596
32
34
  autobyteus/agent/handlers/lifecycle_event_logger.py,sha256=-j5GhlCPauPwJMUOMUL53__wweZTsamhYXNbvQklnoY,2656
33
- autobyteus/agent/handlers/llm_complete_response_received_event_handler.py,sha256=FL8HHQCWhQrHCPgGsQO0pQhmkFsefAYwrtCU4Kj5pM0,7775
35
+ autobyteus/agent/handlers/llm_complete_response_received_event_handler.py,sha256=SjHiCPjzXQXAbx0GuywKPhZTxlHNYLkTUBH_0Cc08Mg,7813
34
36
  autobyteus/agent/handlers/llm_user_message_ready_event_handler.py,sha256=hUy4lSOMmTFWNZwtCGB4JWdhurUe49yr6Mf5p4RTNcs,7666
35
37
  autobyteus/agent/handlers/tool_execution_approval_event_handler.py,sha256=Tda_LrlIPbEwVzf1I6u4Vb9sPmAbGQRqT_2-Q9ukLhw,4489
36
38
  autobyteus/agent/handlers/tool_invocation_request_event_handler.py,sha256=AjNGQgRCQkjXvYThd_AaPj0Lzh1adEkhYJO83alxVAY,10957
37
39
  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
40
+ autobyteus/agent/handlers/user_input_message_event_handler.py,sha256=eHoMnPYUPOlBTxNnOxKE2rWREfukVwXqLjaHngWDJgk,5124
39
41
  autobyteus/agent/hooks/__init__.py,sha256=a1do0Ribb2Hpf9t0Xqxhf3Ls7R6EQuWJtfTGQK7VjUM,495
40
42
  autobyteus/agent/hooks/base_phase_hook.py,sha256=7JU3FgPzX06Yg6eJgB4GXzXcaWTpOcEMmyw5Ku0mwJk,2040
41
43
  autobyteus/agent/hooks/hook_definition.py,sha256=4aA4iZnxMnw9n6sGThD-kCt3JPQSjPQDCd5D7Q7uzQs,1273
@@ -58,7 +60,7 @@ autobyteus/agent/message/context_file.py,sha256=VCwuN9qWKUHe1sZOWKQMwnbj1Dzaeyfb
58
60
  autobyteus/agent/message/context_file_type.py,sha256=wpfL0o-0DU33uwS3Ufgc3eqFNiOfH7YgQVQuTRvTROQ,2541
59
61
  autobyteus/agent/message/inter_agent_message.py,sha256=302oAt5PdrAqS1Cz80o7G6Kk3Ur1D9JNxze7Q0NI3dM,2436
60
62
  autobyteus/agent/message/inter_agent_message_type.py,sha256=l-j0WB4F6yRXSSnHRKzNfmwnL4wX3usPN0JIrQthyEA,1130
61
- autobyteus/agent/message/send_message_to.py,sha256=vWYOO4iNDdrqRo3KrUd8LE-AEqN_bjhbfcCtKQ_p2y8,5520
63
+ autobyteus/agent/message/send_message_to.py,sha256=0BoN_sXbUZ50BAS8sb3IGuIqIloZnC6kg7EzzRZrw8w,5879
62
64
  autobyteus/agent/phases/__init__.py,sha256=OC0T294mOGUk6pudSVLslHtfziBJEYd_VoA-LgWo9oE,558
63
65
  autobyteus/agent/phases/discover.py,sha256=YuW0I8PyGysiyAf3jfR-cVesgSH5zi78uYZKqnM6dGU,1993
64
66
  autobyteus/agent/phases/manager.py,sha256=-K3trAbDyXweGUxtgKPuUjQh7Cr2oFswR9KwhisT128,15604
@@ -66,7 +68,7 @@ autobyteus/agent/phases/phase_enum.py,sha256=Ubd_fraZxYRJUM7DdeLEjL0Vvm1RzBcCuOU
66
68
  autobyteus/agent/phases/transition_decorator.py,sha256=jiby_dzeytKGQFjnTQYQ1gziYh7F-2RnShajpHWWhFQ,1553
67
69
  autobyteus/agent/phases/transition_info.py,sha256=wqA_ANUbDzjsgESUtgH4svVczPA6-LUdAtZm1MonoFA,1251
68
70
  autobyteus/agent/runtime/__init__.py,sha256=VQLu_-t86WkvLKEnGmbPksP53CrqgchqY8eB-DS-SsI,457
69
- autobyteus/agent/runtime/agent_runtime.py,sha256=cGN9_kNQcgbG6HTZNkBFv5-xeod6Z5wBTeZCzrTVX9o,6483
71
+ autobyteus/agent/runtime/agent_runtime.py,sha256=Ibsl9o_Pnj_Vatd-eO0s_mzoantbIEo5M9zXw4vwn_I,6903
70
72
  autobyteus/agent/runtime/agent_thread_pool_manager.py,sha256=-dyo3LQ4Mi1upUyyp-8EmQuRXWamIcESc1-WCVSS0dM,3607
71
73
  autobyteus/agent/runtime/agent_worker.py,sha256=xGHjMMgDjTykIm5yBfIc1x0ylCGh8UQ1ITmoWyCKyZQ,11264
72
74
  autobyteus/agent/shutdown_steps/__init__.py,sha256=583P5F3eBdqkmwBlnqua0PBZjHpnsfNEZgGxFw3x-4o,574
@@ -75,16 +77,16 @@ autobyteus/agent/shutdown_steps/base_shutdown_step.py,sha256=YqHMD4opVvjCHHZdD38
75
77
  autobyteus/agent/shutdown_steps/llm_instance_cleanup_step.py,sha256=f0zfOLNA_Ksp4Q0kBvikNlvoTXCnN-erQzSPMtmK44c,1863
76
78
  autobyteus/agent/shutdown_steps/mcp_server_cleanup_step.py,sha256=_Ra9Fsf2KnPJAoGK0YdMH1wd0GdMonc9-MYY1GQookQ,1274
77
79
  autobyteus/agent/streaming/__init__.py,sha256=ul7QUIjv5q1nYwzrU1nsVBsKZwpthdmUGsP3UPWmJ34,447
78
- autobyteus/agent/streaming/agent_event_stream.py,sha256=cNF0KnHenAfxYNnZwaQ4OwH-iswRr6DqFdC06O4wHOE,9723
80
+ autobyteus/agent/streaming/agent_event_stream.py,sha256=lwpWy28flvtvERjycFpsdDIiInhZzDP73sG-LTBN8uI,10113
79
81
  autobyteus/agent/streaming/queue_streamer.py,sha256=lTMyFwuf_NBJL6hrUIoz5-pqWSlM7fgz1xcVB73y1bk,2354
80
- autobyteus/agent/streaming/stream_event_payloads.py,sha256=Zsr9Z9Fs0HjaRKHv662dCO54tADkTvtx1bzDFBuh7hs,6845
81
- autobyteus/agent/streaming/stream_events.py,sha256=0_c2cO_L955nuYnpgKRsG7jMpxTOYv0QdNb1Uhz9Bh0,5380
82
+ autobyteus/agent/streaming/stream_event_payloads.py,sha256=TuGOT7ebMpAgMw7bdwUiMwwkchIn-0NznKz9wQlU00A,7331
83
+ autobyteus/agent/streaming/stream_events.py,sha256=FjH5kBMWcgdA0Z07Omnn9qTb1FOoRlNrouoHGxq0vGQ,5562
82
84
  autobyteus/agent/system_prompt_processor/__init__.py,sha256=5CuF47Y6DKwOWNBQQ-WRQpIxH6Iww-1V0KPok3GCGq0,446
83
85
  autobyteus/agent/system_prompt_processor/base_processor.py,sha256=LyWb9wyPl7nZZgiKYK2jtwQj1oe2I40kDyjJgRP5oBI,1717
84
86
  autobyteus/agent/system_prompt_processor/processor_definition.py,sha256=r2ry7igUxaVrpAVmzAtR-O1ssFIhQEry-2PBs6YIZog,1767
85
87
  autobyteus/agent/system_prompt_processor/processor_meta.py,sha256=aQLo0WE58HVQf4lkDxej2Lz4XFLWddUd24ZPWscnsyo,2356
86
88
  autobyteus/agent/system_prompt_processor/processor_registry.py,sha256=VjjFiQ2z3Sxb_ZBVJ1omCcqompA2ttN815YEnx0R2lE,5007
87
- autobyteus/agent/system_prompt_processor/tool_manifest_injector_processor.py,sha256=9p1HWI6DyK5-82ij6d7bPI8QHlxYcr9B4dZZG-X5Lrg,4087
89
+ autobyteus/agent/system_prompt_processor/tool_manifest_injector_processor.py,sha256=xOfQvnePgTbSf48_W4NH8ZsSMyPylfAjJIDZAUc5vqQ,4222
88
90
  autobyteus/agent/tool_execution_result_processor/__init__.py,sha256=GKiNSMvVvwuBce0z1wEUaf48NOzOqugzvB5Utxt8w7w,286
89
91
  autobyteus/agent/tool_execution_result_processor/base_processor.py,sha256=0X_0W5dEYBZmWzVp6iiBwTCb0Gdm1Om_PxcoOyIHuW4,1546
90
92
  autobyteus/agent/tool_execution_result_processor/processor_definition.py,sha256=Zr5a-DwKNdYuSO-UAD2R6Rg686YQAin5FhA6pWnxUVQ,1555
@@ -98,9 +100,78 @@ autobyteus/agent/workspace/workspace_config.py,sha256=UfDpOkCH5B7ddt227zoQdmq8bC
98
100
  autobyteus/agent/workspace/workspace_definition.py,sha256=l959gPAVSF17ym9P4y7vf4LuiibcVzom2y0AEmQT7Ak,1476
99
101
  autobyteus/agent/workspace/workspace_meta.py,sha256=xuw1-lYQiK5YyyDDc_5uT3uOGL0FfwLC8zCQiSyyQro,1680
100
102
  autobyteus/agent/workspace/workspace_registry.py,sha256=A_wADwvZOm1XutBgkn_-FBkqb4tS1fRtALrKe2XRDhw,3182
103
+ autobyteus/agent_team/__init__.py,sha256=JzL7W4KLKQdFpV3WLAZJp0dM5DQWgD3xAqLr-iRoEas,53
104
+ autobyteus/agent_team/agent_team.py,sha256=M3GNiBgCTiYbbaGB4VquRHhPoLN8D9Hladv6hLJ_IrA,3722
105
+ autobyteus/agent_team/agent_team_builder.py,sha256=-vX53032tc312wtBVs0UqO02K-g_wLN97v8nEvo6tgc,8453
106
+ autobyteus/agent_team/base_agent_team.py,sha256=AtTCt0upZjbV5Jj-2wFI54lzUsYHkstErttIZXQOJL0,3199
107
+ autobyteus/agent_team/exceptions.py,sha256=24kOHkJoyW1AKF7KQPuy8HIEpqzcYm3N_kl7W5CluSc,389
108
+ autobyteus/agent_team/bootstrap_steps/__init__.py,sha256=Gw7ohC8lTB1h2IMKZkxn2Sp7eEjmr_BC0kwpIjn-xKg,1398
109
+ autobyteus/agent_team/bootstrap_steps/agent_configuration_preparation_step.py,sha256=B67ZgLVHDDGTqarIkoy73pDXiAaU16ZVjCseCUXBmxc,3970
110
+ autobyteus/agent_team/bootstrap_steps/agent_team_bootstrapper.py,sha256=gwrG-iRr4-fw5gMnw69V39s7eLzIsIMY-LGDKyzHBpE,3093
111
+ autobyteus/agent_team/bootstrap_steps/agent_team_runtime_queue_initialization_step.py,sha256=YWg297DapsF_6cjuu8DFooBWTiOvU-N-RxK1MGPemwY,1370
112
+ autobyteus/agent_team/bootstrap_steps/base_agent_team_bootstrap_step.py,sha256=gRkmv8XwghAbWAS-jMKgCpaky0VPGyWi-QFR9uYDnBA,899
113
+ autobyteus/agent_team/bootstrap_steps/coordinator_initialization_step.py,sha256=lWiGMC7XOsDEZ0W_qo2GFtuKDl7ZVKGOfS3ENsGp1Zw,1913
114
+ autobyteus/agent_team/bootstrap_steps/coordinator_prompt_preparation_step.py,sha256=wjzlo_UpZDFK5WNV-HFtFu-uu_IvxdwcAGmFxlzetQI,4561
115
+ autobyteus/agent_team/bootstrap_steps/task_notifier_initialization_step.py,sha256=p0eH-FUq3Oe3DXxbu1J-lWU7UIrIE9sliXPkOyF8uog,2628
116
+ autobyteus/agent_team/bootstrap_steps/team_context_initialization_step.py,sha256=e6kFgIKDUuRrgjp84rX5Db5XUfr8DalD3h1qYQN7EcM,2438
117
+ autobyteus/agent_team/context/__init__.py,sha256=drrtG4m5HFNxJgtpucBmTA81TlbQaSgNXww38ChgwzE,667
118
+ autobyteus/agent_team/context/agent_team_config.py,sha256=9QnIWguNhPa41abNm0kwSNC0f3GVeNuJ1c7KGTTD2Yw,1542
119
+ autobyteus/agent_team/context/agent_team_context.py,sha256=_QC-JyvH6Ld2Ysm-EubxbjqzJ1LLvrUkNAfUWKnulmo,2682
120
+ autobyteus/agent_team/context/agent_team_runtime_state.py,sha256=ioXgFIQkTwHS4nzuw567JWwnyGi9p7UoUR3TV8O5FJ8,2983
121
+ autobyteus/agent_team/context/team_manager.py,sha256=m5_cjIwznicSHTq0HHquZrsn14DmvrTR94xzuaaC7NM,7287
122
+ autobyteus/agent_team/context/team_node_config.py,sha256=V_Ng_YoOcAXkujW6Y1STg39YKzcmMrZvgAgBDORO38Y,3186
123
+ autobyteus/agent_team/events/__init__.py,sha256=H2JMNRxeEmzIpbUFWmNR2IaIPXgcz301UIEQ8Yn0AuY,971
124
+ autobyteus/agent_team/events/agent_team_event_dispatcher.py,sha256=DlNOsYxGxsR5iOjWyf8p1dAyUitnbUq0_RQtelCX06s,1738
125
+ autobyteus/agent_team/events/agent_team_events.py,sha256=zql7P5-hpl2bkrY3HuQy5tHKHnDjs5XxjG06_KiD8Ys,1764
126
+ autobyteus/agent_team/events/agent_team_input_event_queue_manager.py,sha256=ZMz9eudtXR8OXcWwPmJs9oN2r4Ycf4VdgR32Yaf0-S4,953
127
+ autobyteus/agent_team/factory/__init__.py,sha256=52XlrxJp_1jb9VT9GS2IT0w4cI-ojlsQtGHm3unidCs,239
128
+ autobyteus/agent_team/factory/agent_team_factory.py,sha256=fsm7kz7rLS26X6NCh6vhfKf6_Px2wceDG2Wkx--6QE8,4704
129
+ autobyteus/agent_team/handlers/__init__.py,sha256=05n2SOnVOUWip4cZrpuN2q-q6AW2d2weribC9e99Gfg,1005
130
+ autobyteus/agent_team/handlers/agent_team_event_handler_registry.py,sha256=vTyhRwK6nW_92U76tc3-6wD2Yj4hLGEFRR6uiV2k93Q,1233
131
+ autobyteus/agent_team/handlers/base_agent_team_event_handler.py,sha256=C79gvVxSwE06D6qVJ1bnCxmT-lbAF4GrtiyIUFS0xOs,593
132
+ autobyteus/agent_team/handlers/inter_agent_message_request_event_handler.py,sha256=OGHJ6WxdNjLfggZDO6P8rr6xyfzJyLwKjOnv9A1q3FU,3335
133
+ autobyteus/agent_team/handlers/lifecycle_agent_team_event_handler.py,sha256=4-YR2GZkmJe_fZPYucvgpHEL-M5-XfBPDz8upvONeuI,1357
134
+ autobyteus/agent_team/handlers/process_user_message_event_handler.py,sha256=ig7ij2i5xwRV1OtQ3tJBiC7TBFasyd4NxVjX2ca-HJE,2573
135
+ autobyteus/agent_team/handlers/tool_approval_team_event_handler.py,sha256=PH6aTO_8KUtCHNKftiidN2yh-ln3d2S1A7rfCR4PXUY,2272
136
+ autobyteus/agent_team/phases/__init__.py,sha256=qxOrh0O1iWoluRQCkKaiBISEqW7D7vleYlueEje4QYs,419
137
+ autobyteus/agent_team/phases/agent_team_operational_phase.py,sha256=QsSNvCntqUIsJ0_f_7Tk-aMn5yVOo_W-CLWfvtAjQIU,675
138
+ autobyteus/agent_team/phases/agent_team_phase_manager.py,sha256=3NiHiSTowNcCQowWBZMTXsZy3dOzLaAKAa90E7XDe9M,2365
139
+ autobyteus/agent_team/runtime/__init__.py,sha256=6pQrzl2DXfnp3dn2fRSiMAfM3VSmKddJcYy5L1yWaW8,465
140
+ autobyteus/agent_team/runtime/agent_team_runtime.py,sha256=m-YqgAUJx3kvfHtwC9zY3eWZmB0Snkjk0Emo84Cp44M,3909
141
+ autobyteus/agent_team/runtime/agent_team_worker.py,sha256=Kha4l8Q7kxc3Kd3EWAC-e4yHYhUZwr05zHtcoqGL8ik,5595
142
+ autobyteus/agent_team/shutdown_steps/__init__.py,sha256=wfAEB3_o3Imk6Y9rPBUascqP_3T4cFx4-BBp4zcsXX8,812
143
+ autobyteus/agent_team/shutdown_steps/agent_team_shutdown_orchestrator.py,sha256=VNtKf3lmYRhO5mcsdfBKnrDhw3ucTB7yY8C8tO0Te1w,1561
144
+ autobyteus/agent_team/shutdown_steps/agent_team_shutdown_step.py,sha256=iACb44vQVOka99NZnZdgnFdAsXHL08I5R6hsAUcgqyI,1845
145
+ autobyteus/agent_team/shutdown_steps/base_agent_team_shutdown_step.py,sha256=CVzU4mMjU4FagEk_Q0ncENMCGzGSJ7I6YF_2YqJqsEc,651
146
+ autobyteus/agent_team/shutdown_steps/bridge_cleanup_step.py,sha256=uEJt4RuNIt7WiO25Wnowtg_TqOgd9l_fja88bXXLzIo,1165
147
+ autobyteus/agent_team/shutdown_steps/sub_team_shutdown_step.py,sha256=suPLoXXtPJx6FfXp_RH8Eev5d4Xd2iY_hMRM6wICcAo,1771
148
+ autobyteus/agent_team/streaming/__init__.py,sha256=wE3dZJ8b73h979nKPietRQXmImwvNrb2oyFossdPF00,891
149
+ autobyteus/agent_team/streaming/agent_event_bridge.py,sha256=hGJvLUK39-bBYxpq7pvpKs7Y68c07xtG4d4Ebp5GwtI,2130
150
+ autobyteus/agent_team/streaming/agent_event_multiplexer.py,sha256=Z3CMxsNaPXWVtaK5D8qSZiDQC_VokJQoHlbbfPc0Xng,3647
151
+ autobyteus/agent_team/streaming/agent_team_event_notifier.py,sha256=2gvB5wu3Yt00VMlspoOzgfwtUHfks6Xm5fkxiP4AyFY,3524
152
+ autobyteus/agent_team/streaming/agent_team_event_stream.py,sha256=AZmly_WQWb6YpdS8IXmXjoOZjIck85LWFt4OkfW_Aa0,1493
153
+ autobyteus/agent_team/streaming/agent_team_stream_event_payloads.py,sha256=8Di_xuYI8l_i-_YnZY6ogO4o8iUwsEo5GOpYJOTk4Ik,1701
154
+ autobyteus/agent_team/streaming/agent_team_stream_events.py,sha256=NUFpmUQVFp4--96j3ruhwbjTcp_-DRcrSTEsxVCdIvU,2674
155
+ autobyteus/agent_team/streaming/team_event_bridge.py,sha256=C6VVJM4xJnOl37AY60qGT9k7VMVj63bkXOxYWICBgAs,2347
156
+ autobyteus/agent_team/task_notification/__init__.py,sha256=F5C9dKjpfvN7qFcIh50_cl-mIlYLhsak2U1VAqHIkk0,396
157
+ autobyteus/agent_team/task_notification/system_event_driven_agent_task_notifier.py,sha256=lEzMuLInSBX9wCgWpRNhHI-3Egkf9dUSWYRGTEyZb8Y,8303
158
+ autobyteus/agent_team/task_notification/task_notification_mode.py,sha256=BbtFyrMgeGMKC4WKG3QgIVNy0m2wLH4H5YszVXOvrMI,846
159
+ autobyteus/agent_team/utils/__init__.py,sha256=Sa5TBbhq9N41ONlMhoLlCrtyxSiDjoR2Zu5C21OAig0,218
160
+ autobyteus/agent_team/utils/wait_for_idle.py,sha256=wrfo_t1T6DSXeHU-SWwsuxPJToNsr0Ol1TwqpoRxZ8I,1931
101
161
  autobyteus/cli/__init__.py,sha256=FpcugZofPrQzll16-OFcDypbven0J2mBPxNVgQ3eAxY,266
102
162
  autobyteus/cli/agent_cli.py,sha256=Ua6MnuVHmNgelnZQ8B8ZMFk2nyN-VNPijNzyucVVPis,4818
103
163
  autobyteus/cli/cli_display.py,sha256=F0mBDnaqmQJCfhqO-ccVxd_UGklCRuNoGZ4aa8ApMKs,9493
164
+ autobyteus/cli/agent_team_tui/__init__.py,sha256=FP2rpjO1T5jdVYkT7Yvk-iDcxckOHy3JxRg-EEeKCfE,123
165
+ autobyteus/cli/agent_team_tui/app.py,sha256=IuRLHQubot2DuXfA10rwPjXN4yAxXhuUZUBmYzntFfE,9152
166
+ autobyteus/cli/agent_team_tui/state.py,sha256=HmtmSO836Xmm7QHCJ0SFccZDDUM1SpHqc6e6Ujz3bPI,9602
167
+ autobyteus/cli/agent_team_tui/widgets/__init__.py,sha256=gWVULR5J-2Ra3m2hvUhO1jF1IX9uqk0bQhWL0t25Z4E,173
168
+ autobyteus/cli/agent_team_tui/widgets/agent_list_sidebar.py,sha256=1ynBsWEqaYBitHrbvgR-eRLGAULA2ZUM-V_hRHWAgX8,6557
169
+ autobyteus/cli/agent_team_tui/widgets/focus_pane.py,sha256=nEmtz3O53Fzf-BGxSHYjkjw7aV8Eb1eT-t_NkJOzuGA,16151
170
+ autobyteus/cli/agent_team_tui/widgets/logo.py,sha256=okzS4mG8Z1-dZDIGQ5F8XP9y6WwwRDVHmMmPz3oN9TM,780
171
+ autobyteus/cli/agent_team_tui/widgets/renderables.py,sha256=gaMrkLMcrohuOH2KjPvSmdbxHgljhCgl6m9OEfw2nDU,3393
172
+ autobyteus/cli/agent_team_tui/widgets/shared.py,sha256=9RVUNuNWTuzd8-PHjD3JMTZIK4bKVbPsUPHLtSGdtU0,1977
173
+ autobyteus/cli/agent_team_tui/widgets/status_bar.py,sha256=WE8Z6gjAkAdrK5Yufl7qqIitIL6TX0lOCQiTa9FZkt4,457
174
+ autobyteus/cli/agent_team_tui/widgets/task_board_panel.py,sha256=MMurHzqXcqls4V4UDM07Tk8efG6fI7TMNYMWs0S_fng,3461
104
175
  autobyteus/cli/workflow_tui/__init__.py,sha256=xbWMXwK_a-IX-dM3m1TJkm9SHT--bqiHVgkS5XCA6vM,127
105
176
  autobyteus/cli/workflow_tui/app.py,sha256=DZPHPIrjz5-YBxwybDylokemtzqO9Ac49hdhkBdXCwQ,9681
106
177
  autobyteus/cli/workflow_tui/state.py,sha256=JA3MOGpV25yin6dMO8AWRLSOgCEcd5oKtfNROU8RavM,9477
@@ -114,19 +185,20 @@ autobyteus/cli/workflow_tui/widgets/status_bar.py,sha256=PLkw2IxJ4T2cDt-3HKRhnIm
114
185
  autobyteus/events/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
115
186
  autobyteus/events/event_emitter.py,sha256=WKKwISFo2yDx0OpLjGFtXEl3DVV1siB0lXdndIAHhBg,2522
116
187
  autobyteus/events/event_manager.py,sha256=c5RMlCtKzkHgQZkePBvqxPAxxOu-NapUrl8c2oRDkT8,5841
117
- autobyteus/events/event_types.py,sha256=8-ekBWBT08U8sBByAPNnaCMErkTQbkDZsMQOsblmM2I,2769
188
+ autobyteus/events/event_types.py,sha256=yFfCwSAWth-LCULklW2wjNp2pfZjjEow-_PMIcBajBo,3022
118
189
  autobyteus/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
119
- autobyteus/llm/autobyteus_provider.py,sha256=WCLUZM24UUB9Gl32WKgwoyXx41pnRXJiz-c9PpiC_C4,6747
190
+ autobyteus/llm/autobyteus_provider.py,sha256=AwhH0KnqY50ug6MToHwjSQqIX8uv76bF10Jc8glvP18,8238
120
191
  autobyteus/llm/base_llm.py,sha256=XwVnihE6Qy6L8HPWUIXTKCYcKgoxYuw2Om8PivwlbU0,11597
121
- autobyteus/llm/llm_factory.py,sha256=DCLK_H-mV7uQtdPt5KAMMYgW4RpWN-OMPLoj_lKJHac,16552
122
- autobyteus/llm/lmstudio_provider.py,sha256=cydBTwsnT8MGzok8_5liHzq5YcK37fovOuY9czXASWg,3522
123
- autobyteus/llm/models.py,sha256=Dg_1dLAOwJ9H1NJWnQ7GaTdYiX8_ESbh_tZN67dl8-I,5825
124
- autobyteus/llm/ollama_provider.py,sha256=xInqOsZjHQ_1xzvO67vAR7NBausMeUCtRG1FY236lUQ,4230
125
- autobyteus/llm/ollama_provider_resolver.py,sha256=O0eKyE6Lj6ozhyWV72sOb-A7Iw9cwFHsBjcD-HH6tHM,1774
126
- autobyteus/llm/providers.py,sha256=ws6NgD6467wxzKhb06oUqzZGQNLktzcdxViHxn9tjGo,354
192
+ autobyteus/llm/llm_factory.py,sha256=psqNgGqVlxJjz211ElnsvCuGWMCGwPUxpXWNv7LyPC8,15695
193
+ autobyteus/llm/lmstudio_provider.py,sha256=RkM_drORSZ2zcSxN2Th5Upiva2oesIPw-6viqe2w9dY,4315
194
+ autobyteus/llm/models.py,sha256=ownBklNZrtJ_HWeMexa2T3s9TjWG0xggOt7wYrRs2l4,6963
195
+ autobyteus/llm/ollama_provider.py,sha256=CfcgC-DEWULjTwJiWazB5IXjErEyy1zZ41glrWhpj0g,4427
196
+ autobyteus/llm/ollama_provider_resolver.py,sha256=chGoQ7SvGJ68lv0Vv3AEd-b177Evu-iIcrtvwkUSbBg,1813
197
+ autobyteus/llm/providers.py,sha256=rIepOS3mNnd-BWf_cbrrJUf7cllcOUCQ-j4IIFoiLts,354
198
+ autobyteus/llm/runtimes.py,sha256=MzFNo3R1U3uWYAkuk-uuaba01Y0dDKQgVY_ElH_0dxU,315
127
199
  autobyteus/llm/user_message.py,sha256=5FfDOKN-ohBhQy3mTTezv4zTAwcfmcyE0zODNCfRxdo,3200
128
200
  autobyteus/llm/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
129
- autobyteus/llm/api/autobyteus_llm.py,sha256=iJJ2luB1YVg0lEuS8nHPm8h1axouSGEGvoFk2g4o2jo,4896
201
+ autobyteus/llm/api/autobyteus_llm.py,sha256=5SC-Tijr5MY2cu2xppc_8tdlyA2o7PMuSDQ5BsHUYEg,4978
130
202
  autobyteus/llm/api/bedrock_llm.py,sha256=B1NEEuQ48FGrhp2G_h7htvWiepUsXGnNy6wEQhO6I_E,3256
131
203
  autobyteus/llm/api/claude_llm.py,sha256=-xpyDvIKnEoay8B2f09STaCYvG7MDQsusCtjzZ0ffHc,6128
132
204
  autobyteus/llm/api/deepseek_llm.py,sha256=TEWtXAqM4OuKH1etj5kknzkbPsRGvEpWzTq_CoAU6po,894
@@ -134,10 +206,10 @@ autobyteus/llm/api/gemini_llm.py,sha256=pIH72Lodw5-w0XWKeybUza55cQ5BJChdgSzbWEVw
134
206
  autobyteus/llm/api/grok_llm.py,sha256=oZIkJrRhbvcKSrho5hLWqqRxO5SUfbwutKW1g-mPQC0,875
135
207
  autobyteus/llm/api/groq_llm.py,sha256=pq30UuR4NGVCVxMxcGTK2AVBTHtCymAi44hlkfvsXiY,3482
136
208
  autobyteus/llm/api/kimi_llm.py,sha256=oUgmP_D0ppr0zKhgRVyjxRMP8cEMGXB2DFUgXYqRlCg,873
137
- autobyteus/llm/api/lmstudio_llm.py,sha256=f0SDcX3U0MWI985DLwf73Z3uPNFP9XI6xMxRLdRZ584,1446
209
+ autobyteus/llm/api/lmstudio_llm.py,sha256=7A7BokUKj-kioTaSuEw_MKofd7d5BnmxK6pyTFGOgSk,1281
138
210
  autobyteus/llm/api/mistral_llm.py,sha256=VdVqEXp5GdXZJQ7NVXmiV9AVDYltb3neqo2EugDIMds,5019
139
211
  autobyteus/llm/api/nvidia_llm.py,sha256=jh1cz1zQtCVwYxFSFW9y6LXCW6rv8FdvjTCHvyoBzwc,3913
140
- autobyteus/llm/api/ollama_llm.py,sha256=hOB4FciwLhivKEKL8_UXM_qVxFGD8gop0xtXbQkDHo0,5959
212
+ autobyteus/llm/api/ollama_llm.py,sha256=yA5l62TiT7P2O6d6y-aiK5v99B0LqMAzcPUbn0zLAuA,5894
141
213
  autobyteus/llm/api/openai_compatible_llm.py,sha256=JNfgEJMRGinieo7RwY9jrdM7qusGvorMsggtq7LQ5fM,8691
142
214
  autobyteus/llm/api/openai_llm.py,sha256=414fWDFvTm7IkG3STfYCWT4mz1FQwEGnD4N5MpTyf6M,905
143
215
  autobyteus/llm/extensions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -189,22 +261,41 @@ autobyteus/rpc/server/base_method_handler.py,sha256=6sKWucR1vUYeritjJPHIX_sCQOD2
189
261
  autobyteus/rpc/server/method_handlers.py,sha256=Zqrr1R3yu_hVD0qCOPpxXm4ujkvdds9wCCneIeT3gU8,14702
190
262
  autobyteus/rpc/server/sse_server_handler.py,sha256=3F1LNLw6fXcB08hmWOUhGZROYhpPdk8xwz2TakiR-2M,16273
191
263
  autobyteus/rpc/server/stdio_server_handler.py,sha256=pSAvVtxyo0Hytzld7WINeKHvGBqEjp0Bad-xkY2Rul4,7398
264
+ autobyteus/task_management/__init__.py,sha256=cj9TXF4I4ROwqiX2MIwPuFN_9kFeIZhWlkbvP2m9S_Q,1639
265
+ autobyteus/task_management/base_task_board.py,sha256=s6ijobMhkMwNZlgfsFkoPp4jh0E-lVDZKbdOeRTWiuk,2187
266
+ autobyteus/task_management/deliverable.py,sha256=cXuWD7UhP_oElhUzLGGdCwE8Fn4IokURuanz4zg35Ps,490
267
+ autobyteus/task_management/events.py,sha256=sV32iH5KGoO2lgkUlU1lGgqaOJvL8BrsJpNyLHSx01s,945
268
+ autobyteus/task_management/in_memory_task_board.py,sha256=5B8ib7H9Ff6XYc1BzY7OaP4undyhhxPbqcZMsc2WRDI,5003
269
+ autobyteus/task_management/task_plan.py,sha256=VdUr9kJ5rAEadvw8nOE2mcDOCs4lP-jJOcKJks_pmzo,5096
270
+ autobyteus/task_management/converters/__init__.py,sha256=W-L-IcBeyhCRc0E2MW-pwJk0d4-SGwSdESszsIfc9b0,309
271
+ autobyteus/task_management/converters/task_board_converter.py,sha256=VJdcY6x0qBr0oitZSW6cZZJp7Kgnmr9WfWATmb160iY,2480
272
+ autobyteus/task_management/converters/task_plan_converter.py,sha256=WEOSuTUBE7lvtHUEyRPu7wcRnMk_eHpzcMBTnUmVPxw,2093
273
+ autobyteus/task_management/deliverables/__init__.py,sha256=RYBzSxKgzPnh8uE0TA2hA_SiI3dv3_dgvME0K-5AvvI,150
274
+ autobyteus/task_management/deliverables/file_deliverable.py,sha256=tTdpgdAtXwkZ-US0n8ilEl6CYI8dRVXhGEdBBCTay8c,425
275
+ autobyteus/task_management/schemas/__init__.py,sha256=CLn8--yMiBfqK1lyjkVXYjrOSnMuO_3QXbKVqQo3T-U,520
276
+ autobyteus/task_management/schemas/deliverable_schema.py,sha256=8_3F93gAeTfp6NeHqhIQLWFMpVwfiDuSOk0lnHnxxFU,603
277
+ autobyteus/task_management/schemas/plan_definition.py,sha256=oaudmKfkNK8foWVa0zd4hBGNK1SJ8rC8bdWF6aCY5Xw,1961
278
+ autobyteus/task_management/schemas/task_status_report.py,sha256=TSWGmbue3-ag0bZziB5PWao5burcvZYa2wJpNaMseF8,1676
279
+ autobyteus/task_management/tools/__init__.py,sha256=oKb6MLdUrD6h-oCnaZiQqlEvPwp91wRoQG8cg4lYsig,415
280
+ autobyteus/task_management/tools/get_task_board_status.py,sha256=UX2d376GXF6v0KQNowuItbIR7mcSG6qmIGpf0VRyDbQ,2767
281
+ autobyteus/task_management/tools/publish_task_plan.py,sha256=40c9jfjJRbiSyjFCpcVYchMeB38ie8idTukZwtjYAeg,5435
282
+ autobyteus/task_management/tools/update_task_status.py,sha256=k44dr4IMNHDwUO_rhUcnWmXD5m-d72__3fam9iC_Vhw,6469
192
283
  autobyteus/tools/__init__.py,sha256=82FKptxtN04HG_1YnnNnOzdpJKgKKhF7gAGdfkLLhNk,3004
193
284
  autobyteus/tools/ask_user_input.py,sha256=2KHv7kRR9yyd5VKLgW-vJiE4HiYiFozHsVN4_5NhhdE,1649
194
285
  autobyteus/tools/base_tool.py,sha256=x8Hjth7koJ6Brgi70phlm46K5SC9ofH4qokl4QqM9JQ,5159
195
286
  autobyteus/tools/functional_tool.py,sha256=_WBv_mZCTIaekBwlOLiV8A7nLZhJiR-HYG6WJDij-eg,10393
196
287
  autobyteus/tools/image_downloader.py,sha256=IQ-P1IBwLvbp8jyhtxLu54acWldJ6miFYkVIz7tHCMQ,4868
197
- autobyteus/tools/parameter_schema.py,sha256=y_CJywuOO1o14lTtwaXAVOR3B55JZAKJyZ175v-EJsE,10818
288
+ autobyteus/tools/parameter_schema.py,sha256=rRqhx0uwzr7-uPYIdZqEaxZ0bPJpX9GlHhipKXATwIU,11107
198
289
  autobyteus/tools/pdf_downloader.py,sha256=0WeznZhkYvXvgU2CH21q6LSVEQm8S1mAm7gtw_CjsJM,3927
199
290
  autobyteus/tools/timer.py,sha256=hPei4QONtpdQrSS72_SNw6-j-gVd5NT2RScAhqMhRSY,7384
200
- autobyteus/tools/tool_category.py,sha256=S1g-aE9eXod94evR8e-L7PfT0f17UUYSI9u663rPPZI,649
291
+ autobyteus/tools/tool_category.py,sha256=4bgH206qddgamoTvkg69DnNZYUJPKV3pM3hl0oGWRMU,710
201
292
  autobyteus/tools/tool_config.py,sha256=gnzGweccECNmCeufkzbskHeFOt3f0431DyAmMhqNVn4,3564
202
293
  autobyteus/tools/tool_meta.py,sha256=X2JOY5fcPSvUMdgUQr0zTV5bRDuAmF7vuUMax5X5DhE,4417
203
294
  autobyteus/tools/tool_origin.py,sha256=X1RqyDMWg2n7v0TciJHh5eiXgDDoU86BEQL3hx975jk,269
204
295
  autobyteus/tools/tool_state.py,sha256=CwmEu7GTdaE72QIsdsXQu0AmTxQTp5hMncFcY58PkGo,746
205
296
  autobyteus/tools/utils.py,sha256=PuHGlARmNx5HA2YFVF5XA36MoeAyFL6voK10S12AYS0,546
206
297
  autobyteus/tools/bash/__init__.py,sha256=X38g3OVhlr-6aLIYfcSyh8DzqHAEh8dSzfEH1NEH7aw,99
207
- autobyteus/tools/bash/bash_executor.py,sha256=j8geFGcWh8pNfr0O_jrixGQBHJC9yZ5GFH32hNDmAAg,2230
298
+ autobyteus/tools/bash/bash_executor.py,sha256=3VqilVSuzomMpqv7WWy6ukqhLJyiBy1tALRcDql8h8w,4502
208
299
  autobyteus/tools/browser/__init__.py,sha256=fNt3qo9ykOIhfG7CmbelCabMydhPTWL-5timHXBa8ZI,91
209
300
  autobyteus/tools/browser/session_aware/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
210
301
  autobyteus/tools/browser/session_aware/browser_session_aware_navigate_to.py,sha256=RuBtv9OfqSXIlSlIdaNv5Pcv82_FPnaK510kdHwr9sM,3099
@@ -238,44 +329,40 @@ autobyteus/tools/file/file_writer.py,sha256=LQgd9arr3jLFEzpjv6WnTP9XhsD44wxBVphg
238
329
  autobyteus/tools/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
239
330
  autobyteus/tools/handlers/shell_handler.py,sha256=ClTXqFR45iyD0gcoOPpKRX5p6g_6BI4a5JOLuKuQOIA,1065
240
331
  autobyteus/tools/mcp/__init__.py,sha256=gwT34UgJe2rU5y4bYNOLI-PyAmRQTMWKz_WC4f2LcyE,1553
241
- autobyteus/tools/mcp/config_service.py,sha256=b6xShFAcCzouMG5ICyBfTK_ebtj79dEU6YKr3wn2xTI,11212
332
+ autobyteus/tools/mcp/config_service.py,sha256=7OoqZGVxBob4IeeBjChFCpwyI9IJIxlOQDh-OjCffrY,11466
242
333
  autobyteus/tools/mcp/factory.py,sha256=SmPR6mgmwLEfzfole-zKuptKnSyeZEBi1t9gBbwCtZY,2204
243
334
  autobyteus/tools/mcp/schema_mapper.py,sha256=PJGEAlqCgkoCThLzmkG3jXOXYk6fR1ogjSpOiCuFKsc,7502
244
- autobyteus/tools/mcp/server_instance_manager.py,sha256=XJTKrA__fyKDxsWHwr9oqoxCboH2T3cJDFszQLKHhH8,4678
335
+ autobyteus/tools/mcp/server_instance_manager.py,sha256=pGZZCH9Qp7n6jefwyDsvoo0Pxe7AWCcqIqnXgWt8hyg,6289
245
336
  autobyteus/tools/mcp/tool.py,sha256=HpXSjvQjwwDzGGww1Cz3j4yCCLDiCYEv0RG-q-2BU4o,3380
246
- autobyteus/tools/mcp/tool_registrar.py,sha256=ZfCQxu9CPu2TAIeZzaRrai-NvMW87VC1TW8bHKzPBNs,8622
337
+ autobyteus/tools/mcp/tool_registrar.py,sha256=RugX4TdiD6IfXF8S6cy2Ae-ZobT6RdRKdx7NLbcBMyI,11028
247
338
  autobyteus/tools/mcp/types.py,sha256=KiQUPhqzro5VW7piA-eOXkBcE0FThOUgr9Pw_7iV6Us,4171
248
- autobyteus/tools/mcp/call_handlers/__init__.py,sha256=elxV-ttOoQ3Ve5idyIetdCzFDGlQBQ9UAG9okIpaI5c,516
249
- autobyteus/tools/mcp/call_handlers/base_handler.py,sha256=q-34xq6w-561rwujmoJVvhJMexe4-bhqBq8ORc_W6qA,1252
250
- autobyteus/tools/mcp/call_handlers/stdio_handler.py,sha256=HKbZYvX3PEZkZ60xmXgvFpEo4oYgss26l3bgswQvx2g,3522
251
- autobyteus/tools/mcp/call_handlers/streamable_http_handler.py,sha256=P3qMErRqHBaXtqnx_fz5NNqw7ecps856UmIsLJnniF8,2702
252
339
  autobyteus/tools/mcp/server/__init__.py,sha256=yfCMAtVlfy1x8aKEnRz9_CHnco2zVSdepwIPSjywSNw,523
253
340
  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
341
+ autobyteus/tools/mcp/server/http_managed_mcp_server.py,sha256=Kit7zcJxaRXfAXMxYqCKVcl4MfNsgRfXK9kjDaQFkMA,1969
255
342
  autobyteus/tools/mcp/server/proxy.py,sha256=08F3m1I_IH2wrRXK29R_NPDB6ITHpo982Mq9G53hbUo,1660
256
- autobyteus/tools/mcp/server/stdio_managed_mcp_server.py,sha256=vFI9icgRLedgxgEKrzNqSXMXtsdHvUcOCVhDvTSFb68,1375
343
+ autobyteus/tools/mcp/server/stdio_managed_mcp_server.py,sha256=a84GOnhWLg4vx6yo5dI8BlqUA_fdi0M5eNo2a-tGWwM,2085
257
344
  autobyteus/tools/operation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
258
345
  autobyteus/tools/operation/file_operation.py,sha256=bAehQ9PfHoCDpk9Wa7vx9h3ohzVuaGzzBUogxleTwq8,2375
259
346
  autobyteus/tools/operation/file_rename_operation.py,sha256=pExiC69HUzYbKihlVumlGHMGxmmrsKQB0JfAM5x4JH0,1710
260
347
  autobyteus/tools/operation/operation.py,sha256=9sIZnlrPct5CwkCKuwbspVKvjF4KumP6twmXRo1blwo,1702
261
348
  autobyteus/tools/operation/shell_operation.py,sha256=_BiGIRGWCzzwPVtbqFwXpHOvnqH68YqJujQI-gWeKx0,1860
262
349
  autobyteus/tools/registry/__init__.py,sha256=39TSHm7mD6NXhsrczsX5Mdr32US0I6z3Bzad4hgcrrA,250
263
- autobyteus/tools/registry/tool_definition.py,sha256=JGxMSVjlF9n3Uk2oCGXMhxb6WN3G3IqJNJTKKxwF0dw,7124
350
+ autobyteus/tools/registry/tool_definition.py,sha256=7MlbULQXCq9VPWl9CLlPXO5fp3vJztSlQFr2pKPfTHc,6953
264
351
  autobyteus/tools/registry/tool_registry.py,sha256=eekF5q3GZr3FwnwITGni-gyc46Vob5u3WoApmvEHPQ8,7564
265
352
  autobyteus/tools/usage/__init__.py,sha256=0kJoUH-m0d1AHTYJQyXlCjlXhMJ3e95Ykf-8J9lO2g4,224
266
353
  autobyteus/tools/usage/formatters/__init__.py,sha256=BThdI_R8Dkda1eHJFr1cQ7nLCgf5KfSuvWokjPrnT9U,1424
267
354
  autobyteus/tools/usage/formatters/anthropic_json_example_formatter.py,sha256=EVVPZ7e1tG3QRcEPjdOC0yTvnGisubfUm9geWbd9r2g,792
268
355
  autobyteus/tools/usage/formatters/anthropic_json_schema_formatter.py,sha256=Cwd4teoZcs64q1xemVYIW9lviH7A0t2jmg3W7TYv_Rs,869
269
356
  autobyteus/tools/usage/formatters/base_formatter.py,sha256=15YQHEV-uHREoi5INA6KWVrniatMbBPIGz82bVkZos8,1283
270
- autobyteus/tools/usage/formatters/default_json_example_formatter.py,sha256=xW6qlfZe9F_J7ho8pFFItaw5DEsSxf9m3tSiUTzU-gY,1897
357
+ autobyteus/tools/usage/formatters/default_json_example_formatter.py,sha256=SmMFPYr4mRmuVmwuTjOZxXOqhLBjt1XUpmD0i3VEAXE,5351
271
358
  autobyteus/tools/usage/formatters/default_json_schema_formatter.py,sha256=mZuHp_irHco3_S-VotSBvv5BRFDlTsmdmSIH3Ut71jY,958
272
- autobyteus/tools/usage/formatters/default_xml_example_formatter.py,sha256=TP6RbfYGafun9S50gW9sWduhbP2ndObyIITSmPUtPgs,2449
359
+ autobyteus/tools/usage/formatters/default_xml_example_formatter.py,sha256=i22vnjOIWO3mLxUoyN7lEwE1oSZ6ATMQW9wC-svThvs,3605
273
360
  autobyteus/tools/usage/formatters/default_xml_schema_formatter.py,sha256=ZhLhISZSxNxZaexcn73H5yv81qEMxQgBUpZP_84-SBM,2109
274
- autobyteus/tools/usage/formatters/gemini_json_example_formatter.py,sha256=FZKB9rwfjYEBEIVvNg0jv98Kei89m96DacSP5-bKAoY,1769
361
+ autobyteus/tools/usage/formatters/gemini_json_example_formatter.py,sha256=Afuqza-2goEOTwbH3w_W-6PF3pJ2NWW5YJ22NVfIMIw,2184
275
362
  autobyteus/tools/usage/formatters/gemini_json_schema_formatter.py,sha256=za6FhkrbDUcezc9-u4w4_ytQAQyR8OpKypC_CCTYlBY,875
276
- autobyteus/tools/usage/formatters/google_json_example_formatter.py,sha256=Zpc3OID2NRujjMP16edStoM4hqdYYEcM4e_dQjWZHAk,1767
363
+ autobyteus/tools/usage/formatters/google_json_example_formatter.py,sha256=U1ovG6HPG3Eyavey0f1yB970lKqX8pMPfsM5Mzfv9xA,2211
277
364
  autobyteus/tools/usage/formatters/google_json_schema_formatter.py,sha256=gKeuR_QhiebFGja303rg9q9CxgynJxIoCd4SrXuXRUU,868
278
- autobyteus/tools/usage/formatters/openai_json_example_formatter.py,sha256=qzvRnn43L1OJN5720R2XYyBYfwmBn3LBH6agIL7Nsv8,2331
365
+ autobyteus/tools/usage/formatters/openai_json_example_formatter.py,sha256=xvDurFOxAVxzWO4GJPAVeuqUwkhpFokMyzUNlJ-foeg,2411
279
366
  autobyteus/tools/usage/formatters/openai_json_schema_formatter.py,sha256=3pN4CnmWiBJaZMhV7qnWcSKPpyZ2cEdiU-FVMRfPT1w,948
280
367
  autobyteus/tools/usage/parsers/__init__.py,sha256=4y235cYvUm60v30m4KCwQ4g9x9yP81QYBhSkUmjFWAU,915
281
368
  autobyteus/tools/usage/parsers/_json_extractor.py,sha256=Q7BJsEcFkEZJ8q-ifIl-7t4FXZgFoFEwFXAGvKFYhCk,3601
@@ -284,24 +371,15 @@ autobyteus/tools/usage/parsers/base_parser.py,sha256=iNHVUXMzAydnhYeEBgcXU0g8L_H
284
371
  autobyteus/tools/usage/parsers/default_json_tool_usage_parser.py,sha256=jl-VKMubpgI15TuX7tyKmu_4WHb2YUVw5Yz2fy7GXkY,3480
285
372
  autobyteus/tools/usage/parsers/default_xml_tool_usage_parser.py,sha256=FtC_szwfQDCORHSp6XG4omCsQTwyBr2AZCNEX90dFV0,5829
286
373
  autobyteus/tools/usage/parsers/exceptions.py,sha256=CncCSH4IJUYPaCTilj1oPgfZWdCycIxQBrWiSKuWXtc,468
287
- autobyteus/tools/usage/parsers/gemini_json_tool_usage_parser.py,sha256=KcjN3xa67Dv3pSaN-RdCOilDa7FPpHhKB1NajL1ETGU,2580
374
+ autobyteus/tools/usage/parsers/gemini_json_tool_usage_parser.py,sha256=t0vQWhmf4t6-tGq6OeH4o-1w_3eeUxQjHDYNpQ5g6R4,3502
288
375
  autobyteus/tools/usage/parsers/openai_json_tool_usage_parser.py,sha256=wQXe4HAYsvfuLG6Ffv_Rk38ZAN5c1NlaEb7lFq7xbVs,6916
289
- autobyteus/tools/usage/parsers/provider_aware_tool_usage_parser.py,sha256=fbQO7-UASFnTipqj6lrFKO7jpC7L4eIPG72vdwNdtJQ,3089
290
- autobyteus/tools/usage/providers/__init__.py,sha256=fh-S4Og-mePoTAkBVuq2qSzQnrVpOCwwfjNHC5d0VOk,832
291
- autobyteus/tools/usage/providers/json_example_provider.py,sha256=sYXTKusAtBCSifpos1x3v0t8igYbF6gEeQ5W3sfHOpk,1221
292
- autobyteus/tools/usage/providers/json_schema_provider.py,sha256=UH5uBdRHp33QLnOrmkmF507EHCxG4JlPHd19j6AJvIw,1312
293
- autobyteus/tools/usage/providers/json_tool_usage_parser_provider.py,sha256=B32hvsmoeGCtekh_maGtSlIMbXR3NRZ6dGEShIVWUIg,1072
294
- autobyteus/tools/usage/providers/tool_manifest_provider.py,sha256=-DjQ7LOjS4I7WNzqWuD38hRMBekil5xgThWyRTL_U9c,2932
295
- autobyteus/tools/usage/providers/xml_example_provider.py,sha256=BLF64tRoptS2lCNf5NNzj_3e3F93NQ9cQ3nXZt6_ySs,1045
296
- autobyteus/tools/usage/providers/xml_schema_provider.py,sha256=7RpC__MDpZUjc7Px03hcDpvm_NH32aQgEdMwwfX9oVY,1071
297
- autobyteus/tools/usage/providers/xml_tool_usage_parser_provider.py,sha256=qGQXTApw0LrT8rRTP2KsbgTBJVhQFq-dSK5KVv5JG3E,944
298
- autobyteus/tools/usage/registries/__init__.py,sha256=m-wzJidybRtTFMGohse-bL2s9SOdO1Lm-1t5wHE2gNs,885
299
- autobyteus/tools/usage/registries/json_example_formatter_registry.py,sha256=vYA5F0xiIRUUGTjBkoLPJZzAkvHsQwOvf-w0UZtrjcc,2479
300
- autobyteus/tools/usage/registries/json_schema_formatter_registry.py,sha256=0eJ6kHhkdynARr9Q-lzis80XcC9YITibsivUs49eJNU,2440
301
- autobyteus/tools/usage/registries/json_tool_usage_parser_registry.py,sha256=kLIK6I5l5FEEmveoUA-WpeehWiAF5mlpoiI_xe4Q2eI,2011
302
- autobyteus/tools/usage/registries/xml_example_formatter_registry.py,sha256=KmYnyaw9cpwTSJtBBBqQ61SlhrmRPLgpMF6mn21Hgww,1198
303
- autobyteus/tools/usage/registries/xml_schema_formatter_registry.py,sha256=aiuW7bs68Y7mct9YRT2q9oRjHnJXvHpl-TDBvshz2lE,1444
304
- autobyteus/tools/usage/registries/xml_tool_usage_parser_registry.py,sha256=FiGlK_kmyzSMN97xShoPL1Bytd9hfCA67wMFrjWOOd4,1203
376
+ autobyteus/tools/usage/parsers/provider_aware_tool_usage_parser.py,sha256=3onfGvrxDnLQI29r9rpcNNObKBO7MvGR_o1MH3k10F8,2647
377
+ autobyteus/tools/usage/providers/__init__.py,sha256=C8GmfzYwzSS2OGv7MbvxtRe0OsIALvkC7rN7OWvA5p4,445
378
+ autobyteus/tools/usage/providers/tool_manifest_provider.py,sha256=CyIPITExm0rnpjafz_yD1WHSCTvS6rFnFsqv3FRzLQM,3427
379
+ autobyteus/tools/usage/registries/__init__.py,sha256=S1jYYPqAjvD1rY0b8zkffBnKz8-_ptftfbgr1lqb7I8,547
380
+ autobyteus/tools/usage/registries/tool_formatter_pair.py,sha256=Deki2aAEsFY0OSrMQf-4wZcyIInGI7EKQ2ZKenaFtMU,593
381
+ autobyteus/tools/usage/registries/tool_formatting_registry.py,sha256=1q6YPUZW_VJTbQToVrfXQ5FFWFQLC-0JWfstfj3xwwk,2863
382
+ autobyteus/tools/usage/registries/tool_usage_parser_registry.py,sha256=xTbdoqYlKsuIyg8UfbDHEws25Xc02R0ESDdLE7U7iQM,2244
305
383
  autobyteus/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
306
384
  autobyteus/utils/dynamic_enum.py,sha256=c_mgKtKrjb958LlCWeAApl1LMvVB7U_0SWl-8XFhRag,1339
307
385
  autobyteus/utils/file_utils.py,sha256=QK0LvrwA5c9FDjpSrfPPEQbu_AirteJNiLad9yRahDY,512
@@ -360,22 +438,18 @@ autobyteus/workflow/streaming/workflow_stream_event_payloads.py,sha256=jv1bVYg-7
360
438
  autobyteus/workflow/streaming/workflow_stream_events.py,sha256=75P29jNgcL7Go7D9wVz236KTwPfmqc5K7hUvVnc94K0,2221
361
439
  autobyteus/workflow/utils/__init__.py,sha256=SzaMZHnJBIJKcT_r-HOeyIcuxzRu2bGeFkOcMLJaalk,222
362
440
  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
441
+ autobyteus-1.1.5.dist-info/licenses/LICENSE,sha256=Ompok_c8HRsXRwmax-pGR9OZRRxZC9RPp4JB6eTJd0M,1360
364
442
  examples/__init__.py,sha256=BtTQJ6yeHyksK5GC3kfN6RFR6Gcrwq1TBmp6FIIj3Z8,40
365
443
  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
444
+ examples/run_browser_agent.py,sha256=-idzmYbU8O-_gojdXHLOO7UIq4BEu-nua6x0wBbPegU,11740
445
+ examples/run_google_slides_agent.py,sha256=mNyIk2sWqbL9Yxa8_tX3xhecFZYwHtU0bdYo_53nMu8,13102
368
446
  examples/run_mcp_browser_client.py,sha256=6vEBxGtAuGffkFk-gr3NvqetO84IdhNzip5Jp7V1tSc,6772
369
447
  examples/run_mcp_google_slides_client.py,sha256=EMG7nG3df3fCrOX_iIncDWSqDdBrifm7gGYWUnkCJ_c,11826
370
448
  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,,
449
+ examples/run_poem_writer.py,sha256=wJsT4ZHwXw3MbPAESwyCkAMWWYt7KH5BLhEDQxA06XM,13145
450
+ examples/run_sqlite_agent.py,sha256=c0ktqJ9tExMBgHSzA12Ys9x96ZqS2RBy0iDPFWstUJE,13161
451
+ examples/agent_team/__init__.py,sha256=WIg0HENp1TUClJ3p2gIRn0C-VW9Qr7Ttqtedr4xQ3Jo,51
452
+ autobyteus-1.1.5.dist-info/METADATA,sha256=UgUquTZVUc8AVIke4QwyGDhlOVEKbhRyVpLqJ7JDsDw,6947
453
+ autobyteus-1.1.5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
454
+ autobyteus-1.1.5.dist-info/top_level.txt,sha256=vNmK1Y8Irbc0iDPdRtr9gIx5eLM-c2v1ntItkzICzHU,20
455
+ autobyteus-1.1.5.dist-info/RECORD,,
@@ -0,0 +1 @@
1
+ # file: autobyteus/examples/agent_team/__init__.py
@@ -176,15 +176,18 @@ async def main(args: argparse.Namespace):
176
176
  # 5. Configure and create the agent.
177
177
  try:
178
178
  _ = LLMModel[args.llm_model]
179
- except KeyError:
180
- all_models = sorted(list(LLMModel), key=lambda m: m.name)
181
- available_models_list = [f" - Name: {m.name:<35} Value: {m.value}" for m in all_models]
182
- logger.error(
183
- f"LLM Model '{args.llm_model}' is not valid.\n"
184
- f"You can use either the model name (e.g., 'GPT_4o_API') or its value (e.g., 'gpt-4o').\n\n"
185
- f"Available models:\n" +
186
- "\n".join(available_models_list)
187
- )
179
+ except (KeyError, ValueError):
180
+ logger.error(f"LLM Model '{args.llm_model}' is not valid or ambiguous.", file=sys.stderr)
181
+ try:
182
+ LLMFactory.ensure_initialized()
183
+ print("\nAvailable LLM Models (use the 'Identifier' with --llm-model):")
184
+ all_models = sorted(list(LLMModel), key=lambda m: m.model_identifier)
185
+ if not all_models:
186
+ print(" No models found.")
187
+ for model in all_models:
188
+ print(f" - Display Name: {model.name:<30} Identifier: {model.model_identifier}")
189
+ except Exception as e:
190
+ print(f"Additionally, an error occurred while listing models: {e}", file=sys.stderr)
188
191
  sys.exit(1)
189
192
 
190
193
  logger.info(f"Creating LLM instance for model: {args.llm_model}")
@@ -205,8 +208,7 @@ async def main(args: argparse.Namespace):
205
208
  llm_instance=llm_instance,
206
209
  system_prompt=system_prompt,
207
210
  tools=tools_for_agent,
208
- auto_execute_tools=False,
209
- use_xml_tool_format=False
211
+ auto_execute_tools=False
210
212
  )
211
213
 
212
214
  agent = AgentFactory().create_agent(config=browser_agent_config)
@@ -224,7 +226,7 @@ async def main(args: argparse.Namespace):
224
226
 
225
227
  if __name__ == "__main__":
226
228
  parser = argparse.ArgumentParser(description="Run the BrowserAgent interactively.")
227
- parser.add_argument("--llm-model", type=str, default="gemini-2-0-flash-rpa", help=f"The LLM model to use. Call --help-models for list.")
229
+ parser.add_argument("--llm-model", type=str, default="gemini-2.0-flash-rpa", help=f"The LLM model identifier to use. Call --help-models for list.")
228
230
  parser.add_argument("--help-models", action="store_true", help="Display available LLM models and exit.")
229
231
  parser.add_argument("--debug", action="store_true", help="Enable debug logging.")
230
232
  parser.add_argument("--agent-log-file", type=str, default="./agent_logs_browser.txt",
@@ -235,12 +237,12 @@ if __name__ == "__main__":
235
237
  if "--help-models" in sys.argv:
236
238
  try:
237
239
  LLMFactory.ensure_initialized()
238
- print("Available LLM Models (you can use either name or value with --llm-model):")
239
- all_models = sorted(list(LLMModel), key=lambda m: m.name)
240
+ print("Available LLM Models (use the 'Identifier' with --llm-model):")
241
+ all_models = sorted(list(LLMModel), key=lambda m: m.model_identifier)
240
242
  if not all_models:
241
243
  print(" No models found.")
242
244
  for model in all_models:
243
- print(f" - Name: {model.name:<35} Value: {model.value}")
245
+ print(f" - Display Name: {model.name:<30} Identifier: {model.model_identifier}")
244
246
  except Exception as e:
245
247
  print(f"Error listing models: {e}")
246
248
  sys.exit(0)
@@ -199,16 +199,18 @@ async def main(args: argparse.Namespace):
199
199
  # 5. Configure and create the agent.
200
200
  try:
201
201
  _ = LLMModel[args.llm_model]
202
- except KeyError:
203
- all_models = sorted(list(LLMModel), key=lambda m: m.name)
204
- available_models_list = [f" - Name: {m.name:<35} Value: {m.value}" for m in all_models]
205
-
206
- logger.error(
207
- f"LLM Model '{args.llm_model}' is not valid.\n"
208
- f"You can use either the model name (e.g., 'GPT_4o_API') or its value (e.g., 'gpt-4o').\n\n"
209
- f"Available models:\n" +
210
- "\n".join(available_models_list)
211
- )
202
+ except (KeyError, ValueError):
203
+ logger.error(f"LLM Model '{args.llm_model}' is not valid or ambiguous.", file=sys.stderr)
204
+ try:
205
+ LLMFactory.ensure_initialized()
206
+ print("\nAvailable LLM Models (use the 'Identifier' with --llm-model):")
207
+ all_models = sorted(list(LLMModel), key=lambda m: m.model_identifier)
208
+ if not all_models:
209
+ print(" No models found.")
210
+ for model in all_models:
211
+ print(f" - Display Name: {model.name:<30} Identifier: {model.model_identifier}")
212
+ except Exception as e:
213
+ print(f"Additionally, an error occurred while listing models: {e}", file=sys.stderr)
212
214
  sys.exit(1)
213
215
 
214
216
  logger.info(f"Creating LLM instance for model: {args.llm_model}")
@@ -231,8 +233,7 @@ async def main(args: argparse.Namespace):
231
233
  llm_instance=llm_instance,
232
234
  system_prompt=system_prompt,
233
235
  tools=tools_for_agent,
234
- auto_execute_tools=False,
235
- use_xml_tool_format=False
236
+ auto_execute_tools=False
236
237
  )
237
238
 
238
239
  agent = AgentFactory().create_agent(config=gslides_agent_config)
@@ -250,7 +251,7 @@ async def main(args: argparse.Namespace):
250
251
 
251
252
  if __name__ == "__main__":
252
253
  parser = argparse.ArgumentParser(description="Run the GoogleSlidesAgent interactively.")
253
- parser.add_argument("--llm-model", type=str, default="gpt-4o", help=f"The LLM model to use. Call --help-models for list.")
254
+ parser.add_argument("--llm-model", type=str, default="gpt-4o", help=f"The LLM model identifier to use. Call --help-models for list.")
254
255
  parser.add_argument("--help-models", action="store_true", help="Display available LLM models and exit.")
255
256
  parser.add_argument("--debug", action="store_true", help="Enable debug logging.")
256
257
  parser.add_argument("--agent-log-file", type=str, default="./agent_logs_gslides.txt",
@@ -261,12 +262,12 @@ if __name__ == "__main__":
261
262
  if "--help-models" in sys.argv:
262
263
  try:
263
264
  LLMFactory.ensure_initialized()
264
- print("Available LLM Models (you can use either name or value with --llm-model):")
265
- all_models = sorted(list(LLMModel), key=lambda m: m.name)
265
+ print("Available LLM Models (use the 'Identifier' with --llm-model):")
266
+ all_models = sorted(list(LLMModel), key=lambda m: m.model_identifier)
266
267
  if not all_models:
267
268
  print(" No models found.")
268
269
  for model in all_models:
269
- print(f" - Name: {model.name:<35} Value: {model.value}")
270
+ print(f" - Display Name: {model.name:<30} Identifier: {model.model_identifier}")
270
271
  except Exception as e:
271
272
  print(f"Error listing models: {e}")
272
273
  sys.exit(0)
@@ -36,7 +36,7 @@ try:
36
36
  # Import autobyteus components from the current implementation
37
37
  from autobyteus.agent.context.agent_config import AgentConfig
38
38
  from autobyteus.llm.models import LLMModel
39
- from autobyteus.llm.llm_factory import default_llm_factory
39
+ from autobyteus.llm.llm_factory import default_llm_factory, LLMFactory
40
40
  from autobyteus.agent.factory.agent_factory import AgentFactory
41
41
  from autobyteus.cli import agent_cli
42
42
  from autobyteus.tools.file.file_writer import file_writer
@@ -192,8 +192,17 @@ async def main(args: argparse.Namespace):
192
192
  # Validate the LLM model name
193
193
  _ = LLMModel[args.llm_model]
194
194
  except (ValueError, KeyError):
195
- logger.error(f"LLM Model '{args.llm_model}' is not valid.")
196
- logger.info(f"Available models: {[m.value for m in LLMModel]}")
195
+ logger.error(f"LLM Model '{args.llm_model}' is not valid or is ambiguous.", file=sys.stderr)
196
+ try:
197
+ LLMFactory.ensure_initialized()
198
+ print("\nAvailable LLM Models (use the 'Identifier' with --llm-model):")
199
+ all_models = sorted(list(LLMModel), key=lambda m: m.model_identifier)
200
+ if not all_models:
201
+ print(" No models found.")
202
+ for model in all_models:
203
+ print(f" - Display Name: {model.name:<30} Identifier: {model.model_identifier}")
204
+ except Exception as e:
205
+ print(f"Additionally, an error occurred while listing models: {e}", file=sys.stderr)
197
206
  sys.exit(1)
198
207
 
199
208
  logger.info(f"Creating LLM instance for model: {args.llm_model}")
@@ -213,8 +222,7 @@ async def main(args: argparse.Namespace):
213
222
  system_prompt=system_prompt,
214
223
  tools=tools_for_agent,
215
224
  workspace=workspace,
216
- auto_execute_tools=False,
217
- use_xml_tool_format=False
225
+ auto_execute_tools=False
218
226
  )
219
227
 
220
228
  # Use the AgentFactory to create the agent
@@ -240,7 +248,7 @@ if __name__ == "__main__": # pragma: no cover
240
248
  parser.add_argument("--topic", type=str, default=None, help="Optional: The initial topic for the first poem.")
241
249
  parser.add_argument("--output-dir", type=str, default="./poem_writer_output", help="Directory to save the poem(s). Defaults to './poem_writer_output'.")
242
250
  parser.add_argument("--poem-filename", type=str, default="poem_interactive.txt", help="Filename for the saved poem.")
243
- parser.add_argument("--llm-model", type=str, default="GPT_4o_API", help=f"The LLM model to use. Call --help-models for list.")
251
+ parser.add_argument("--llm-model", type=str, default="gpt-4o", help=f"The LLM model identifier to use. Call --help-models for list.")
244
252
  parser.add_argument("--help-models", action="store_true", help="Display available LLM models and exit.")
245
253
  parser.add_argument("--debug", action="store_true", help="Enable debug logging. This will create detailed agent_logs.txt and a separate queue_logs.txt for noisy logs.")
246
254
  parser.add_argument("--no-tool-logs", action="store_true",
@@ -251,13 +259,15 @@ if __name__ == "__main__": # pragma: no cover
251
259
 
252
260
  if "--help-models" in sys.argv:
253
261
  try:
254
- from autobyteus.llm.llm_factory import LLMFactory
255
262
  LLMFactory.ensure_initialized()
256
- print("Available LLM Models:")
257
- model_names = [m.name for m in LLMModel] if LLMModel else []
258
- for model_name in sorted(model_names): print(f" - {model_name}")
259
- except ImportError as e_llm: print(f"Could not import LLM components to list models: {e_llm}")
260
- except Exception as e_llm_init: print(f"Error initializing LLM components to list models: {e_llm_init}")
263
+ print("Available LLM Models (use the 'Identifier' with --llm-model):")
264
+ all_models = sorted(list(LLMModel), key=lambda m: m.model_identifier)
265
+ if not all_models:
266
+ print(" No models found.")
267
+ for model in all_models:
268
+ print(f" - Display Name: {model.name:<30} Identifier: {model.model_identifier}")
269
+ except Exception as e:
270
+ print(f"Error listing models: {e}")
261
271
  sys.exit(0)
262
272
 
263
273
  parsed_args = parser.parse_args()