autobyteus 1.1.0__py3-none-any.whl → 1.1.2__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/bootstrap_steps/agent_bootstrapper.py +1 -1
- autobyteus/agent/bootstrap_steps/agent_runtime_queue_initialization_step.py +1 -1
- autobyteus/agent/bootstrap_steps/base_bootstrap_step.py +1 -1
- autobyteus/agent/bootstrap_steps/system_prompt_processing_step.py +1 -1
- autobyteus/agent/bootstrap_steps/workspace_context_initialization_step.py +1 -1
- autobyteus/agent/context/__init__.py +0 -5
- autobyteus/agent/context/agent_config.py +6 -2
- autobyteus/agent/context/agent_context.py +2 -5
- autobyteus/agent/context/agent_phase_manager.py +105 -5
- autobyteus/agent/context/agent_runtime_state.py +2 -2
- autobyteus/agent/context/phases.py +2 -0
- autobyteus/agent/events/__init__.py +0 -11
- autobyteus/agent/events/agent_events.py +0 -37
- autobyteus/agent/events/notifiers.py +25 -7
- autobyteus/agent/events/worker_event_dispatcher.py +1 -1
- autobyteus/agent/factory/agent_factory.py +6 -2
- autobyteus/agent/group/agent_group.py +16 -7
- autobyteus/agent/handlers/approved_tool_invocation_event_handler.py +28 -14
- autobyteus/agent/handlers/lifecycle_event_logger.py +1 -1
- autobyteus/agent/handlers/llm_complete_response_received_event_handler.py +4 -2
- autobyteus/agent/handlers/tool_invocation_request_event_handler.py +40 -15
- autobyteus/agent/handlers/tool_result_event_handler.py +12 -7
- autobyteus/agent/hooks/__init__.py +7 -0
- autobyteus/agent/hooks/base_phase_hook.py +11 -2
- autobyteus/agent/hooks/hook_definition.py +36 -0
- autobyteus/agent/hooks/hook_meta.py +37 -0
- autobyteus/agent/hooks/hook_registry.py +118 -0
- autobyteus/agent/input_processor/base_user_input_processor.py +6 -3
- autobyteus/agent/input_processor/passthrough_input_processor.py +2 -1
- autobyteus/agent/input_processor/processor_meta.py +1 -1
- autobyteus/agent/input_processor/processor_registry.py +19 -0
- autobyteus/agent/llm_response_processor/base_processor.py +6 -3
- autobyteus/agent/llm_response_processor/processor_meta.py +1 -1
- autobyteus/agent/llm_response_processor/processor_registry.py +19 -0
- autobyteus/agent/llm_response_processor/provider_aware_tool_usage_processor.py +2 -1
- autobyteus/agent/message/context_file_type.py +2 -3
- autobyteus/agent/phases/__init__.py +18 -0
- autobyteus/agent/phases/discover.py +52 -0
- autobyteus/agent/phases/manager.py +265 -0
- autobyteus/agent/phases/phase_enum.py +49 -0
- autobyteus/agent/phases/transition_decorator.py +40 -0
- autobyteus/agent/phases/transition_info.py +33 -0
- autobyteus/agent/remote_agent.py +1 -1
- autobyteus/agent/runtime/agent_runtime.py +5 -10
- autobyteus/agent/runtime/agent_worker.py +62 -19
- autobyteus/agent/streaming/agent_event_stream.py +58 -5
- autobyteus/agent/streaming/stream_event_payloads.py +24 -13
- autobyteus/agent/streaming/stream_events.py +14 -11
- autobyteus/agent/system_prompt_processor/base_processor.py +6 -3
- autobyteus/agent/system_prompt_processor/processor_meta.py +1 -1
- autobyteus/agent/system_prompt_processor/tool_manifest_injector_processor.py +45 -31
- autobyteus/agent/tool_invocation.py +29 -3
- autobyteus/agent/utils/wait_for_idle.py +1 -1
- autobyteus/agent/workspace/__init__.py +2 -0
- autobyteus/agent/workspace/base_workspace.py +33 -11
- autobyteus/agent/workspace/workspace_config.py +160 -0
- autobyteus/agent/workspace/workspace_definition.py +36 -0
- autobyteus/agent/workspace/workspace_meta.py +37 -0
- autobyteus/agent/workspace/workspace_registry.py +72 -0
- autobyteus/cli/__init__.py +4 -3
- autobyteus/cli/agent_cli.py +25 -207
- autobyteus/cli/cli_display.py +205 -0
- autobyteus/events/event_manager.py +2 -1
- autobyteus/events/event_types.py +3 -1
- autobyteus/llm/api/autobyteus_llm.py +2 -12
- autobyteus/llm/api/deepseek_llm.py +11 -173
- autobyteus/llm/api/grok_llm.py +11 -172
- autobyteus/llm/api/kimi_llm.py +24 -0
- autobyteus/llm/api/mistral_llm.py +4 -4
- autobyteus/llm/api/ollama_llm.py +2 -2
- autobyteus/llm/api/openai_compatible_llm.py +193 -0
- autobyteus/llm/api/openai_llm.py +11 -139
- autobyteus/llm/extensions/token_usage_tracking_extension.py +11 -1
- autobyteus/llm/llm_factory.py +168 -42
- autobyteus/llm/models.py +25 -29
- autobyteus/llm/ollama_provider.py +6 -2
- autobyteus/llm/ollama_provider_resolver.py +44 -0
- autobyteus/llm/providers.py +1 -0
- autobyteus/llm/token_counter/kimi_token_counter.py +24 -0
- autobyteus/llm/token_counter/token_counter_factory.py +3 -0
- autobyteus/llm/utils/messages.py +3 -3
- autobyteus/tools/__init__.py +2 -0
- autobyteus/tools/base_tool.py +7 -1
- autobyteus/tools/functional_tool.py +20 -5
- autobyteus/tools/mcp/call_handlers/stdio_handler.py +15 -1
- autobyteus/tools/mcp/config_service.py +106 -127
- autobyteus/tools/mcp/registrar.py +247 -59
- autobyteus/tools/mcp/types.py +5 -3
- autobyteus/tools/registry/tool_definition.py +8 -1
- autobyteus/tools/registry/tool_registry.py +18 -0
- autobyteus/tools/tool_category.py +11 -0
- autobyteus/tools/tool_meta.py +3 -1
- autobyteus/tools/tool_state.py +20 -0
- autobyteus/tools/usage/parsers/_json_extractor.py +99 -0
- autobyteus/tools/usage/parsers/default_json_tool_usage_parser.py +46 -77
- autobyteus/tools/usage/parsers/default_xml_tool_usage_parser.py +87 -96
- autobyteus/tools/usage/parsers/gemini_json_tool_usage_parser.py +37 -47
- autobyteus/tools/usage/parsers/openai_json_tool_usage_parser.py +112 -113
- {autobyteus-1.1.0.dist-info → autobyteus-1.1.2.dist-info}/METADATA +13 -12
- {autobyteus-1.1.0.dist-info → autobyteus-1.1.2.dist-info}/RECORD +103 -82
- {autobyteus-1.1.0.dist-info → autobyteus-1.1.2.dist-info}/WHEEL +0 -0
- {autobyteus-1.1.0.dist-info → autobyteus-1.1.2.dist-info}/licenses/LICENSE +0 -0
- {autobyteus-1.1.0.dist-info → autobyteus-1.1.2.dist-info}/top_level.txt +0 -0
|
@@ -3,129 +3,147 @@ autobyteus/check_requirements.py,sha256=nLWmqMlGiAToQuub68IpL2EhRxFZ1CyCwRCMi2C5
|
|
|
3
3
|
autobyteus/agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
autobyteus/agent/agent.py,sha256=M8ru6n2tVnKwwcHlubpPfvLj7P_yg3zQ8k0rfBu2mWg,4923
|
|
5
5
|
autobyteus/agent/exceptions.py,sha256=tfXvey5SkT70X6kcu29o8YO91KB0hI9_uLrba91_G2s,237
|
|
6
|
-
autobyteus/agent/remote_agent.py,sha256=
|
|
7
|
-
autobyteus/agent/tool_invocation.py,sha256=
|
|
6
|
+
autobyteus/agent/remote_agent.py,sha256=DPhAWobptj82HZaACbtLkXQBYIotgr3yZ6u4D9TJmeE,14458
|
|
7
|
+
autobyteus/agent/tool_invocation.py,sha256=Kt1ge4kUGzC5f6ONdoBNGDUr9OwSAIEKmGFrtGzjewM,2312
|
|
8
8
|
autobyteus/agent/bootstrap_steps/__init__.py,sha256=galEcfZkGFg73R1Ah5V09ytAIazir8vlfZ8_Z48m35k,811
|
|
9
|
-
autobyteus/agent/bootstrap_steps/agent_bootstrapper.py,sha256=
|
|
10
|
-
autobyteus/agent/bootstrap_steps/agent_runtime_queue_initialization_step.py,sha256=
|
|
11
|
-
autobyteus/agent/bootstrap_steps/base_bootstrap_step.py,sha256=
|
|
12
|
-
autobyteus/agent/bootstrap_steps/system_prompt_processing_step.py,sha256=
|
|
13
|
-
autobyteus/agent/bootstrap_steps/workspace_context_initialization_step.py,sha256=
|
|
14
|
-
autobyteus/agent/context/__init__.py,sha256=
|
|
15
|
-
autobyteus/agent/context/agent_config.py,sha256=
|
|
16
|
-
autobyteus/agent/context/agent_context.py,sha256=
|
|
17
|
-
autobyteus/agent/context/agent_phase_manager.py,sha256=
|
|
18
|
-
autobyteus/agent/context/agent_runtime_state.py,sha256=
|
|
19
|
-
autobyteus/agent/context/phases.py,sha256=
|
|
20
|
-
autobyteus/agent/events/__init__.py,sha256=
|
|
21
|
-
autobyteus/agent/events/agent_events.py,sha256=
|
|
9
|
+
autobyteus/agent/bootstrap_steps/agent_bootstrapper.py,sha256=v3hPDEnVySh7SCfa4ynUK6Me3tA4FX-XH87-CCTHwLY,4229
|
|
10
|
+
autobyteus/agent/bootstrap_steps/agent_runtime_queue_initialization_step.py,sha256=wulFdVAwR4jTZtJgHwLYf07r76KKCKpwa1Cho2AqjSw,3265
|
|
11
|
+
autobyteus/agent/bootstrap_steps/base_bootstrap_step.py,sha256=8XaGHJva2Fo4T3fACK36FbEcrblj105oVhffYFEQO1A,1349
|
|
12
|
+
autobyteus/agent/bootstrap_steps/system_prompt_processing_step.py,sha256=6bnKzUqdqHVAriXEKU7mddH6br7JRSUget4BllxPijg,5521
|
|
13
|
+
autobyteus/agent/bootstrap_steps/workspace_context_initialization_step.py,sha256=FMF9fhD6Wgas4TpQbSwKiL43OZBmwh_cAA3G_5jRJhM,2112
|
|
14
|
+
autobyteus/agent/context/__init__.py,sha256=7LXLRuI_9Por2g_B4p89jLG3rZeJ5OYlmTXkjT4OGBY,364
|
|
15
|
+
autobyteus/agent/context/agent_config.py,sha256=XDnjoCkKP_dDHyl0s9Fc5cl4k_xTTaeTQ1DACMGkf8o,4501
|
|
16
|
+
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
|
+
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
|
+
autobyteus/agent/events/__init__.py,sha256=8AL83PBRLkEptTzPznn_XpGXq2-S56Yxx3WarNcsc3U,1507
|
|
21
|
+
autobyteus/agent/events/agent_events.py,sha256=plrBY3Cr_nUhrwvkpED_2qyPq2Slc0ciiupsWdPvmwo,3821
|
|
22
22
|
autobyteus/agent/events/agent_input_event_queue_manager.py,sha256=VfynrdVSPkKEH94yg9p1WBOoV52JQX8MRJhJ-GU7fcY,10461
|
|
23
|
-
autobyteus/agent/events/notifiers.py,sha256=
|
|
24
|
-
autobyteus/agent/events/worker_event_dispatcher.py,sha256=
|
|
23
|
+
autobyteus/agent/events/notifiers.py,sha256=UTLFC2OeBMftku97rAFSZU8J12Ji8s4iPeEZTovyEBQ,7455
|
|
24
|
+
autobyteus/agent/events/worker_event_dispatcher.py,sha256=RVlylVdEcPhWmiVJZFwGSZbG3zVQ_bwTub9tIXvP-ps,6187
|
|
25
25
|
autobyteus/agent/factory/__init__.py,sha256=4_PxMM-S_BRuYoQBHIffY6bXpBdEv-zFyuB6YaK93Yw,204
|
|
26
|
-
autobyteus/agent/factory/agent_factory.py,sha256=
|
|
26
|
+
autobyteus/agent/factory/agent_factory.py,sha256=8vrsGTvZi0XIVZxpB3CHiiSLIv9Rdar9SaQ8Y5v5gLo,6673
|
|
27
27
|
autobyteus/agent/group/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
28
|
-
autobyteus/agent/group/agent_group.py,sha256=
|
|
28
|
+
autobyteus/agent/group/agent_group.py,sha256=Y6ELJcDPGefOwkE3P4mlqfITxIcqUTI6XhfHUabhrD8,9304
|
|
29
29
|
autobyteus/agent/group/agent_group_context.py,sha256=kPsztFCClNdubdnOaJaYR9aYsL8QtWmPOuJjMOiUIm8,3437
|
|
30
30
|
autobyteus/agent/handlers/__init__.py,sha256=UFIEqdaET3zTYnHJAJpjiSVS9euWqQuaVMlVTN6dyAY,1510
|
|
31
|
-
autobyteus/agent/handlers/approved_tool_invocation_event_handler.py,sha256=
|
|
31
|
+
autobyteus/agent/handlers/approved_tool_invocation_event_handler.py,sha256=ND9XzSXIQOaj16AOs37gaPGGSgU1BXRK7CrWK_-wL8Y,7857
|
|
32
32
|
autobyteus/agent/handlers/base_event_handler.py,sha256=G2vtFJT_vyObWTgrgwIgRwOssBQ-6A3gxHtc7S4SEuQ,1264
|
|
33
33
|
autobyteus/agent/handlers/event_handler_registry.py,sha256=95BCsKtxKFFSsliSJOCb6nw10TMbiRK2qM366DDuZKM,3474
|
|
34
34
|
autobyteus/agent/handlers/generic_event_handler.py,sha256=759BrDJI-sesY74YN3CX3OfTM44vLGyj6Sg1gd8eJ_w,1888
|
|
35
35
|
autobyteus/agent/handlers/inter_agent_message_event_handler.py,sha256=YRdc6DUL7RXRlRz2YN_6dvOfeX82davbdSIXRSUIdI0,3295
|
|
36
|
-
autobyteus/agent/handlers/lifecycle_event_logger.py,sha256
|
|
37
|
-
autobyteus/agent/handlers/llm_complete_response_received_event_handler.py,sha256=
|
|
36
|
+
autobyteus/agent/handlers/lifecycle_event_logger.py,sha256=-j5GhlCPauPwJMUOMUL53__wweZTsamhYXNbvQklnoY,2656
|
|
37
|
+
autobyteus/agent/handlers/llm_complete_response_received_event_handler.py,sha256=FL8HHQCWhQrHCPgGsQO0pQhmkFsefAYwrtCU4Kj5pM0,7775
|
|
38
38
|
autobyteus/agent/handlers/llm_user_message_ready_event_handler.py,sha256=kXfn9uelGE92afv561VFFu4C_0jpyUKi4ir1uhcjWIc,7674
|
|
39
39
|
autobyteus/agent/handlers/tool_execution_approval_event_handler.py,sha256=Tda_LrlIPbEwVzf1I6u4Vb9sPmAbGQRqT_2-Q9ukLhw,4489
|
|
40
|
-
autobyteus/agent/handlers/tool_invocation_request_event_handler.py,sha256=
|
|
41
|
-
autobyteus/agent/handlers/tool_result_event_handler.py,sha256
|
|
40
|
+
autobyteus/agent/handlers/tool_invocation_request_event_handler.py,sha256=AjNGQgRCQkjXvYThd_AaPj0Lzh1adEkhYJO83alxVAY,10957
|
|
41
|
+
autobyteus/agent/handlers/tool_result_event_handler.py,sha256=-6oUpcbQ9YLL5etypCo_3Iq75tXnmMefSkdLb1OsvKc,5356
|
|
42
42
|
autobyteus/agent/handlers/user_input_message_event_handler.py,sha256=J_3asbNTcIipehMfDEiVf9Lb8PAa-XvUc7H17Gej6So,4233
|
|
43
|
-
autobyteus/agent/hooks/__init__.py,sha256=
|
|
44
|
-
autobyteus/agent/hooks/base_phase_hook.py,sha256=
|
|
43
|
+
autobyteus/agent/hooks/__init__.py,sha256=a1do0Ribb2Hpf9t0Xqxhf3Ls7R6EQuWJtfTGQK7VjUM,495
|
|
44
|
+
autobyteus/agent/hooks/base_phase_hook.py,sha256=7JU3FgPzX06Yg6eJgB4GXzXcaWTpOcEMmyw5Ku0mwJk,2040
|
|
45
|
+
autobyteus/agent/hooks/hook_definition.py,sha256=4aA4iZnxMnw9n6sGThD-kCt3JPQSjPQDCd5D7Q7uzQs,1273
|
|
46
|
+
autobyteus/agent/hooks/hook_meta.py,sha256=QHqEDug46EgDHrZYyacdXkFhnE39Zq2oPbgBgB27E6I,1590
|
|
47
|
+
autobyteus/agent/hooks/hook_registry.py,sha256=j0EXgv-cVYacFePNur_yrPhx8aH5OFdINxg2U_Y3Xr4,4410
|
|
45
48
|
autobyteus/agent/input_processor/__init__.py,sha256=FB9EuirwNJbbOlCU4FuTPWMZODJA_F3ObnbnxN89wlI,674
|
|
46
|
-
autobyteus/agent/input_processor/base_user_input_processor.py,sha256=
|
|
49
|
+
autobyteus/agent/input_processor/base_user_input_processor.py,sha256=elmg4qLV0MARYsgE0zbDTU8gLFpRe4FmBda0lzanDmE,2197
|
|
47
50
|
autobyteus/agent/input_processor/content_prefixing_input_processor.py,sha256=NeFgL-eDMYDDEV4c6WY8o0r3Q7RSsN0KuvzLY48Hxi8,1958
|
|
48
51
|
autobyteus/agent/input_processor/metadata_appending_input_processor.py,sha256=2RyI8zzf97wn31JtiyQg_EPhP-DVH2uD3nrEEuAWS_0,1548
|
|
49
|
-
autobyteus/agent/input_processor/passthrough_input_processor.py,sha256=
|
|
52
|
+
autobyteus/agent/input_processor/passthrough_input_processor.py,sha256=nQO4Lijhb2PK4yKzV6iQCUG_hX6A98OtEwpgdWnscec,1347
|
|
50
53
|
autobyteus/agent/input_processor/processor_definition.py,sha256=ISRHvjbBhlG2DYdgSK4hN3i8w1DJkgPOvCDY06TuslQ,2101
|
|
51
|
-
autobyteus/agent/input_processor/processor_meta.py,sha256=
|
|
52
|
-
autobyteus/agent/input_processor/processor_registry.py,sha256=
|
|
54
|
+
autobyteus/agent/input_processor/processor_meta.py,sha256=Ns_VcPbK4-xLlpbdFIC_xWfgoXDHVduVTNN7EUCUPgU,2241
|
|
55
|
+
autobyteus/agent/input_processor/processor_registry.py,sha256=uIDttiadUSO-1QO0Qmjmc-YkKKnrYXsjxRLNj7ihzco,5049
|
|
53
56
|
autobyteus/agent/llm_response_processor/__init__.py,sha256=IeN_Bd0t46V3NYrviWzrLiM6IJBjhpf3lxX-ZQOfzUU,617
|
|
54
|
-
autobyteus/agent/llm_response_processor/base_processor.py,sha256=
|
|
57
|
+
autobyteus/agent/llm_response_processor/base_processor.py,sha256=U9oKMwbz_oYYw__djS_93IxG5pphQuJnWP_vOYKzUo0,2393
|
|
55
58
|
autobyteus/agent/llm_response_processor/processor_definition.py,sha256=AMLmiL8dMlTpmBKmQrqrfNTfwJLyL6kLHYGqJ-Ly8bE,1464
|
|
56
|
-
autobyteus/agent/llm_response_processor/processor_meta.py,sha256=
|
|
57
|
-
autobyteus/agent/llm_response_processor/processor_registry.py,sha256=
|
|
58
|
-
autobyteus/agent/llm_response_processor/provider_aware_tool_usage_processor.py,sha256=
|
|
59
|
+
autobyteus/agent/llm_response_processor/processor_meta.py,sha256=RC32R5SVTSpBEOdexVh_SOTIydv0_ElWGP7PsXB-q_Q,1813
|
|
60
|
+
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=Sgvs0s5Bbv-FQ6H6WzB3ru2wz158kMR40PtoHgn-_B4,2397
|
|
59
62
|
autobyteus/agent/message/__init__.py,sha256=xRs_zyqW1e_Z6R2hu8bGj6sB5s86ZgQQMDkqoRE9kGY,681
|
|
60
63
|
autobyteus/agent/message/agent_input_user_message.py,sha256=NCy-1CjB4SFj4O05cH6HyC-lK-nZaspUh7bc3iwemD8,4838
|
|
61
64
|
autobyteus/agent/message/context_file.py,sha256=VCwuN9qWKUHe1sZOWKQMwnbj1DzaeyfbML9wXU8SIL8,3376
|
|
62
|
-
autobyteus/agent/message/context_file_type.py,sha256=
|
|
65
|
+
autobyteus/agent/message/context_file_type.py,sha256=Gz1Nl3qsoDgKfjfixCoiqHIJK4Uj9ABJVFmT8RBnZI0,2227
|
|
63
66
|
autobyteus/agent/message/inter_agent_message.py,sha256=302oAt5PdrAqS1Cz80o7G6Kk3Ur1D9JNxze7Q0NI3dM,2436
|
|
64
67
|
autobyteus/agent/message/inter_agent_message_type.py,sha256=l-j0WB4F6yRXSSnHRKzNfmwnL4wX3usPN0JIrQthyEA,1130
|
|
65
68
|
autobyteus/agent/message/send_message_to.py,sha256=debwX0bW10B6FpdN9CKCbpzUtEk46UbmOloqgzlGBvk,7518
|
|
69
|
+
autobyteus/agent/phases/__init__.py,sha256=OC0T294mOGUk6pudSVLslHtfziBJEYd_VoA-LgWo9oE,558
|
|
70
|
+
autobyteus/agent/phases/discover.py,sha256=N1vjvvqnddOLYMLda38nxB9szjgcm3isB1lte1nu03w,2005
|
|
71
|
+
autobyteus/agent/phases/manager.py,sha256=-K3trAbDyXweGUxtgKPuUjQh7Cr2oFswR9KwhisT128,15604
|
|
72
|
+
autobyteus/agent/phases/phase_enum.py,sha256=Ubd_fraZxYRJUM7DdeLEjL0Vvm1RzBcCuOUgVKHBELE,2882
|
|
73
|
+
autobyteus/agent/phases/transition_decorator.py,sha256=jiby_dzeytKGQFjnTQYQ1gziYh7F-2RnShajpHWWhFQ,1553
|
|
74
|
+
autobyteus/agent/phases/transition_info.py,sha256=wqA_ANUbDzjsgESUtgH4svVczPA6-LUdAtZm1MonoFA,1251
|
|
66
75
|
autobyteus/agent/runtime/__init__.py,sha256=VQLu_-t86WkvLKEnGmbPksP53CrqgchqY8eB-DS-SsI,457
|
|
67
|
-
autobyteus/agent/runtime/agent_runtime.py,sha256=
|
|
76
|
+
autobyteus/agent/runtime/agent_runtime.py,sha256=cGN9_kNQcgbG6HTZNkBFv5-xeod6Z5wBTeZCzrTVX9o,6483
|
|
68
77
|
autobyteus/agent/runtime/agent_thread_pool_manager.py,sha256=-dyo3LQ4Mi1upUyyp-8EmQuRXWamIcESc1-WCVSS0dM,3607
|
|
69
|
-
autobyteus/agent/runtime/agent_worker.py,sha256=
|
|
78
|
+
autobyteus/agent/runtime/agent_worker.py,sha256=RPpy9DJmMY6n8xfkkD1Eg-hFQt_0zuN9csBQBoYOgLw,11492
|
|
70
79
|
autobyteus/agent/streaming/__init__.py,sha256=ul7QUIjv5q1nYwzrU1nsVBsKZwpthdmUGsP3UPWmJ34,447
|
|
71
|
-
autobyteus/agent/streaming/agent_event_stream.py,sha256=
|
|
80
|
+
autobyteus/agent/streaming/agent_event_stream.py,sha256=cNF0KnHenAfxYNnZwaQ4OwH-iswRr6DqFdC06O4wHOE,9723
|
|
72
81
|
autobyteus/agent/streaming/queue_streamer.py,sha256=lTMyFwuf_NBJL6hrUIoz5-pqWSlM7fgz1xcVB73y1bk,2354
|
|
73
|
-
autobyteus/agent/streaming/stream_event_payloads.py,sha256=
|
|
74
|
-
autobyteus/agent/streaming/stream_events.py,sha256=
|
|
82
|
+
autobyteus/agent/streaming/stream_event_payloads.py,sha256=Zsr9Z9Fs0HjaRKHv662dCO54tADkTvtx1bzDFBuh7hs,6845
|
|
83
|
+
autobyteus/agent/streaming/stream_events.py,sha256=0_c2cO_L955nuYnpgKRsG7jMpxTOYv0QdNb1Uhz9Bh0,5380
|
|
75
84
|
autobyteus/agent/system_prompt_processor/__init__.py,sha256=5CuF47Y6DKwOWNBQQ-WRQpIxH6Iww-1V0KPok3GCGq0,446
|
|
76
|
-
autobyteus/agent/system_prompt_processor/base_processor.py,sha256=
|
|
85
|
+
autobyteus/agent/system_prompt_processor/base_processor.py,sha256=LyWb9wyPl7nZZgiKYK2jtwQj1oe2I40kDyjJgRP5oBI,1717
|
|
77
86
|
autobyteus/agent/system_prompt_processor/processor_definition.py,sha256=r2ry7igUxaVrpAVmzAtR-O1ssFIhQEry-2PBs6YIZog,1767
|
|
78
|
-
autobyteus/agent/system_prompt_processor/processor_meta.py,sha256=
|
|
87
|
+
autobyteus/agent/system_prompt_processor/processor_meta.py,sha256=aQLo0WE58HVQf4lkDxej2Lz4XFLWddUd24ZPWscnsyo,2356
|
|
79
88
|
autobyteus/agent/system_prompt_processor/processor_registry.py,sha256=VjjFiQ2z3Sxb_ZBVJ1omCcqompA2ttN815YEnx0R2lE,5007
|
|
80
|
-
autobyteus/agent/system_prompt_processor/tool_manifest_injector_processor.py,sha256=
|
|
89
|
+
autobyteus/agent/system_prompt_processor/tool_manifest_injector_processor.py,sha256=9p1HWI6DyK5-82ij6d7bPI8QHlxYcr9B4dZZG-X5Lrg,4087
|
|
81
90
|
autobyteus/agent/utils/__init__.py,sha256=vau-Zjww0qxPyo9SetL7aLUEw-99PX8Nv8TEDngUlKs,210
|
|
82
|
-
autobyteus/agent/utils/wait_for_idle.py,sha256=
|
|
91
|
+
autobyteus/agent/utils/wait_for_idle.py,sha256=S0jQ9-GyfXymTkv_VTG9tVmMQXSsLAU4hsfuAxspTp4,2464
|
|
83
92
|
autobyteus/agent/workflow/__init__.py,sha256=kqIBgWz7oAO4AGGrurNy142tRweSwt2hOmdOKqLNcyU,286
|
|
84
93
|
autobyteus/agent/workflow/agentic_workflow.py,sha256=dRgPAtIO3lUyEpjQcsSNY3OoR144XhabeTbr4rok5Ss,4018
|
|
85
94
|
autobyteus/agent/workflow/base_agentic_workflow.py,sha256=ihDRMEJCfc_l88sgu3quaKW6CoNhh-RaLG3fMQfJh5M,4070
|
|
86
|
-
autobyteus/agent/workspace/__init__.py,sha256=
|
|
87
|
-
autobyteus/agent/workspace/base_workspace.py,sha256=
|
|
88
|
-
autobyteus/
|
|
89
|
-
autobyteus/
|
|
95
|
+
autobyteus/agent/workspace/__init__.py,sha256=7a16HpWxic9zxxsmZeICnBGHK_Z2K9yJUv4z9YELKfw,277
|
|
96
|
+
autobyteus/agent/workspace/base_workspace.py,sha256=kCEJhYacI5LCttS-4f4ItbX5p99Albyka9ty3_sSW9A,2960
|
|
97
|
+
autobyteus/agent/workspace/workspace_config.py,sha256=UfDpOkCH5B7ddt227zoQdmq8bCvI0wTL9vPAB6tOH24,5571
|
|
98
|
+
autobyteus/agent/workspace/workspace_definition.py,sha256=l959gPAVSF17ym9P4y7vf4LuiibcVzom2y0AEmQT7Ak,1476
|
|
99
|
+
autobyteus/agent/workspace/workspace_meta.py,sha256=xuw1-lYQiK5YyyDDc_5uT3uOGL0FfwLC8zCQiSyyQro,1680
|
|
100
|
+
autobyteus/agent/workspace/workspace_registry.py,sha256=A_wADwvZOm1XutBgkn_-FBkqb4tS1fRtALrKe2XRDhw,3182
|
|
101
|
+
autobyteus/cli/__init__.py,sha256=8eCWmDWQGFFFucnMnTYNlrAJK-rzp1iDlIaDBJFSP24,267
|
|
102
|
+
autobyteus/cli/agent_cli.py,sha256=Ua6MnuVHmNgelnZQ8B8ZMFk2nyN-VNPijNzyucVVPis,4818
|
|
103
|
+
autobyteus/cli/cli_display.py,sha256=GGMjFg71yZkoeZkSXsDnc5NjHsdwSimqDszIPpFikRU,9490
|
|
90
104
|
autobyteus/events/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
91
105
|
autobyteus/events/event_emitter.py,sha256=WKKwISFo2yDx0OpLjGFtXEl3DVV1siB0lXdndIAHhBg,2522
|
|
92
|
-
autobyteus/events/event_manager.py,sha256=
|
|
93
|
-
autobyteus/events/event_types.py,sha256=
|
|
106
|
+
autobyteus/events/event_manager.py,sha256=c5RMlCtKzkHgQZkePBvqxPAxxOu-NapUrl8c2oRDkT8,5841
|
|
107
|
+
autobyteus/events/event_types.py,sha256=Eb1XS_vGA6O6P06PK-ylVNDqftxVrrgg6xxHq8ubccQ,2650
|
|
94
108
|
autobyteus/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
95
109
|
autobyteus/llm/autobyteus_provider.py,sha256=WCLUZM24UUB9Gl32WKgwoyXx41pnRXJiz-c9PpiC_C4,6747
|
|
96
110
|
autobyteus/llm/base_llm.py,sha256=XwVnihE6Qy6L8HPWUIXTKCYcKgoxYuw2Om8PivwlbU0,11597
|
|
97
|
-
autobyteus/llm/llm_factory.py,sha256=
|
|
98
|
-
autobyteus/llm/models.py,sha256=
|
|
99
|
-
autobyteus/llm/ollama_provider.py,sha256=
|
|
100
|
-
autobyteus/llm/
|
|
111
|
+
autobyteus/llm/llm_factory.py,sha256=xTKtTuCf40IfKqRs4EwbKq6dQLulebLAfd9_xzIXcD8,16431
|
|
112
|
+
autobyteus/llm/models.py,sha256=Dg_1dLAOwJ9H1NJWnQ7GaTdYiX8_ESbh_tZN67dl8-I,5825
|
|
113
|
+
autobyteus/llm/ollama_provider.py,sha256=xInqOsZjHQ_1xzvO67vAR7NBausMeUCtRG1FY236lUQ,4230
|
|
114
|
+
autobyteus/llm/ollama_provider_resolver.py,sha256=O0eKyE6Lj6ozhyWV72sOb-A7Iw9cwFHsBjcD-HH6tHM,1774
|
|
115
|
+
autobyteus/llm/providers.py,sha256=iiCt-aOiioUpy9cixMwYEWaxFMam5-pHJMxLB9uXBzg,328
|
|
101
116
|
autobyteus/llm/user_message.py,sha256=5FfDOKN-ohBhQy3mTTezv4zTAwcfmcyE0zODNCfRxdo,3200
|
|
102
117
|
autobyteus/llm/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
103
|
-
autobyteus/llm/api/autobyteus_llm.py,sha256=
|
|
118
|
+
autobyteus/llm/api/autobyteus_llm.py,sha256=iJJ2luB1YVg0lEuS8nHPm8h1axouSGEGvoFk2g4o2jo,4896
|
|
104
119
|
autobyteus/llm/api/bedrock_llm.py,sha256=B1NEEuQ48FGrhp2G_h7htvWiepUsXGnNy6wEQhO6I_E,3256
|
|
105
120
|
autobyteus/llm/api/claude_llm.py,sha256=-xpyDvIKnEoay8B2f09STaCYvG7MDQsusCtjzZ0ffHc,6128
|
|
106
|
-
autobyteus/llm/api/deepseek_llm.py,sha256=
|
|
121
|
+
autobyteus/llm/api/deepseek_llm.py,sha256=TEWtXAqM4OuKH1etj5kknzkbPsRGvEpWzTq_CoAU6po,894
|
|
107
122
|
autobyteus/llm/api/gemini_llm.py,sha256=pIH72Lodw5-w0XWKeybUza55cQ5BJChdgSzbWEVwS8w,3208
|
|
108
|
-
autobyteus/llm/api/grok_llm.py,sha256=
|
|
123
|
+
autobyteus/llm/api/grok_llm.py,sha256=oZIkJrRhbvcKSrho5hLWqqRxO5SUfbwutKW1g-mPQC0,875
|
|
109
124
|
autobyteus/llm/api/groq_llm.py,sha256=pq30UuR4NGVCVxMxcGTK2AVBTHtCymAi44hlkfvsXiY,3482
|
|
110
|
-
autobyteus/llm/api/
|
|
125
|
+
autobyteus/llm/api/kimi_llm.py,sha256=oUgmP_D0ppr0zKhgRVyjxRMP8cEMGXB2DFUgXYqRlCg,873
|
|
126
|
+
autobyteus/llm/api/mistral_llm.py,sha256=VdVqEXp5GdXZJQ7NVXmiV9AVDYltb3neqo2EugDIMds,5019
|
|
111
127
|
autobyteus/llm/api/nvidia_llm.py,sha256=jh1cz1zQtCVwYxFSFW9y6LXCW6rv8FdvjTCHvyoBzwc,3913
|
|
112
|
-
autobyteus/llm/api/ollama_llm.py,sha256=
|
|
113
|
-
autobyteus/llm/api/
|
|
128
|
+
autobyteus/llm/api/ollama_llm.py,sha256=hOB4FciwLhivKEKL8_UXM_qVxFGD8gop0xtXbQkDHo0,5959
|
|
129
|
+
autobyteus/llm/api/openai_compatible_llm.py,sha256=VCcYaDg_R5Mv-D_9lZ-YyJrCR05a5JfdJ6ukwcwbnBg,7879
|
|
130
|
+
autobyteus/llm/api/openai_llm.py,sha256=414fWDFvTm7IkG3STfYCWT4mz1FQwEGnD4N5MpTyf6M,905
|
|
114
131
|
autobyteus/llm/extensions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
115
132
|
autobyteus/llm/extensions/base_extension.py,sha256=0HE-od2MxITaBMHCzIrnkQ6n40-0R7jxA7GxPFeJ8Gg,1322
|
|
116
133
|
autobyteus/llm/extensions/extension_registry.py,sha256=b4b3U5cQB9kZpJpqmT_e1lviLzjGQBsp7gJuYppjpjU,1254
|
|
117
|
-
autobyteus/llm/extensions/token_usage_tracking_extension.py,sha256=
|
|
134
|
+
autobyteus/llm/extensions/token_usage_tracking_extension.py,sha256=SoEJWszO8LrM4faTy-j-z7S8v5PV5D0ltzOQ2sbQWBY,3796
|
|
118
135
|
autobyteus/llm/token_counter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
119
136
|
autobyteus/llm/token_counter/base_token_counter.py,sha256=NSY6rdSmBNn9MEAY4vSdnuB2BRRRwoP3rDp9ulBTAWA,2019
|
|
120
137
|
autobyteus/llm/token_counter/claude_token_counter.py,sha256=-gIB8uafY3fVy5Fefk0NTVH2NAFy0gfT8znHlpLQSwo,2620
|
|
121
138
|
autobyteus/llm/token_counter/deepseek_token_counter.py,sha256=YWCng71H6h5ZQX0DrjqfMua-SeCH1ATizWLvxxr591s,859
|
|
139
|
+
autobyteus/llm/token_counter/kimi_token_counter.py,sha256=KuzgcbSWiqybCKHaukd-n917zEgUFebGXMAxlkZxue8,854
|
|
122
140
|
autobyteus/llm/token_counter/mistral_token_counter.py,sha256=YAUPqksnonTQRd1C7NjjFUPsjEDq_AKWxTc5GNTVGqU,4760
|
|
123
141
|
autobyteus/llm/token_counter/openai_token_counter.py,sha256=hGpKSo52NjtLKU8ZMHr76243wglFkfM9-ycSXJW-cwE,2811
|
|
124
|
-
autobyteus/llm/token_counter/token_counter_factory.py,sha256=
|
|
142
|
+
autobyteus/llm/token_counter/token_counter_factory.py,sha256=Hoiuq8Q7wmF-plji2EEo1JFJmdmRGLouZpl-WRdC1ew,2007
|
|
125
143
|
autobyteus/llm/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
126
144
|
autobyteus/llm/utils/image_payload_formatter.py,sha256=2T21VK2Ql-AoxHGkfQGv2UX6CjMMBMzv1Hy4ekUdzfU,2661
|
|
127
145
|
autobyteus/llm/utils/llm_config.py,sha256=Q1_k0EnRqmUgbh9QeSs2F78fyPHA4cfVvJJE9iXQ2-w,9047
|
|
128
|
-
autobyteus/llm/utils/messages.py,sha256=
|
|
146
|
+
autobyteus/llm/utils/messages.py,sha256=k_mSUVrpXGF4holU8_O0WzR9t9Rk9DUpXAB_XTtmmMs,1602
|
|
129
147
|
autobyteus/llm/utils/rate_limiter.py,sha256=VxGw3AImu0V6BDRiL3ICsLQ8iMT3zszGrAeOKaazbn0,1295
|
|
130
148
|
autobyteus/llm/utils/response_types.py,sha256=afQjGmqM9qQ42EnoGtNzU1BLZnxW3JUse0RcZBOLzfY,654
|
|
131
149
|
autobyteus/llm/utils/token_pricing_config.py,sha256=6oRkG6R-BrP54sTI5Btjpy4s2c7bSAP7uZpzXldxx3E,4509
|
|
@@ -159,16 +177,18 @@ autobyteus/rpc/server/base_method_handler.py,sha256=6sKWucR1vUYeritjJPHIX_sCQOD2
|
|
|
159
177
|
autobyteus/rpc/server/method_handlers.py,sha256=Zqrr1R3yu_hVD0qCOPpxXm4ujkvdds9wCCneIeT3gU8,14702
|
|
160
178
|
autobyteus/rpc/server/sse_server_handler.py,sha256=3F1LNLw6fXcB08hmWOUhGZROYhpPdk8xwz2TakiR-2M,16273
|
|
161
179
|
autobyteus/rpc/server/stdio_server_handler.py,sha256=pSAvVtxyo0Hytzld7WINeKHvGBqEjp0Bad-xkY2Rul4,7398
|
|
162
|
-
autobyteus/tools/__init__.py,sha256=
|
|
180
|
+
autobyteus/tools/__init__.py,sha256=_CpNMcAa9eOHu-kO7hcDuqSuHO9cvB9oXg_KhayP-ag,2950
|
|
163
181
|
autobyteus/tools/ask_user_input.py,sha256=J7Um7BY0YXCuw5Cml89ixgnygy4P9UU-VgYHpq9fiAc,1597
|
|
164
|
-
autobyteus/tools/base_tool.py,sha256=
|
|
165
|
-
autobyteus/tools/functional_tool.py,sha256=
|
|
182
|
+
autobyteus/tools/base_tool.py,sha256=ROcATURq04fPLkzBw5QQ-F87KBlCiAYKJ1C_8nbaabs,5013
|
|
183
|
+
autobyteus/tools/functional_tool.py,sha256=duIRfzw-DBmqZlLdXrMUUVch-rYeFQV30b383u5O-4A,10427
|
|
166
184
|
autobyteus/tools/image_downloader.py,sha256=cvVK2oBPjGVNphxYFNvSsdJskTXs-NJ-PZhQcvhjS4E,4780
|
|
167
185
|
autobyteus/tools/parameter_schema.py,sha256=y_CJywuOO1o14lTtwaXAVOR3B55JZAKJyZ175v-EJsE,10818
|
|
168
186
|
autobyteus/tools/pdf_downloader.py,sha256=ma-eGpTNvRokPM_iIjCDWWlYkZdmAcmTjU1irtqDkx8,3844
|
|
169
187
|
autobyteus/tools/timer.py,sha256=tMKuWNjlJR86sfclj-mzlU4yOQoRSrzW_RqXB_KVoWk,7292
|
|
188
|
+
autobyteus/tools/tool_category.py,sha256=lfdacEd3DEql-xnaSFQbNwsVAGXcC_WiygbsyihcviQ,323
|
|
170
189
|
autobyteus/tools/tool_config.py,sha256=gnzGweccECNmCeufkzbskHeFOt3f0431DyAmMhqNVn4,3564
|
|
171
|
-
autobyteus/tools/tool_meta.py,sha256=
|
|
190
|
+
autobyteus/tools/tool_meta.py,sha256=MGpIH83-sWN1ZXI_w6795f7tEmlqEeAgKXo22I7cL2w,4182
|
|
191
|
+
autobyteus/tools/tool_state.py,sha256=CwmEu7GTdaE72QIsdsXQu0AmTxQTp5hMncFcY58PkGo,746
|
|
172
192
|
autobyteus/tools/utils.py,sha256=PuHGlARmNx5HA2YFVF5XA36MoeAyFL6voK10S12AYS0,546
|
|
173
193
|
autobyteus/tools/bash/__init__.py,sha256=X38g3OVhlr-6aLIYfcSyh8DzqHAEh8dSzfEH1NEH7aw,99
|
|
174
194
|
autobyteus/tools/bash/bash_executor.py,sha256=hLsVmg5YbO0YG8DG_lIMH-VftxMsTmlHW-r7M3aWU_s,2144
|
|
@@ -205,16 +225,16 @@ autobyteus/tools/file/file_writer.py,sha256=lqmObMuFjFN8A9FSoP8XQlip8Y6AplD4ubc8
|
|
|
205
225
|
autobyteus/tools/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
206
226
|
autobyteus/tools/handlers/shell_handler.py,sha256=ClTXqFR45iyD0gcoOPpKRX5p6g_6BI4a5JOLuKuQOIA,1065
|
|
207
227
|
autobyteus/tools/mcp/__init__.py,sha256=zCo6RYdaB_ZukDlLl9kN3utG-ZZUb4OiCKfrqCW-C-w,1420
|
|
208
|
-
autobyteus/tools/mcp/config_service.py,sha256=
|
|
228
|
+
autobyteus/tools/mcp/config_service.py,sha256=eFoG9TbugVkFYPibd2nTL6BUQMqIySLjjmdQcCITMA8,11508
|
|
209
229
|
autobyteus/tools/mcp/factory.py,sha256=2lPDRRP4HDV7SeRMpNsF4fhNqaMUrgr5ijTCi8p7s1o,2989
|
|
210
|
-
autobyteus/tools/mcp/registrar.py,sha256=
|
|
230
|
+
autobyteus/tools/mcp/registrar.py,sha256=skxzG9dwJXK3AK4ksf1s-1HSFllzLuMWO5lQi0DNGVg,15261
|
|
211
231
|
autobyteus/tools/mcp/schema_mapper.py,sha256=PJGEAlqCgkoCThLzmkG3jXOXYk6fR1ogjSpOiCuFKsc,7502
|
|
212
232
|
autobyteus/tools/mcp/tool.py,sha256=gEfw5_7RqM8e2a6h58bQN9LDmSxgf6PnEfkBxcKp38Q,3980
|
|
213
|
-
autobyteus/tools/mcp/types.py,sha256=
|
|
233
|
+
autobyteus/tools/mcp/types.py,sha256=5b5QcWzX4i_140saNZJOFoJwDPpnIUE8YjKbBNmVLhI,4937
|
|
214
234
|
autobyteus/tools/mcp/call_handlers/__init__.py,sha256=yUysfoJwoCBf7yOokbfr-Shn2dTgw_WAqr6N59mmdBE,584
|
|
215
235
|
autobyteus/tools/mcp/call_handlers/base_handler.py,sha256=q-34xq6w-561rwujmoJVvhJMexe4-bhqBq8ORc_W6qA,1252
|
|
216
236
|
autobyteus/tools/mcp/call_handlers/sse_handler.py,sha256=W73gJA9trEAsDqdfkbVEfHiUtNDibRXiIM5J-nGfxqw,760
|
|
217
|
-
autobyteus/tools/mcp/call_handlers/stdio_handler.py,sha256=
|
|
237
|
+
autobyteus/tools/mcp/call_handlers/stdio_handler.py,sha256=HKbZYvX3PEZkZ60xmXgvFpEo4oYgss26l3bgswQvx2g,3522
|
|
218
238
|
autobyteus/tools/mcp/call_handlers/streamable_http_handler.py,sha256=P3qMErRqHBaXtqnx_fz5NNqw7ecps856UmIsLJnniF8,2702
|
|
219
239
|
autobyteus/tools/operation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
220
240
|
autobyteus/tools/operation/file_operation.py,sha256=bAehQ9PfHoCDpk9Wa7vx9h3ohzVuaGzzBUogxleTwq8,2375
|
|
@@ -222,8 +242,8 @@ autobyteus/tools/operation/file_rename_operation.py,sha256=pExiC69HUzYbKihlVumlG
|
|
|
222
242
|
autobyteus/tools/operation/operation.py,sha256=9sIZnlrPct5CwkCKuwbspVKvjF4KumP6twmXRo1blwo,1702
|
|
223
243
|
autobyteus/tools/operation/shell_operation.py,sha256=_BiGIRGWCzzwPVtbqFwXpHOvnqH68YqJujQI-gWeKx0,1860
|
|
224
244
|
autobyteus/tools/registry/__init__.py,sha256=39TSHm7mD6NXhsrczsX5Mdr32US0I6z3Bzad4hgcrrA,250
|
|
225
|
-
autobyteus/tools/registry/tool_definition.py,sha256=
|
|
226
|
-
autobyteus/tools/registry/tool_registry.py,sha256=
|
|
245
|
+
autobyteus/tools/registry/tool_definition.py,sha256=64dcTFC-zDSo8hAgyvGfuSjuf7MJE3NUw6_4eO9byLc,6456
|
|
246
|
+
autobyteus/tools/registry/tool_registry.py,sha256=M6uNbnkg7TCqheBdMNmaNC_T-5rMaPPtPogN7M6Y6CA,5832
|
|
227
247
|
autobyteus/tools/usage/__init__.py,sha256=0kJoUH-m0d1AHTYJQyXlCjlXhMJ3e95Ykf-8J9lO2g4,224
|
|
228
248
|
autobyteus/tools/usage/formatters/__init__.py,sha256=BThdI_R8Dkda1eHJFr1cQ7nLCgf5KfSuvWokjPrnT9U,1424
|
|
229
249
|
autobyteus/tools/usage/formatters/anthropic_json_example_formatter.py,sha256=EVVPZ7e1tG3QRcEPjdOC0yTvnGisubfUm9geWbd9r2g,792
|
|
@@ -240,13 +260,14 @@ autobyteus/tools/usage/formatters/google_json_schema_formatter.py,sha256=gKeuR_Q
|
|
|
240
260
|
autobyteus/tools/usage/formatters/openai_json_example_formatter.py,sha256=qzvRnn43L1OJN5720R2XYyBYfwmBn3LBH6agIL7Nsv8,2331
|
|
241
261
|
autobyteus/tools/usage/formatters/openai_json_schema_formatter.py,sha256=3pN4CnmWiBJaZMhV7qnWcSKPpyZ2cEdiU-FVMRfPT1w,948
|
|
242
262
|
autobyteus/tools/usage/parsers/__init__.py,sha256=4y235cYvUm60v30m4KCwQ4g9x9yP81QYBhSkUmjFWAU,915
|
|
263
|
+
autobyteus/tools/usage/parsers/_json_extractor.py,sha256=Q7BJsEcFkEZJ8q-ifIl-7t4FXZgFoFEwFXAGvKFYhCk,3601
|
|
243
264
|
autobyteus/tools/usage/parsers/anthropic_xml_tool_usage_parser.py,sha256=xAVq7bPlyfZK5YBVsNlXyyc-1J4kyVr4-wDNI0ekl_o,433
|
|
244
265
|
autobyteus/tools/usage/parsers/base_parser.py,sha256=iNHVUXMzAydnhYeEBgcXU0g8L_H9KTMavOEd-iwDLbk,1366
|
|
245
|
-
autobyteus/tools/usage/parsers/default_json_tool_usage_parser.py,sha256=
|
|
246
|
-
autobyteus/tools/usage/parsers/default_xml_tool_usage_parser.py,sha256=
|
|
266
|
+
autobyteus/tools/usage/parsers/default_json_tool_usage_parser.py,sha256=jl-VKMubpgI15TuX7tyKmu_4WHb2YUVw5Yz2fy7GXkY,3480
|
|
267
|
+
autobyteus/tools/usage/parsers/default_xml_tool_usage_parser.py,sha256=FtC_szwfQDCORHSp6XG4omCsQTwyBr2AZCNEX90dFV0,5829
|
|
247
268
|
autobyteus/tools/usage/parsers/exceptions.py,sha256=CncCSH4IJUYPaCTilj1oPgfZWdCycIxQBrWiSKuWXtc,468
|
|
248
|
-
autobyteus/tools/usage/parsers/gemini_json_tool_usage_parser.py,sha256=
|
|
249
|
-
autobyteus/tools/usage/parsers/openai_json_tool_usage_parser.py,sha256=
|
|
269
|
+
autobyteus/tools/usage/parsers/gemini_json_tool_usage_parser.py,sha256=KcjN3xa67Dv3pSaN-RdCOilDa7FPpHhKB1NajL1ETGU,2580
|
|
270
|
+
autobyteus/tools/usage/parsers/openai_json_tool_usage_parser.py,sha256=wQXe4HAYsvfuLG6Ffv_Rk38ZAN5c1NlaEb7lFq7xbVs,6916
|
|
250
271
|
autobyteus/tools/usage/parsers/provider_aware_tool_usage_parser.py,sha256=fbQO7-UASFnTipqj6lrFKO7jpC7L4eIPG72vdwNdtJQ,3089
|
|
251
272
|
autobyteus/tools/usage/providers/__init__.py,sha256=fh-S4Og-mePoTAkBVuq2qSzQnrVpOCwwfjNHC5d0VOk,832
|
|
252
273
|
autobyteus/tools/usage/providers/json_example_provider.py,sha256=sYXTKusAtBCSifpos1x3v0t8igYbF6gEeQ5W3sfHOpk,1221
|
|
@@ -272,8 +293,8 @@ autobyteus/workflow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
|
|
|
272
293
|
autobyteus/workflow/simple_task.py,sha256=CcEEfamaZk1pjkPG9TVmlvzMAeTznHvQncRIwgp48tI,3378
|
|
273
294
|
autobyteus/workflow/task.py,sha256=CYyPs8YvEwpWXcF4swJukPNuv6RRs3X-9UOnN6vG2Ko,5746
|
|
274
295
|
autobyteus/workflow/workflow.py,sha256=3PXZVtgnajGUAbZR22xht_2pU2WjYNmA1j0f5TkM3G0,1453
|
|
275
|
-
autobyteus-1.1.
|
|
276
|
-
autobyteus-1.1.
|
|
277
|
-
autobyteus-1.1.
|
|
278
|
-
autobyteus-1.1.
|
|
279
|
-
autobyteus-1.1.
|
|
296
|
+
autobyteus-1.1.2.dist-info/licenses/LICENSE,sha256=Ompok_c8HRsXRwmax-pGR9OZRRxZC9RPp4JB6eTJd0M,1360
|
|
297
|
+
autobyteus-1.1.2.dist-info/METADATA,sha256=62vQqwpZtk7S1Wmr_EN8hHDnZBfeHwPze7eIGCrKeqQ,6873
|
|
298
|
+
autobyteus-1.1.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
299
|
+
autobyteus-1.1.2.dist-info/top_level.txt,sha256=OeVeFlKcnysp6uMGe8TDaoFeuh4NUK4wZIfNjXCWKTE,11
|
|
300
|
+
autobyteus-1.1.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|