autobyteus 1.1.3__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.
- autobyteus/agent/agent.py +1 -1
- autobyteus/agent/bootstrap_steps/system_prompt_processing_step.py +4 -2
- autobyteus/agent/context/__init__.py +4 -2
- autobyteus/agent/context/agent_config.py +35 -8
- autobyteus/agent/context/agent_context_registry.py +73 -0
- autobyteus/agent/events/notifiers.py +4 -0
- autobyteus/agent/events/worker_event_dispatcher.py +1 -2
- autobyteus/agent/handlers/inter_agent_message_event_handler.py +8 -3
- autobyteus/agent/handlers/llm_complete_response_received_event_handler.py +19 -19
- autobyteus/agent/handlers/llm_user_message_ready_event_handler.py +2 -2
- autobyteus/agent/handlers/tool_result_event_handler.py +48 -20
- autobyteus/agent/handlers/user_input_message_event_handler.py +16 -1
- autobyteus/agent/input_processor/__init__.py +1 -7
- autobyteus/agent/message/context_file_type.py +6 -0
- autobyteus/agent/message/send_message_to.py +74 -99
- autobyteus/agent/phases/discover.py +2 -1
- autobyteus/agent/runtime/agent_runtime.py +10 -2
- autobyteus/agent/runtime/agent_worker.py +1 -0
- autobyteus/agent/sender_type.py +15 -0
- autobyteus/agent/streaming/agent_event_stream.py +6 -0
- autobyteus/agent/streaming/stream_event_payloads.py +12 -0
- autobyteus/agent/streaming/stream_events.py +3 -0
- autobyteus/agent/system_prompt_processor/tool_manifest_injector_processor.py +7 -4
- autobyteus/agent/tool_execution_result_processor/__init__.py +9 -0
- autobyteus/agent/tool_execution_result_processor/base_processor.py +46 -0
- autobyteus/agent/tool_execution_result_processor/processor_definition.py +36 -0
- autobyteus/agent/tool_execution_result_processor/processor_meta.py +36 -0
- autobyteus/agent/tool_execution_result_processor/processor_registry.py +70 -0
- autobyteus/agent/workspace/base_workspace.py +17 -2
- autobyteus/agent_team/__init__.py +1 -0
- autobyteus/agent_team/agent_team.py +93 -0
- autobyteus/agent_team/agent_team_builder.py +184 -0
- autobyteus/agent_team/base_agent_team.py +86 -0
- autobyteus/agent_team/bootstrap_steps/__init__.py +24 -0
- autobyteus/agent_team/bootstrap_steps/agent_configuration_preparation_step.py +73 -0
- autobyteus/agent_team/bootstrap_steps/agent_team_bootstrapper.py +54 -0
- autobyteus/agent_team/bootstrap_steps/agent_team_runtime_queue_initialization_step.py +25 -0
- autobyteus/agent_team/bootstrap_steps/base_agent_team_bootstrap_step.py +23 -0
- autobyteus/agent_team/bootstrap_steps/coordinator_initialization_step.py +41 -0
- autobyteus/agent_team/bootstrap_steps/coordinator_prompt_preparation_step.py +85 -0
- autobyteus/agent_team/bootstrap_steps/task_notifier_initialization_step.py +51 -0
- autobyteus/agent_team/bootstrap_steps/team_context_initialization_step.py +45 -0
- autobyteus/agent_team/context/__init__.py +17 -0
- autobyteus/agent_team/context/agent_team_config.py +33 -0
- autobyteus/agent_team/context/agent_team_context.py +61 -0
- autobyteus/agent_team/context/agent_team_runtime_state.py +56 -0
- autobyteus/agent_team/context/team_manager.py +147 -0
- autobyteus/agent_team/context/team_node_config.py +76 -0
- autobyteus/agent_team/events/__init__.py +29 -0
- autobyteus/agent_team/events/agent_team_event_dispatcher.py +39 -0
- autobyteus/agent_team/events/agent_team_events.py +53 -0
- autobyteus/agent_team/events/agent_team_input_event_queue_manager.py +21 -0
- autobyteus/agent_team/exceptions.py +8 -0
- autobyteus/agent_team/factory/__init__.py +9 -0
- autobyteus/agent_team/factory/agent_team_factory.py +99 -0
- autobyteus/agent_team/handlers/__init__.py +19 -0
- autobyteus/agent_team/handlers/agent_team_event_handler_registry.py +23 -0
- autobyteus/agent_team/handlers/base_agent_team_event_handler.py +16 -0
- autobyteus/agent_team/handlers/inter_agent_message_request_event_handler.py +61 -0
- autobyteus/agent_team/handlers/lifecycle_agent_team_event_handler.py +27 -0
- autobyteus/agent_team/handlers/process_user_message_event_handler.py +46 -0
- autobyteus/agent_team/handlers/tool_approval_team_event_handler.py +48 -0
- autobyteus/agent_team/phases/__init__.py +11 -0
- autobyteus/agent_team/phases/agent_team_operational_phase.py +19 -0
- autobyteus/agent_team/phases/agent_team_phase_manager.py +48 -0
- autobyteus/agent_team/runtime/__init__.py +13 -0
- autobyteus/agent_team/runtime/agent_team_runtime.py +82 -0
- autobyteus/agent_team/runtime/agent_team_worker.py +117 -0
- autobyteus/agent_team/shutdown_steps/__init__.py +17 -0
- autobyteus/agent_team/shutdown_steps/agent_team_shutdown_orchestrator.py +35 -0
- autobyteus/agent_team/shutdown_steps/agent_team_shutdown_step.py +42 -0
- autobyteus/agent_team/shutdown_steps/base_agent_team_shutdown_step.py +16 -0
- autobyteus/agent_team/shutdown_steps/bridge_cleanup_step.py +28 -0
- autobyteus/agent_team/shutdown_steps/sub_team_shutdown_step.py +41 -0
- autobyteus/agent_team/streaming/__init__.py +26 -0
- autobyteus/agent_team/streaming/agent_event_bridge.py +48 -0
- autobyteus/agent_team/streaming/agent_event_multiplexer.py +70 -0
- autobyteus/agent_team/streaming/agent_team_event_notifier.py +64 -0
- autobyteus/agent_team/streaming/agent_team_event_stream.py +33 -0
- autobyteus/agent_team/streaming/agent_team_stream_event_payloads.py +32 -0
- autobyteus/agent_team/streaming/agent_team_stream_events.py +56 -0
- autobyteus/agent_team/streaming/team_event_bridge.py +50 -0
- autobyteus/agent_team/task_notification/__init__.py +11 -0
- autobyteus/agent_team/task_notification/system_event_driven_agent_task_notifier.py +164 -0
- autobyteus/agent_team/task_notification/task_notification_mode.py +24 -0
- autobyteus/agent_team/utils/__init__.py +9 -0
- autobyteus/agent_team/utils/wait_for_idle.py +46 -0
- autobyteus/cli/__init__.py +1 -1
- autobyteus/cli/agent_team_tui/__init__.py +4 -0
- autobyteus/cli/agent_team_tui/app.py +210 -0
- autobyteus/cli/agent_team_tui/state.py +180 -0
- autobyteus/cli/agent_team_tui/widgets/__init__.py +6 -0
- autobyteus/cli/agent_team_tui/widgets/agent_list_sidebar.py +149 -0
- autobyteus/cli/agent_team_tui/widgets/focus_pane.py +320 -0
- autobyteus/cli/agent_team_tui/widgets/logo.py +20 -0
- autobyteus/cli/agent_team_tui/widgets/renderables.py +77 -0
- autobyteus/cli/agent_team_tui/widgets/shared.py +60 -0
- autobyteus/cli/agent_team_tui/widgets/status_bar.py +14 -0
- autobyteus/cli/agent_team_tui/widgets/task_board_panel.py +82 -0
- autobyteus/cli/cli_display.py +1 -1
- autobyteus/cli/workflow_tui/__init__.py +4 -0
- autobyteus/cli/workflow_tui/app.py +210 -0
- autobyteus/cli/workflow_tui/state.py +189 -0
- autobyteus/cli/workflow_tui/widgets/__init__.py +6 -0
- autobyteus/cli/workflow_tui/widgets/agent_list_sidebar.py +149 -0
- autobyteus/cli/workflow_tui/widgets/focus_pane.py +335 -0
- autobyteus/cli/workflow_tui/widgets/logo.py +27 -0
- autobyteus/cli/workflow_tui/widgets/renderables.py +70 -0
- autobyteus/cli/workflow_tui/widgets/shared.py +51 -0
- autobyteus/cli/workflow_tui/widgets/status_bar.py +14 -0
- autobyteus/events/event_types.py +8 -0
- autobyteus/llm/api/autobyteus_llm.py +11 -12
- autobyteus/llm/api/lmstudio_llm.py +34 -0
- autobyteus/llm/api/ollama_llm.py +8 -13
- autobyteus/llm/api/openai_compatible_llm.py +20 -3
- autobyteus/llm/autobyteus_provider.py +73 -46
- autobyteus/llm/llm_factory.py +103 -139
- autobyteus/llm/lmstudio_provider.py +104 -0
- autobyteus/llm/models.py +83 -53
- autobyteus/llm/ollama_provider.py +69 -61
- autobyteus/llm/ollama_provider_resolver.py +1 -0
- autobyteus/llm/providers.py +13 -12
- autobyteus/llm/runtimes.py +11 -0
- autobyteus/llm/token_counter/token_counter_factory.py +2 -0
- autobyteus/task_management/__init__.py +43 -0
- autobyteus/task_management/base_task_board.py +68 -0
- autobyteus/task_management/converters/__init__.py +11 -0
- autobyteus/task_management/converters/task_board_converter.py +64 -0
- autobyteus/task_management/converters/task_plan_converter.py +48 -0
- autobyteus/task_management/deliverable.py +16 -0
- autobyteus/task_management/deliverables/__init__.py +8 -0
- autobyteus/task_management/deliverables/file_deliverable.py +15 -0
- autobyteus/task_management/events.py +27 -0
- autobyteus/task_management/in_memory_task_board.py +126 -0
- autobyteus/task_management/schemas/__init__.py +15 -0
- autobyteus/task_management/schemas/deliverable_schema.py +13 -0
- autobyteus/task_management/schemas/plan_definition.py +35 -0
- autobyteus/task_management/schemas/task_status_report.py +27 -0
- autobyteus/task_management/task_plan.py +110 -0
- autobyteus/task_management/tools/__init__.py +14 -0
- autobyteus/task_management/tools/get_task_board_status.py +68 -0
- autobyteus/task_management/tools/publish_task_plan.py +113 -0
- autobyteus/task_management/tools/update_task_status.py +135 -0
- autobyteus/tools/__init__.py +2 -0
- autobyteus/tools/ask_user_input.py +2 -1
- autobyteus/tools/bash/bash_executor.py +61 -15
- autobyteus/tools/browser/session_aware/browser_session_aware_navigate_to.py +2 -0
- autobyteus/tools/browser/session_aware/browser_session_aware_web_element_trigger.py +3 -0
- autobyteus/tools/browser/session_aware/browser_session_aware_webpage_reader.py +3 -0
- autobyteus/tools/browser/session_aware/browser_session_aware_webpage_screenshot_taker.py +3 -0
- autobyteus/tools/browser/standalone/google_search_ui.py +2 -0
- autobyteus/tools/browser/standalone/navigate_to.py +2 -0
- autobyteus/tools/browser/standalone/web_page_pdf_generator.py +3 -0
- autobyteus/tools/browser/standalone/webpage_image_downloader.py +3 -0
- autobyteus/tools/browser/standalone/webpage_reader.py +2 -0
- autobyteus/tools/browser/standalone/webpage_screenshot_taker.py +3 -0
- autobyteus/tools/file/file_reader.py +36 -9
- autobyteus/tools/file/file_writer.py +37 -9
- autobyteus/tools/functional_tool.py +5 -4
- autobyteus/tools/image_downloader.py +2 -0
- autobyteus/tools/mcp/config_service.py +63 -58
- autobyteus/tools/mcp/server/http_managed_mcp_server.py +14 -2
- autobyteus/tools/mcp/server/stdio_managed_mcp_server.py +14 -2
- autobyteus/tools/mcp/server_instance_manager.py +30 -4
- autobyteus/tools/mcp/tool_registrar.py +106 -51
- autobyteus/tools/parameter_schema.py +17 -11
- autobyteus/tools/pdf_downloader.py +2 -1
- autobyteus/tools/registry/tool_definition.py +36 -37
- autobyteus/tools/registry/tool_registry.py +50 -2
- autobyteus/tools/timer.py +2 -0
- autobyteus/tools/tool_category.py +15 -4
- autobyteus/tools/tool_meta.py +6 -1
- autobyteus/tools/tool_origin.py +10 -0
- autobyteus/tools/usage/formatters/default_json_example_formatter.py +78 -3
- autobyteus/tools/usage/formatters/default_xml_example_formatter.py +23 -3
- autobyteus/tools/usage/formatters/gemini_json_example_formatter.py +6 -0
- autobyteus/tools/usage/formatters/google_json_example_formatter.py +7 -0
- autobyteus/tools/usage/formatters/openai_json_example_formatter.py +6 -4
- autobyteus/tools/usage/parsers/gemini_json_tool_usage_parser.py +23 -7
- autobyteus/tools/usage/parsers/provider_aware_tool_usage_parser.py +14 -25
- autobyteus/tools/usage/providers/__init__.py +2 -12
- autobyteus/tools/usage/providers/tool_manifest_provider.py +36 -29
- autobyteus/tools/usage/registries/__init__.py +7 -12
- autobyteus/tools/usage/registries/tool_formatter_pair.py +15 -0
- autobyteus/tools/usage/registries/tool_formatting_registry.py +58 -0
- autobyteus/tools/usage/registries/tool_usage_parser_registry.py +55 -0
- autobyteus/workflow/agentic_workflow.py +93 -0
- autobyteus/{agent/workflow → workflow}/base_agentic_workflow.py +19 -27
- autobyteus/workflow/bootstrap_steps/__init__.py +20 -0
- autobyteus/workflow/bootstrap_steps/agent_tool_injection_step.py +34 -0
- autobyteus/workflow/bootstrap_steps/base_workflow_bootstrap_step.py +23 -0
- autobyteus/workflow/bootstrap_steps/coordinator_initialization_step.py +41 -0
- autobyteus/workflow/bootstrap_steps/coordinator_prompt_preparation_step.py +108 -0
- autobyteus/workflow/bootstrap_steps/workflow_bootstrapper.py +50 -0
- autobyteus/workflow/bootstrap_steps/workflow_runtime_queue_initialization_step.py +25 -0
- autobyteus/workflow/context/__init__.py +17 -0
- autobyteus/workflow/context/team_manager.py +147 -0
- autobyteus/workflow/context/workflow_config.py +30 -0
- autobyteus/workflow/context/workflow_context.py +61 -0
- autobyteus/workflow/context/workflow_node_config.py +76 -0
- autobyteus/workflow/context/workflow_runtime_state.py +53 -0
- autobyteus/workflow/events/__init__.py +29 -0
- autobyteus/workflow/events/workflow_event_dispatcher.py +39 -0
- autobyteus/workflow/events/workflow_events.py +53 -0
- autobyteus/workflow/events/workflow_input_event_queue_manager.py +21 -0
- autobyteus/workflow/exceptions.py +8 -0
- autobyteus/workflow/factory/__init__.py +9 -0
- autobyteus/workflow/factory/workflow_factory.py +99 -0
- autobyteus/workflow/handlers/__init__.py +19 -0
- autobyteus/workflow/handlers/base_workflow_event_handler.py +16 -0
- autobyteus/workflow/handlers/inter_agent_message_request_event_handler.py +61 -0
- autobyteus/workflow/handlers/lifecycle_workflow_event_handler.py +27 -0
- autobyteus/workflow/handlers/process_user_message_event_handler.py +46 -0
- autobyteus/workflow/handlers/tool_approval_workflow_event_handler.py +39 -0
- autobyteus/workflow/handlers/workflow_event_handler_registry.py +23 -0
- autobyteus/workflow/phases/__init__.py +11 -0
- autobyteus/workflow/phases/workflow_operational_phase.py +19 -0
- autobyteus/workflow/phases/workflow_phase_manager.py +48 -0
- autobyteus/workflow/runtime/__init__.py +13 -0
- autobyteus/workflow/runtime/workflow_runtime.py +82 -0
- autobyteus/workflow/runtime/workflow_worker.py +117 -0
- autobyteus/workflow/shutdown_steps/__init__.py +17 -0
- autobyteus/workflow/shutdown_steps/agent_team_shutdown_step.py +42 -0
- autobyteus/workflow/shutdown_steps/base_workflow_shutdown_step.py +16 -0
- autobyteus/workflow/shutdown_steps/bridge_cleanup_step.py +28 -0
- autobyteus/workflow/shutdown_steps/sub_workflow_shutdown_step.py +41 -0
- autobyteus/workflow/shutdown_steps/workflow_shutdown_orchestrator.py +35 -0
- autobyteus/workflow/streaming/__init__.py +26 -0
- autobyteus/workflow/streaming/agent_event_bridge.py +48 -0
- autobyteus/workflow/streaming/agent_event_multiplexer.py +70 -0
- autobyteus/workflow/streaming/workflow_event_bridge.py +50 -0
- autobyteus/workflow/streaming/workflow_event_notifier.py +83 -0
- autobyteus/workflow/streaming/workflow_event_stream.py +33 -0
- autobyteus/workflow/streaming/workflow_stream_event_payloads.py +28 -0
- autobyteus/workflow/streaming/workflow_stream_events.py +45 -0
- autobyteus/workflow/utils/__init__.py +9 -0
- autobyteus/workflow/utils/wait_for_idle.py +46 -0
- autobyteus/workflow/workflow_builder.py +151 -0
- {autobyteus-1.1.3.dist-info → autobyteus-1.1.5.dist-info}/METADATA +16 -14
- autobyteus-1.1.5.dist-info/RECORD +455 -0
- {autobyteus-1.1.3.dist-info → autobyteus-1.1.5.dist-info}/top_level.txt +1 -0
- examples/__init__.py +1 -0
- examples/agent_team/__init__.py +1 -0
- examples/discover_phase_transitions.py +104 -0
- examples/run_browser_agent.py +262 -0
- examples/run_google_slides_agent.py +287 -0
- examples/run_mcp_browser_client.py +174 -0
- examples/run_mcp_google_slides_client.py +270 -0
- examples/run_mcp_list_tools.py +189 -0
- examples/run_poem_writer.py +284 -0
- examples/run_sqlite_agent.py +295 -0
- autobyteus/agent/context/agent_phase_manager.py +0 -264
- autobyteus/agent/context/phases.py +0 -49
- autobyteus/agent/group/__init__.py +0 -0
- autobyteus/agent/group/agent_group.py +0 -164
- autobyteus/agent/group/agent_group_context.py +0 -81
- autobyteus/agent/input_processor/content_prefixing_input_processor.py +0 -41
- autobyteus/agent/input_processor/metadata_appending_input_processor.py +0 -34
- autobyteus/agent/input_processor/passthrough_input_processor.py +0 -33
- autobyteus/agent/workflow/__init__.py +0 -11
- autobyteus/agent/workflow/agentic_workflow.py +0 -89
- autobyteus/tools/mcp/call_handlers/__init__.py +0 -16
- autobyteus/tools/mcp/call_handlers/base_handler.py +0 -40
- autobyteus/tools/mcp/call_handlers/stdio_handler.py +0 -76
- autobyteus/tools/mcp/call_handlers/streamable_http_handler.py +0 -55
- autobyteus/tools/mcp/registrar.py +0 -202
- autobyteus/tools/usage/providers/json_example_provider.py +0 -32
- autobyteus/tools/usage/providers/json_schema_provider.py +0 -35
- autobyteus/tools/usage/providers/json_tool_usage_parser_provider.py +0 -28
- autobyteus/tools/usage/providers/xml_example_provider.py +0 -28
- autobyteus/tools/usage/providers/xml_schema_provider.py +0 -29
- autobyteus/tools/usage/providers/xml_tool_usage_parser_provider.py +0 -26
- autobyteus/tools/usage/registries/json_example_formatter_registry.py +0 -51
- autobyteus/tools/usage/registries/json_schema_formatter_registry.py +0 -51
- autobyteus/tools/usage/registries/json_tool_usage_parser_registry.py +0 -42
- autobyteus/tools/usage/registries/xml_example_formatter_registry.py +0 -30
- autobyteus/tools/usage/registries/xml_schema_formatter_registry.py +0 -33
- autobyteus/tools/usage/registries/xml_tool_usage_parser_registry.py +0 -30
- autobyteus/workflow/simple_task.py +0 -98
- autobyteus/workflow/task.py +0 -147
- autobyteus/workflow/workflow.py +0 -49
- autobyteus-1.1.3.dist-info/RECORD +0 -312
- {autobyteus-1.1.3.dist-info → autobyteus-1.1.5.dist-info}/WHEEL +0 -0
- {autobyteus-1.1.3.dist-info → autobyteus-1.1.5.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,312 +0,0 @@
|
|
|
1
|
-
autobyteus/__init__.py,sha256=ij7pzJD0e838u_nQIypAlXkJQgUkcB898Gqw2Dovv-s,110
|
|
2
|
-
autobyteus/check_requirements.py,sha256=nLWmqMlGiAToQuub68IpL2EhRxFZ1CyCwRCMi2C5hrY,853
|
|
3
|
-
autobyteus/agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
autobyteus/agent/agent.py,sha256=M8ru6n2tVnKwwcHlubpPfvLj7P_yg3zQ8k0rfBu2mWg,4923
|
|
5
|
-
autobyteus/agent/exceptions.py,sha256=tfXvey5SkT70X6kcu29o8YO91KB0hI9_uLrba91_G2s,237
|
|
6
|
-
autobyteus/agent/remote_agent.py,sha256=DPhAWobptj82HZaACbtLkXQBYIotgr3yZ6u4D9TJmeE,14458
|
|
7
|
-
autobyteus/agent/tool_invocation.py,sha256=Kt1ge4kUGzC5f6ONdoBNGDUr9OwSAIEKmGFrtGzjewM,2312
|
|
8
|
-
autobyteus/agent/bootstrap_steps/__init__.py,sha256=k3_J4MXu7PaTuUXK-D2Uax8kh4BnSNm22sDlQw6GFA4,906
|
|
9
|
-
autobyteus/agent/bootstrap_steps/agent_bootstrapper.py,sha256=tPxD4yQ_i3-rl9XOGaKrLMdpymBqrzHkkkzRW0xhPBw,4336
|
|
10
|
-
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/mcp_server_prewarming_step.py,sha256=M_OnynyLRmyQsfEeGQ8aH-NIhbBgmXhEBRHopvkNXJc,3432
|
|
13
|
-
autobyteus/agent/bootstrap_steps/system_prompt_processing_step.py,sha256=6bnKzUqdqHVAriXEKU7mddH6br7JRSUget4BllxPijg,5521
|
|
14
|
-
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=XDnjoCkKP_dDHyl0s9Fc5cl4k_xTTaeTQ1DACMGkf8o,4501
|
|
17
|
-
autobyteus/agent/context/agent_context.py,sha256=3Vd1c4EF6JY7rOKar7TQSXNNSNnpB-hYuhGqVQdi52g,5726
|
|
18
|
-
autobyteus/agent/context/agent_phase_manager.py,sha256=K6sYzaY-7k3EffuxsuNM01Gela5T_RFiQZ-ljhP9JeE,15610
|
|
19
|
-
autobyteus/agent/context/agent_runtime_state.py,sha256=CIoOJwGR9-H-vYBfq-4eQRP5uSoBcmlAFUGSru8xZ7A,5125
|
|
20
|
-
autobyteus/agent/context/phases.py,sha256=NrA5HS6rGm0nv74HaZW2l-dul1yJJyr-ukLZKXzYXWE,2871
|
|
21
|
-
autobyteus/agent/events/__init__.py,sha256=8AL83PBRLkEptTzPznn_XpGXq2-S56Yxx3WarNcsc3U,1507
|
|
22
|
-
autobyteus/agent/events/agent_events.py,sha256=plrBY3Cr_nUhrwvkpED_2qyPq2Slc0ciiupsWdPvmwo,3821
|
|
23
|
-
autobyteus/agent/events/agent_input_event_queue_manager.py,sha256=VfynrdVSPkKEH94yg9p1WBOoV52JQX8MRJhJ-GU7fcY,10461
|
|
24
|
-
autobyteus/agent/events/notifiers.py,sha256=UTLFC2OeBMftku97rAFSZU8J12Ji8s4iPeEZTovyEBQ,7455
|
|
25
|
-
autobyteus/agent/events/worker_event_dispatcher.py,sha256=RVlylVdEcPhWmiVJZFwGSZbG3zVQ_bwTub9tIXvP-ps,6187
|
|
26
|
-
autobyteus/agent/factory/__init__.py,sha256=4_PxMM-S_BRuYoQBHIffY6bXpBdEv-zFyuB6YaK93Yw,204
|
|
27
|
-
autobyteus/agent/factory/agent_factory.py,sha256=8vrsGTvZi0XIVZxpB3CHiiSLIv9Rdar9SaQ8Y5v5gLo,6673
|
|
28
|
-
autobyteus/agent/group/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
|
-
autobyteus/agent/group/agent_group.py,sha256=Y6ELJcDPGefOwkE3P4mlqfITxIcqUTI6XhfHUabhrD8,9304
|
|
30
|
-
autobyteus/agent/group/agent_group_context.py,sha256=kPsztFCClNdubdnOaJaYR9aYsL8QtWmPOuJjMOiUIm8,3437
|
|
31
|
-
autobyteus/agent/handlers/__init__.py,sha256=UFIEqdaET3zTYnHJAJpjiSVS9euWqQuaVMlVTN6dyAY,1510
|
|
32
|
-
autobyteus/agent/handlers/approved_tool_invocation_event_handler.py,sha256=ND9XzSXIQOaj16AOs37gaPGGSgU1BXRK7CrWK_-wL8Y,7857
|
|
33
|
-
autobyteus/agent/handlers/base_event_handler.py,sha256=G2vtFJT_vyObWTgrgwIgRwOssBQ-6A3gxHtc7S4SEuQ,1264
|
|
34
|
-
autobyteus/agent/handlers/event_handler_registry.py,sha256=95BCsKtxKFFSsliSJOCb6nw10TMbiRK2qM366DDuZKM,3474
|
|
35
|
-
autobyteus/agent/handlers/generic_event_handler.py,sha256=759BrDJI-sesY74YN3CX3OfTM44vLGyj6Sg1gd8eJ_w,1888
|
|
36
|
-
autobyteus/agent/handlers/inter_agent_message_event_handler.py,sha256=YRdc6DUL7RXRlRz2YN_6dvOfeX82davbdSIXRSUIdI0,3295
|
|
37
|
-
autobyteus/agent/handlers/lifecycle_event_logger.py,sha256=-j5GhlCPauPwJMUOMUL53__wweZTsamhYXNbvQklnoY,2656
|
|
38
|
-
autobyteus/agent/handlers/llm_complete_response_received_event_handler.py,sha256=FL8HHQCWhQrHCPgGsQO0pQhmkFsefAYwrtCU4Kj5pM0,7775
|
|
39
|
-
autobyteus/agent/handlers/llm_user_message_ready_event_handler.py,sha256=kXfn9uelGE92afv561VFFu4C_0jpyUKi4ir1uhcjWIc,7674
|
|
40
|
-
autobyteus/agent/handlers/tool_execution_approval_event_handler.py,sha256=Tda_LrlIPbEwVzf1I6u4Vb9sPmAbGQRqT_2-Q9ukLhw,4489
|
|
41
|
-
autobyteus/agent/handlers/tool_invocation_request_event_handler.py,sha256=AjNGQgRCQkjXvYThd_AaPj0Lzh1adEkhYJO83alxVAY,10957
|
|
42
|
-
autobyteus/agent/handlers/tool_result_event_handler.py,sha256=-6oUpcbQ9YLL5etypCo_3Iq75tXnmMefSkdLb1OsvKc,5356
|
|
43
|
-
autobyteus/agent/handlers/user_input_message_event_handler.py,sha256=J_3asbNTcIipehMfDEiVf9Lb8PAa-XvUc7H17Gej6So,4233
|
|
44
|
-
autobyteus/agent/hooks/__init__.py,sha256=a1do0Ribb2Hpf9t0Xqxhf3Ls7R6EQuWJtfTGQK7VjUM,495
|
|
45
|
-
autobyteus/agent/hooks/base_phase_hook.py,sha256=7JU3FgPzX06Yg6eJgB4GXzXcaWTpOcEMmyw5Ku0mwJk,2040
|
|
46
|
-
autobyteus/agent/hooks/hook_definition.py,sha256=4aA4iZnxMnw9n6sGThD-kCt3JPQSjPQDCd5D7Q7uzQs,1273
|
|
47
|
-
autobyteus/agent/hooks/hook_meta.py,sha256=QHqEDug46EgDHrZYyacdXkFhnE39Zq2oPbgBgB27E6I,1590
|
|
48
|
-
autobyteus/agent/hooks/hook_registry.py,sha256=j0EXgv-cVYacFePNur_yrPhx8aH5OFdINxg2U_Y3Xr4,4410
|
|
49
|
-
autobyteus/agent/input_processor/__init__.py,sha256=FB9EuirwNJbbOlCU4FuTPWMZODJA_F3ObnbnxN89wlI,674
|
|
50
|
-
autobyteus/agent/input_processor/base_user_input_processor.py,sha256=elmg4qLV0MARYsgE0zbDTU8gLFpRe4FmBda0lzanDmE,2197
|
|
51
|
-
autobyteus/agent/input_processor/content_prefixing_input_processor.py,sha256=NeFgL-eDMYDDEV4c6WY8o0r3Q7RSsN0KuvzLY48Hxi8,1958
|
|
52
|
-
autobyteus/agent/input_processor/metadata_appending_input_processor.py,sha256=2RyI8zzf97wn31JtiyQg_EPhP-DVH2uD3nrEEuAWS_0,1548
|
|
53
|
-
autobyteus/agent/input_processor/passthrough_input_processor.py,sha256=nQO4Lijhb2PK4yKzV6iQCUG_hX6A98OtEwpgdWnscec,1347
|
|
54
|
-
autobyteus/agent/input_processor/processor_definition.py,sha256=ISRHvjbBhlG2DYdgSK4hN3i8w1DJkgPOvCDY06TuslQ,2101
|
|
55
|
-
autobyteus/agent/input_processor/processor_meta.py,sha256=Ns_VcPbK4-xLlpbdFIC_xWfgoXDHVduVTNN7EUCUPgU,2241
|
|
56
|
-
autobyteus/agent/input_processor/processor_registry.py,sha256=uIDttiadUSO-1QO0Qmjmc-YkKKnrYXsjxRLNj7ihzco,5049
|
|
57
|
-
autobyteus/agent/llm_response_processor/__init__.py,sha256=IeN_Bd0t46V3NYrviWzrLiM6IJBjhpf3lxX-ZQOfzUU,617
|
|
58
|
-
autobyteus/agent/llm_response_processor/base_processor.py,sha256=U9oKMwbz_oYYw__djS_93IxG5pphQuJnWP_vOYKzUo0,2393
|
|
59
|
-
autobyteus/agent/llm_response_processor/processor_definition.py,sha256=AMLmiL8dMlTpmBKmQrqrfNTfwJLyL6kLHYGqJ-Ly8bE,1464
|
|
60
|
-
autobyteus/agent/llm_response_processor/processor_meta.py,sha256=RC32R5SVTSpBEOdexVh_SOTIydv0_ElWGP7PsXB-q_Q,1813
|
|
61
|
-
autobyteus/agent/llm_response_processor/processor_registry.py,sha256=K31pYAujCqnuVXLd_c7gekJfczkagfLC2nI6TciWKBU,4768
|
|
62
|
-
autobyteus/agent/llm_response_processor/provider_aware_tool_usage_processor.py,sha256=VMFhhZu-39xaZs3AWfPc_JIMjLNvIpjtv0GajigZlyw,3644
|
|
63
|
-
autobyteus/agent/message/__init__.py,sha256=xRs_zyqW1e_Z6R2hu8bGj6sB5s86ZgQQMDkqoRE9kGY,681
|
|
64
|
-
autobyteus/agent/message/agent_input_user_message.py,sha256=NCy-1CjB4SFj4O05cH6HyC-lK-nZaspUh7bc3iwemD8,4838
|
|
65
|
-
autobyteus/agent/message/context_file.py,sha256=VCwuN9qWKUHe1sZOWKQMwnbj1DzaeyfbML9wXU8SIL8,3376
|
|
66
|
-
autobyteus/agent/message/context_file_type.py,sha256=Gz1Nl3qsoDgKfjfixCoiqHIJK4Uj9ABJVFmT8RBnZI0,2227
|
|
67
|
-
autobyteus/agent/message/inter_agent_message.py,sha256=302oAt5PdrAqS1Cz80o7G6Kk3Ur1D9JNxze7Q0NI3dM,2436
|
|
68
|
-
autobyteus/agent/message/inter_agent_message_type.py,sha256=l-j0WB4F6yRXSSnHRKzNfmwnL4wX3usPN0JIrQthyEA,1130
|
|
69
|
-
autobyteus/agent/message/send_message_to.py,sha256=debwX0bW10B6FpdN9CKCbpzUtEk46UbmOloqgzlGBvk,7518
|
|
70
|
-
autobyteus/agent/phases/__init__.py,sha256=OC0T294mOGUk6pudSVLslHtfziBJEYd_VoA-LgWo9oE,558
|
|
71
|
-
autobyteus/agent/phases/discover.py,sha256=N1vjvvqnddOLYMLda38nxB9szjgcm3isB1lte1nu03w,2005
|
|
72
|
-
autobyteus/agent/phases/manager.py,sha256=-K3trAbDyXweGUxtgKPuUjQh7Cr2oFswR9KwhisT128,15604
|
|
73
|
-
autobyteus/agent/phases/phase_enum.py,sha256=Ubd_fraZxYRJUM7DdeLEjL0Vvm1RzBcCuOUgVKHBELE,2882
|
|
74
|
-
autobyteus/agent/phases/transition_decorator.py,sha256=jiby_dzeytKGQFjnTQYQ1gziYh7F-2RnShajpHWWhFQ,1553
|
|
75
|
-
autobyteus/agent/phases/transition_info.py,sha256=wqA_ANUbDzjsgESUtgH4svVczPA6-LUdAtZm1MonoFA,1251
|
|
76
|
-
autobyteus/agent/runtime/__init__.py,sha256=VQLu_-t86WkvLKEnGmbPksP53CrqgchqY8eB-DS-SsI,457
|
|
77
|
-
autobyteus/agent/runtime/agent_runtime.py,sha256=cGN9_kNQcgbG6HTZNkBFv5-xeod6Z5wBTeZCzrTVX9o,6483
|
|
78
|
-
autobyteus/agent/runtime/agent_thread_pool_manager.py,sha256=-dyo3LQ4Mi1upUyyp-8EmQuRXWamIcESc1-WCVSS0dM,3607
|
|
79
|
-
autobyteus/agent/runtime/agent_worker.py,sha256=gS0Vfo-tknIjc7Zxqed9qSUF4XzXhoa34RFNG0KOj7g,11185
|
|
80
|
-
autobyteus/agent/shutdown_steps/__init__.py,sha256=583P5F3eBdqkmwBlnqua0PBZjHpnsfNEZgGxFw3x-4o,574
|
|
81
|
-
autobyteus/agent/shutdown_steps/agent_shutdown_orchestrator.py,sha256=5y8Ynm0zDbV00NkiJ4XNoM9U7T0vEp5E_fkUt4pTAVI,2475
|
|
82
|
-
autobyteus/agent/shutdown_steps/base_shutdown_step.py,sha256=YqHMD4opVvjCHHZdD38SxxJLhfAHL5523DNymUNHiD4,1083
|
|
83
|
-
autobyteus/agent/shutdown_steps/llm_instance_cleanup_step.py,sha256=f0zfOLNA_Ksp4Q0kBvikNlvoTXCnN-erQzSPMtmK44c,1863
|
|
84
|
-
autobyteus/agent/shutdown_steps/mcp_server_cleanup_step.py,sha256=_Ra9Fsf2KnPJAoGK0YdMH1wd0GdMonc9-MYY1GQookQ,1274
|
|
85
|
-
autobyteus/agent/streaming/__init__.py,sha256=ul7QUIjv5q1nYwzrU1nsVBsKZwpthdmUGsP3UPWmJ34,447
|
|
86
|
-
autobyteus/agent/streaming/agent_event_stream.py,sha256=cNF0KnHenAfxYNnZwaQ4OwH-iswRr6DqFdC06O4wHOE,9723
|
|
87
|
-
autobyteus/agent/streaming/queue_streamer.py,sha256=lTMyFwuf_NBJL6hrUIoz5-pqWSlM7fgz1xcVB73y1bk,2354
|
|
88
|
-
autobyteus/agent/streaming/stream_event_payloads.py,sha256=Zsr9Z9Fs0HjaRKHv662dCO54tADkTvtx1bzDFBuh7hs,6845
|
|
89
|
-
autobyteus/agent/streaming/stream_events.py,sha256=0_c2cO_L955nuYnpgKRsG7jMpxTOYv0QdNb1Uhz9Bh0,5380
|
|
90
|
-
autobyteus/agent/system_prompt_processor/__init__.py,sha256=5CuF47Y6DKwOWNBQQ-WRQpIxH6Iww-1V0KPok3GCGq0,446
|
|
91
|
-
autobyteus/agent/system_prompt_processor/base_processor.py,sha256=LyWb9wyPl7nZZgiKYK2jtwQj1oe2I40kDyjJgRP5oBI,1717
|
|
92
|
-
autobyteus/agent/system_prompt_processor/processor_definition.py,sha256=r2ry7igUxaVrpAVmzAtR-O1ssFIhQEry-2PBs6YIZog,1767
|
|
93
|
-
autobyteus/agent/system_prompt_processor/processor_meta.py,sha256=aQLo0WE58HVQf4lkDxej2Lz4XFLWddUd24ZPWscnsyo,2356
|
|
94
|
-
autobyteus/agent/system_prompt_processor/processor_registry.py,sha256=VjjFiQ2z3Sxb_ZBVJ1omCcqompA2ttN815YEnx0R2lE,5007
|
|
95
|
-
autobyteus/agent/system_prompt_processor/tool_manifest_injector_processor.py,sha256=9p1HWI6DyK5-82ij6d7bPI8QHlxYcr9B4dZZG-X5Lrg,4087
|
|
96
|
-
autobyteus/agent/utils/__init__.py,sha256=vau-Zjww0qxPyo9SetL7aLUEw-99PX8Nv8TEDngUlKs,210
|
|
97
|
-
autobyteus/agent/utils/wait_for_idle.py,sha256=S0jQ9-GyfXymTkv_VTG9tVmMQXSsLAU4hsfuAxspTp4,2464
|
|
98
|
-
autobyteus/agent/workflow/__init__.py,sha256=kqIBgWz7oAO4AGGrurNy142tRweSwt2hOmdOKqLNcyU,286
|
|
99
|
-
autobyteus/agent/workflow/agentic_workflow.py,sha256=dRgPAtIO3lUyEpjQcsSNY3OoR144XhabeTbr4rok5Ss,4018
|
|
100
|
-
autobyteus/agent/workflow/base_agentic_workflow.py,sha256=ihDRMEJCfc_l88sgu3quaKW6CoNhh-RaLG3fMQfJh5M,4070
|
|
101
|
-
autobyteus/agent/workspace/__init__.py,sha256=7a16HpWxic9zxxsmZeICnBGHK_Z2K9yJUv4z9YELKfw,277
|
|
102
|
-
autobyteus/agent/workspace/base_workspace.py,sha256=kCEJhYacI5LCttS-4f4ItbX5p99Albyka9ty3_sSW9A,2960
|
|
103
|
-
autobyteus/agent/workspace/workspace_config.py,sha256=UfDpOkCH5B7ddt227zoQdmq8bCvI0wTL9vPAB6tOH24,5571
|
|
104
|
-
autobyteus/agent/workspace/workspace_definition.py,sha256=l959gPAVSF17ym9P4y7vf4LuiibcVzom2y0AEmQT7Ak,1476
|
|
105
|
-
autobyteus/agent/workspace/workspace_meta.py,sha256=xuw1-lYQiK5YyyDDc_5uT3uOGL0FfwLC8zCQiSyyQro,1680
|
|
106
|
-
autobyteus/agent/workspace/workspace_registry.py,sha256=A_wADwvZOm1XutBgkn_-FBkqb4tS1fRtALrKe2XRDhw,3182
|
|
107
|
-
autobyteus/cli/__init__.py,sha256=8eCWmDWQGFFFucnMnTYNlrAJK-rzp1iDlIaDBJFSP24,267
|
|
108
|
-
autobyteus/cli/agent_cli.py,sha256=Ua6MnuVHmNgelnZQ8B8ZMFk2nyN-VNPijNzyucVVPis,4818
|
|
109
|
-
autobyteus/cli/cli_display.py,sha256=GGMjFg71yZkoeZkSXsDnc5NjHsdwSimqDszIPpFikRU,9490
|
|
110
|
-
autobyteus/events/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
111
|
-
autobyteus/events/event_emitter.py,sha256=WKKwISFo2yDx0OpLjGFtXEl3DVV1siB0lXdndIAHhBg,2522
|
|
112
|
-
autobyteus/events/event_manager.py,sha256=c5RMlCtKzkHgQZkePBvqxPAxxOu-NapUrl8c2oRDkT8,5841
|
|
113
|
-
autobyteus/events/event_types.py,sha256=Eb1XS_vGA6O6P06PK-ylVNDqftxVrrgg6xxHq8ubccQ,2650
|
|
114
|
-
autobyteus/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
115
|
-
autobyteus/llm/autobyteus_provider.py,sha256=WCLUZM24UUB9Gl32WKgwoyXx41pnRXJiz-c9PpiC_C4,6747
|
|
116
|
-
autobyteus/llm/base_llm.py,sha256=XwVnihE6Qy6L8HPWUIXTKCYcKgoxYuw2Om8PivwlbU0,11597
|
|
117
|
-
autobyteus/llm/llm_factory.py,sha256=xTKtTuCf40IfKqRs4EwbKq6dQLulebLAfd9_xzIXcD8,16431
|
|
118
|
-
autobyteus/llm/models.py,sha256=Dg_1dLAOwJ9H1NJWnQ7GaTdYiX8_ESbh_tZN67dl8-I,5825
|
|
119
|
-
autobyteus/llm/ollama_provider.py,sha256=xInqOsZjHQ_1xzvO67vAR7NBausMeUCtRG1FY236lUQ,4230
|
|
120
|
-
autobyteus/llm/ollama_provider_resolver.py,sha256=O0eKyE6Lj6ozhyWV72sOb-A7Iw9cwFHsBjcD-HH6tHM,1774
|
|
121
|
-
autobyteus/llm/providers.py,sha256=iiCt-aOiioUpy9cixMwYEWaxFMam5-pHJMxLB9uXBzg,328
|
|
122
|
-
autobyteus/llm/user_message.py,sha256=5FfDOKN-ohBhQy3mTTezv4zTAwcfmcyE0zODNCfRxdo,3200
|
|
123
|
-
autobyteus/llm/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
124
|
-
autobyteus/llm/api/autobyteus_llm.py,sha256=iJJ2luB1YVg0lEuS8nHPm8h1axouSGEGvoFk2g4o2jo,4896
|
|
125
|
-
autobyteus/llm/api/bedrock_llm.py,sha256=B1NEEuQ48FGrhp2G_h7htvWiepUsXGnNy6wEQhO6I_E,3256
|
|
126
|
-
autobyteus/llm/api/claude_llm.py,sha256=-xpyDvIKnEoay8B2f09STaCYvG7MDQsusCtjzZ0ffHc,6128
|
|
127
|
-
autobyteus/llm/api/deepseek_llm.py,sha256=TEWtXAqM4OuKH1etj5kknzkbPsRGvEpWzTq_CoAU6po,894
|
|
128
|
-
autobyteus/llm/api/gemini_llm.py,sha256=pIH72Lodw5-w0XWKeybUza55cQ5BJChdgSzbWEVwS8w,3208
|
|
129
|
-
autobyteus/llm/api/grok_llm.py,sha256=oZIkJrRhbvcKSrho5hLWqqRxO5SUfbwutKW1g-mPQC0,875
|
|
130
|
-
autobyteus/llm/api/groq_llm.py,sha256=pq30UuR4NGVCVxMxcGTK2AVBTHtCymAi44hlkfvsXiY,3482
|
|
131
|
-
autobyteus/llm/api/kimi_llm.py,sha256=oUgmP_D0ppr0zKhgRVyjxRMP8cEMGXB2DFUgXYqRlCg,873
|
|
132
|
-
autobyteus/llm/api/mistral_llm.py,sha256=VdVqEXp5GdXZJQ7NVXmiV9AVDYltb3neqo2EugDIMds,5019
|
|
133
|
-
autobyteus/llm/api/nvidia_llm.py,sha256=jh1cz1zQtCVwYxFSFW9y6LXCW6rv8FdvjTCHvyoBzwc,3913
|
|
134
|
-
autobyteus/llm/api/ollama_llm.py,sha256=hOB4FciwLhivKEKL8_UXM_qVxFGD8gop0xtXbQkDHo0,5959
|
|
135
|
-
autobyteus/llm/api/openai_compatible_llm.py,sha256=VCcYaDg_R5Mv-D_9lZ-YyJrCR05a5JfdJ6ukwcwbnBg,7879
|
|
136
|
-
autobyteus/llm/api/openai_llm.py,sha256=414fWDFvTm7IkG3STfYCWT4mz1FQwEGnD4N5MpTyf6M,905
|
|
137
|
-
autobyteus/llm/extensions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
138
|
-
autobyteus/llm/extensions/base_extension.py,sha256=0HE-od2MxITaBMHCzIrnkQ6n40-0R7jxA7GxPFeJ8Gg,1322
|
|
139
|
-
autobyteus/llm/extensions/extension_registry.py,sha256=b4b3U5cQB9kZpJpqmT_e1lviLzjGQBsp7gJuYppjpjU,1254
|
|
140
|
-
autobyteus/llm/extensions/token_usage_tracking_extension.py,sha256=SoEJWszO8LrM4faTy-j-z7S8v5PV5D0ltzOQ2sbQWBY,3796
|
|
141
|
-
autobyteus/llm/token_counter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
142
|
-
autobyteus/llm/token_counter/base_token_counter.py,sha256=NSY6rdSmBNn9MEAY4vSdnuB2BRRRwoP3rDp9ulBTAWA,2019
|
|
143
|
-
autobyteus/llm/token_counter/claude_token_counter.py,sha256=-gIB8uafY3fVy5Fefk0NTVH2NAFy0gfT8znHlpLQSwo,2620
|
|
144
|
-
autobyteus/llm/token_counter/deepseek_token_counter.py,sha256=YWCng71H6h5ZQX0DrjqfMua-SeCH1ATizWLvxxr591s,859
|
|
145
|
-
autobyteus/llm/token_counter/kimi_token_counter.py,sha256=KuzgcbSWiqybCKHaukd-n917zEgUFebGXMAxlkZxue8,854
|
|
146
|
-
autobyteus/llm/token_counter/mistral_token_counter.py,sha256=YAUPqksnonTQRd1C7NjjFUPsjEDq_AKWxTc5GNTVGqU,4760
|
|
147
|
-
autobyteus/llm/token_counter/openai_token_counter.py,sha256=hGpKSo52NjtLKU8ZMHr76243wglFkfM9-ycSXJW-cwE,2811
|
|
148
|
-
autobyteus/llm/token_counter/token_counter_factory.py,sha256=Hoiuq8Q7wmF-plji2EEo1JFJmdmRGLouZpl-WRdC1ew,2007
|
|
149
|
-
autobyteus/llm/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
150
|
-
autobyteus/llm/utils/image_payload_formatter.py,sha256=2T21VK2Ql-AoxHGkfQGv2UX6CjMMBMzv1Hy4ekUdzfU,2661
|
|
151
|
-
autobyteus/llm/utils/llm_config.py,sha256=Q1_k0EnRqmUgbh9QeSs2F78fyPHA4cfVvJJE9iXQ2-w,9047
|
|
152
|
-
autobyteus/llm/utils/messages.py,sha256=k_mSUVrpXGF4holU8_O0WzR9t9Rk9DUpXAB_XTtmmMs,1602
|
|
153
|
-
autobyteus/llm/utils/rate_limiter.py,sha256=VxGw3AImu0V6BDRiL3ICsLQ8iMT3zszGrAeOKaazbn0,1295
|
|
154
|
-
autobyteus/llm/utils/response_types.py,sha256=afQjGmqM9qQ42EnoGtNzU1BLZnxW3JUse0RcZBOLzfY,654
|
|
155
|
-
autobyteus/llm/utils/token_pricing_config.py,sha256=6oRkG6R-BrP54sTI5Btjpy4s2c7bSAP7uZpzXldxx3E,4509
|
|
156
|
-
autobyteus/llm/utils/token_usage.py,sha256=VKxZs5WwBj8u88HSCMemMbvKI4xa-KN6jhvfqBOCg-s,616
|
|
157
|
-
autobyteus/llm/utils/token_usage_tracker.py,sha256=RC4zL5k343-wLm0jXc-rwAOMhpxs_1klnrh-xi2J7W8,4220
|
|
158
|
-
autobyteus/person/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
159
|
-
autobyteus/person/person.py,sha256=hUBLaGu2_SiClhrXIEl6b9BTXbzyBimwX6Qc08iApTU,866
|
|
160
|
-
autobyteus/person/role.py,sha256=U7gFBtYY6IlQ2Hr1bqxlPwfXb4ixOJT5WSz3cjSpybU,511
|
|
161
|
-
autobyteus/person/examples/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
162
|
-
autobyteus/person/examples/sample_persons.py,sha256=dANMjmH5IVUfBoLvWeo4d1Obms5x30MBSvFgJIBa78M,368
|
|
163
|
-
autobyteus/person/examples/sample_roles.py,sha256=rQqUGTUj0dSqTlOciRjo5AYS53hCAKl4oifpGHsrScM,430
|
|
164
|
-
autobyteus/prompt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
165
|
-
autobyteus/prompt/prompt_builder.py,sha256=2hStweYFSIXN9kif86G8Fj7VdjsIVceJYiCNboauEGk,1886
|
|
166
|
-
autobyteus/prompt/prompt_template.py,sha256=taNEAUNXLt0a3WP_bNqzeNgSIIM7rgubqBBYWHRR1Kw,1539
|
|
167
|
-
autobyteus/rpc/__init__.py,sha256=c6aEkKg5EwvIBx8oR4Or2mvv5afk4vRoM3X2n7wUBi0,2429
|
|
168
|
-
autobyteus/rpc/hosting.py,sha256=VEPmD-LYKwp6jdjg7NzweCFHJWMHj2EoKjjOhQ2IwZw,11297
|
|
169
|
-
autobyteus/rpc/protocol.py,sha256=U2wgIcZ2UuaEDijsjMv1-9WaeuJy027W_hgRGOkN8TA,12653
|
|
170
|
-
autobyteus/rpc/server_main.py,sha256=PTPwGXEEyq2ezBsPqTietFLyMdOBGLiCsPUOuUdVETc,9807
|
|
171
|
-
autobyteus/rpc/transport_type.py,sha256=Su6QmHC6wo607C5ntomsk-miJ5CxJomzkrHqmSzUlLM,319
|
|
172
|
-
autobyteus/rpc/client/__init__.py,sha256=PsWBpoVsVgQPA6FI9jbmkRJS4TxlXX76N75PYrODKIY,717
|
|
173
|
-
autobyteus/rpc/client/abstract_client_connection.py,sha256=Glw9YLjThFFbaWuv0AIZJ6YFBnYFuVMCe01eAe76VvQ,4681
|
|
174
|
-
autobyteus/rpc/client/client_connection_manager.py,sha256=Pbij-1BWibBMEymPdARVMCOlwEwDLyZ51kSF-BxeNrk,7181
|
|
175
|
-
autobyteus/rpc/client/sse_client_connection.py,sha256=rTaL3NssFDAvc7aGF7-rVzGRUwJQ5uwF2vPFEoRpIJg,17683
|
|
176
|
-
autobyteus/rpc/client/stdio_client_connection.py,sha256=iYZaEyrAGFUty9R6ejrW6q_t9KFLKfMD5jpgZwe3d8Y,14450
|
|
177
|
-
autobyteus/rpc/config/__init__.py,sha256=N-AfTHyplx-vLZ-5jrTD7zcODFUt1CVuVTfsrxlMtkk,362
|
|
178
|
-
autobyteus/rpc/config/agent_server_config.py,sha256=mJfs4AuPwBNHARWrA5luXWCE3Vby3AM11y5jwU9nFnQ,7612
|
|
179
|
-
autobyteus/rpc/config/agent_server_registry.py,sha256=MNeJmV-5K5vljUHECCdPWorPF0r99li3eeT3ceG0hks,5749
|
|
180
|
-
autobyteus/rpc/server/__init__.py,sha256=dRJ4LulIrcbmaFptxAG1UP1F5fi3nmpHO2IuXeD96J8,806
|
|
181
|
-
autobyteus/rpc/server/agent_server_endpoint.py,sha256=LV2EGpL56ZjOSvnaJB7l8uQS_WvUlbvvpLztVIPFWcU,10409
|
|
182
|
-
autobyteus/rpc/server/base_method_handler.py,sha256=6sKWucR1vUYeritjJPHIX_sCQOD2cSm_QZXDXp0G7kg,1381
|
|
183
|
-
autobyteus/rpc/server/method_handlers.py,sha256=Zqrr1R3yu_hVD0qCOPpxXm4ujkvdds9wCCneIeT3gU8,14702
|
|
184
|
-
autobyteus/rpc/server/sse_server_handler.py,sha256=3F1LNLw6fXcB08hmWOUhGZROYhpPdk8xwz2TakiR-2M,16273
|
|
185
|
-
autobyteus/rpc/server/stdio_server_handler.py,sha256=pSAvVtxyo0Hytzld7WINeKHvGBqEjp0Bad-xkY2Rul4,7398
|
|
186
|
-
autobyteus/tools/__init__.py,sha256=_CpNMcAa9eOHu-kO7hcDuqSuHO9cvB9oXg_KhayP-ag,2950
|
|
187
|
-
autobyteus/tools/ask_user_input.py,sha256=J7Um7BY0YXCuw5Cml89ixgnygy4P9UU-VgYHpq9fiAc,1597
|
|
188
|
-
autobyteus/tools/base_tool.py,sha256=x8Hjth7koJ6Brgi70phlm46K5SC9ofH4qokl4QqM9JQ,5159
|
|
189
|
-
autobyteus/tools/functional_tool.py,sha256=duIRfzw-DBmqZlLdXrMUUVch-rYeFQV30b383u5O-4A,10427
|
|
190
|
-
autobyteus/tools/image_downloader.py,sha256=cvVK2oBPjGVNphxYFNvSsdJskTXs-NJ-PZhQcvhjS4E,4780
|
|
191
|
-
autobyteus/tools/parameter_schema.py,sha256=y_CJywuOO1o14lTtwaXAVOR3B55JZAKJyZ175v-EJsE,10818
|
|
192
|
-
autobyteus/tools/pdf_downloader.py,sha256=ma-eGpTNvRokPM_iIjCDWWlYkZdmAcmTjU1irtqDkx8,3844
|
|
193
|
-
autobyteus/tools/timer.py,sha256=tMKuWNjlJR86sfclj-mzlU4yOQoRSrzW_RqXB_KVoWk,7292
|
|
194
|
-
autobyteus/tools/tool_category.py,sha256=lfdacEd3DEql-xnaSFQbNwsVAGXcC_WiygbsyihcviQ,323
|
|
195
|
-
autobyteus/tools/tool_config.py,sha256=gnzGweccECNmCeufkzbskHeFOt3f0431DyAmMhqNVn4,3564
|
|
196
|
-
autobyteus/tools/tool_meta.py,sha256=MGpIH83-sWN1ZXI_w6795f7tEmlqEeAgKXo22I7cL2w,4182
|
|
197
|
-
autobyteus/tools/tool_state.py,sha256=CwmEu7GTdaE72QIsdsXQu0AmTxQTp5hMncFcY58PkGo,746
|
|
198
|
-
autobyteus/tools/utils.py,sha256=PuHGlARmNx5HA2YFVF5XA36MoeAyFL6voK10S12AYS0,546
|
|
199
|
-
autobyteus/tools/bash/__init__.py,sha256=X38g3OVhlr-6aLIYfcSyh8DzqHAEh8dSzfEH1NEH7aw,99
|
|
200
|
-
autobyteus/tools/bash/bash_executor.py,sha256=hLsVmg5YbO0YG8DG_lIMH-VftxMsTmlHW-r7M3aWU_s,2144
|
|
201
|
-
autobyteus/tools/browser/__init__.py,sha256=fNt3qo9ykOIhfG7CmbelCabMydhPTWL-5timHXBa8ZI,91
|
|
202
|
-
autobyteus/tools/browser/session_aware/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
203
|
-
autobyteus/tools/browser/session_aware/browser_session_aware_navigate_to.py,sha256=cHpjJAkIne5HB29Wu5lBYq66gqEzpjuG7MD14T96B7w,3011
|
|
204
|
-
autobyteus/tools/browser/session_aware/browser_session_aware_tool.py,sha256=Jw3z_KY0h-hcheav9cWmTPoKGth69DePfBs-SshxUAQ,1525
|
|
205
|
-
autobyteus/tools/browser/session_aware/browser_session_aware_web_element_trigger.py,sha256=LiOjSV5L0z9xby4wJnmePGkwNknjGAmaMQhZmJyKD1s,6921
|
|
206
|
-
autobyteus/tools/browser/session_aware/browser_session_aware_webpage_reader.py,sha256=EO6vhnGGkvX0CdhBKdoHgmgsuLFiPUj0Qda-H55RbVY,3903
|
|
207
|
-
autobyteus/tools/browser/session_aware/browser_session_aware_webpage_screenshot_taker.py,sha256=wxKqRYckfncptgZl-KxDtopjvKERkLBdANjzbQPPj8E,4618
|
|
208
|
-
autobyteus/tools/browser/session_aware/shared_browser_session.py,sha256=WjdkY6vrE96hluwHQS8U0K5z3XE8QMw2-fDRv5VFhXA,326
|
|
209
|
-
autobyteus/tools/browser/session_aware/shared_browser_session_manager.py,sha256=OAFzqLHWWxtVnU-zYGYFPLwiVTzhW7C6UA3y70-lBQU,1103
|
|
210
|
-
autobyteus/tools/browser/session_aware/web_element_action.py,sha256=jPWGmqoTB7Hpk6APQOWglLUaJmf5c_nR8Hh0AbT4fkM,477
|
|
211
|
-
autobyteus/tools/browser/session_aware/factory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
212
|
-
autobyteus/tools/browser/session_aware/factory/browser_session_aware_web_element_trigger_factory.py,sha256=PsRjQMScKF3ceMEEFvlfr20OQ-sKdbQ6YWRrQffZF80,687
|
|
213
|
-
autobyteus/tools/browser/session_aware/factory/browser_session_aware_webpage_reader_factory.py,sha256=WmW9yU_KVjvDNSlxWPkdXljM9h4-zZRoZH7GP6sQndA,1335
|
|
214
|
-
autobyteus/tools/browser/session_aware/factory/browser_session_aware_webpage_screenshot_taker_factory.py,sha256=uxv7cLtlXg9Vdl82_r1K-wEHKfXzrmngGwT8rd5u4JQ,717
|
|
215
|
-
autobyteus/tools/browser/standalone/__init__.py,sha256=68N5TpeIyKMW4Y8b7kIO0lyUYIcNPBwZoTg_W9lMfpM,369
|
|
216
|
-
autobyteus/tools/browser/standalone/google_search_ui.py,sha256=WxgCjI3HtEGbA24rFYmrk_1hADgsFU1JXrANftW04eU,5300
|
|
217
|
-
autobyteus/tools/browser/standalone/navigate_to.py,sha256=HZL-4OMYMqmBSVyUUH8R7Fk7E6E1qz5azucsZ1nzzzA,3370
|
|
218
|
-
autobyteus/tools/browser/standalone/web_page_pdf_generator.py,sha256=irZr5uRdXuhhQI7vxB9RrLlOUX6hxZkXnv_XFsNy5M8,3948
|
|
219
|
-
autobyteus/tools/browser/standalone/webpage_image_downloader.py,sha256=x9HM-5RIzIpQICBqg1KQWQZNZ5rbdHMvT1Lxk3erlvI,7066
|
|
220
|
-
autobyteus/tools/browser/standalone/webpage_reader.py,sha256=N5s5QgDFPjk1P-1hpRNv9p3Y54IJaYEYnUACgOQ4s-g,4166
|
|
221
|
-
autobyteus/tools/browser/standalone/webpage_screenshot_taker.py,sha256=ss8vrh5fNPHLUAhFAu-AVBZz_iC0v2kxCGbVhPOh6eY,4331
|
|
222
|
-
autobyteus/tools/browser/standalone/factory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
223
|
-
autobyteus/tools/browser/standalone/factory/google_search_factory.py,sha256=bgsRr7gix1L96sVwAF19pbQklPPYNEhz2Et6JdIViwE,1120
|
|
224
|
-
autobyteus/tools/browser/standalone/factory/webpage_reader_factory.py,sha256=R9PJPf7MF3cP8q8ffMKU5-ihPJWHJkVDYXZswZNdGS0,1131
|
|
225
|
-
autobyteus/tools/browser/standalone/factory/webpage_screenshot_taker_factory.py,sha256=NMS2laBlZAJiXPPub4YRhz1pXtZkfAeMhfRcSAfqu4M,597
|
|
226
|
-
autobyteus/tools/factory/__init__.py,sha256=EQXbTH6BcqK2SM3JEq2PkLwzZSczExv3KDvlhWHlsGQ,275
|
|
227
|
-
autobyteus/tools/factory/tool_factory.py,sha256=-gUhcBwiQu1FQiR0nAKJp1aUZ2sXbcz-pIn4f4heFbE,1066
|
|
228
|
-
autobyteus/tools/file/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
229
|
-
autobyteus/tools/file/file_reader.py,sha256=KEYiOwUwb8FqoD5zcHbeC-C0CylfyVn1K1Lul8plfzg,1101
|
|
230
|
-
autobyteus/tools/file/file_writer.py,sha256=lqmObMuFjFN8A9FSoP8XQlip8Y6AplD4ubc8PM9k5Sk,1161
|
|
231
|
-
autobyteus/tools/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
232
|
-
autobyteus/tools/handlers/shell_handler.py,sha256=ClTXqFR45iyD0gcoOPpKRX5p6g_6BI4a5JOLuKuQOIA,1065
|
|
233
|
-
autobyteus/tools/mcp/__init__.py,sha256=gwT34UgJe2rU5y4bYNOLI-PyAmRQTMWKz_WC4f2LcyE,1553
|
|
234
|
-
autobyteus/tools/mcp/config_service.py,sha256=b6xShFAcCzouMG5ICyBfTK_ebtj79dEU6YKr3wn2xTI,11212
|
|
235
|
-
autobyteus/tools/mcp/factory.py,sha256=SmPR6mgmwLEfzfole-zKuptKnSyeZEBi1t9gBbwCtZY,2204
|
|
236
|
-
autobyteus/tools/mcp/registrar.py,sha256=GuJImUCXFiekSduK9kvyh0H4M0Rrd9hBcae0eCzdGeY,10327
|
|
237
|
-
autobyteus/tools/mcp/schema_mapper.py,sha256=PJGEAlqCgkoCThLzmkG3jXOXYk6fR1ogjSpOiCuFKsc,7502
|
|
238
|
-
autobyteus/tools/mcp/server_instance_manager.py,sha256=XJTKrA__fyKDxsWHwr9oqoxCboH2T3cJDFszQLKHhH8,4678
|
|
239
|
-
autobyteus/tools/mcp/tool.py,sha256=HpXSjvQjwwDzGGww1Cz3j4yCCLDiCYEv0RG-q-2BU4o,3380
|
|
240
|
-
autobyteus/tools/mcp/tool_registrar.py,sha256=JlnC0_NJzG9qgxyFlEhvqoa9w-Y9CSRyOEVN9b--Ems,8496
|
|
241
|
-
autobyteus/tools/mcp/types.py,sha256=KiQUPhqzro5VW7piA-eOXkBcE0FThOUgr9Pw_7iV6Us,4171
|
|
242
|
-
autobyteus/tools/mcp/call_handlers/__init__.py,sha256=elxV-ttOoQ3Ve5idyIetdCzFDGlQBQ9UAG9okIpaI5c,516
|
|
243
|
-
autobyteus/tools/mcp/call_handlers/base_handler.py,sha256=q-34xq6w-561rwujmoJVvhJMexe4-bhqBq8ORc_W6qA,1252
|
|
244
|
-
autobyteus/tools/mcp/call_handlers/stdio_handler.py,sha256=HKbZYvX3PEZkZ60xmXgvFpEo4oYgss26l3bgswQvx2g,3522
|
|
245
|
-
autobyteus/tools/mcp/call_handlers/streamable_http_handler.py,sha256=P3qMErRqHBaXtqnx_fz5NNqw7ecps856UmIsLJnniF8,2702
|
|
246
|
-
autobyteus/tools/mcp/server/__init__.py,sha256=yfCMAtVlfy1x8aKEnRz9_CHnco2zVSdepwIPSjywSNw,523
|
|
247
|
-
autobyteus/tools/mcp/server/base_managed_mcp_server.py,sha256=ep-EKh4uqorrNYvv7D27Kh4fxR1f-E3hYMclFcWq0p4,5512
|
|
248
|
-
autobyteus/tools/mcp/server/http_managed_mcp_server.py,sha256=vuRh0N8xczposZxwffHkHDWXtV-5Sji7clKh6J-VqY8,1270
|
|
249
|
-
autobyteus/tools/mcp/server/proxy.py,sha256=08F3m1I_IH2wrRXK29R_NPDB6ITHpo982Mq9G53hbUo,1660
|
|
250
|
-
autobyteus/tools/mcp/server/stdio_managed_mcp_server.py,sha256=vFI9icgRLedgxgEKrzNqSXMXtsdHvUcOCVhDvTSFb68,1375
|
|
251
|
-
autobyteus/tools/operation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
252
|
-
autobyteus/tools/operation/file_operation.py,sha256=bAehQ9PfHoCDpk9Wa7vx9h3ohzVuaGzzBUogxleTwq8,2375
|
|
253
|
-
autobyteus/tools/operation/file_rename_operation.py,sha256=pExiC69HUzYbKihlVumlGHMGxmmrsKQB0JfAM5x4JH0,1710
|
|
254
|
-
autobyteus/tools/operation/operation.py,sha256=9sIZnlrPct5CwkCKuwbspVKvjF4KumP6twmXRo1blwo,1702
|
|
255
|
-
autobyteus/tools/operation/shell_operation.py,sha256=_BiGIRGWCzzwPVtbqFwXpHOvnqH68YqJujQI-gWeKx0,1860
|
|
256
|
-
autobyteus/tools/registry/__init__.py,sha256=39TSHm7mD6NXhsrczsX5Mdr32US0I6z3Bzad4hgcrrA,250
|
|
257
|
-
autobyteus/tools/registry/tool_definition.py,sha256=XQ6rcZWse9W-O0KM85iswIvgqqbORhmT4k1KgwvEMgI,7001
|
|
258
|
-
autobyteus/tools/registry/tool_registry.py,sha256=TqQOqQIdYCb1Gmj-_nnlAeejZ6qzmXLZWYABQf8OBbk,5657
|
|
259
|
-
autobyteus/tools/usage/__init__.py,sha256=0kJoUH-m0d1AHTYJQyXlCjlXhMJ3e95Ykf-8J9lO2g4,224
|
|
260
|
-
autobyteus/tools/usage/formatters/__init__.py,sha256=BThdI_R8Dkda1eHJFr1cQ7nLCgf5KfSuvWokjPrnT9U,1424
|
|
261
|
-
autobyteus/tools/usage/formatters/anthropic_json_example_formatter.py,sha256=EVVPZ7e1tG3QRcEPjdOC0yTvnGisubfUm9geWbd9r2g,792
|
|
262
|
-
autobyteus/tools/usage/formatters/anthropic_json_schema_formatter.py,sha256=Cwd4teoZcs64q1xemVYIW9lviH7A0t2jmg3W7TYv_Rs,869
|
|
263
|
-
autobyteus/tools/usage/formatters/base_formatter.py,sha256=15YQHEV-uHREoi5INA6KWVrniatMbBPIGz82bVkZos8,1283
|
|
264
|
-
autobyteus/tools/usage/formatters/default_json_example_formatter.py,sha256=xW6qlfZe9F_J7ho8pFFItaw5DEsSxf9m3tSiUTzU-gY,1897
|
|
265
|
-
autobyteus/tools/usage/formatters/default_json_schema_formatter.py,sha256=mZuHp_irHco3_S-VotSBvv5BRFDlTsmdmSIH3Ut71jY,958
|
|
266
|
-
autobyteus/tools/usage/formatters/default_xml_example_formatter.py,sha256=TP6RbfYGafun9S50gW9sWduhbP2ndObyIITSmPUtPgs,2449
|
|
267
|
-
autobyteus/tools/usage/formatters/default_xml_schema_formatter.py,sha256=ZhLhISZSxNxZaexcn73H5yv81qEMxQgBUpZP_84-SBM,2109
|
|
268
|
-
autobyteus/tools/usage/formatters/gemini_json_example_formatter.py,sha256=FZKB9rwfjYEBEIVvNg0jv98Kei89m96DacSP5-bKAoY,1769
|
|
269
|
-
autobyteus/tools/usage/formatters/gemini_json_schema_formatter.py,sha256=za6FhkrbDUcezc9-u4w4_ytQAQyR8OpKypC_CCTYlBY,875
|
|
270
|
-
autobyteus/tools/usage/formatters/google_json_example_formatter.py,sha256=Zpc3OID2NRujjMP16edStoM4hqdYYEcM4e_dQjWZHAk,1767
|
|
271
|
-
autobyteus/tools/usage/formatters/google_json_schema_formatter.py,sha256=gKeuR_QhiebFGja303rg9q9CxgynJxIoCd4SrXuXRUU,868
|
|
272
|
-
autobyteus/tools/usage/formatters/openai_json_example_formatter.py,sha256=qzvRnn43L1OJN5720R2XYyBYfwmBn3LBH6agIL7Nsv8,2331
|
|
273
|
-
autobyteus/tools/usage/formatters/openai_json_schema_formatter.py,sha256=3pN4CnmWiBJaZMhV7qnWcSKPpyZ2cEdiU-FVMRfPT1w,948
|
|
274
|
-
autobyteus/tools/usage/parsers/__init__.py,sha256=4y235cYvUm60v30m4KCwQ4g9x9yP81QYBhSkUmjFWAU,915
|
|
275
|
-
autobyteus/tools/usage/parsers/_json_extractor.py,sha256=Q7BJsEcFkEZJ8q-ifIl-7t4FXZgFoFEwFXAGvKFYhCk,3601
|
|
276
|
-
autobyteus/tools/usage/parsers/anthropic_xml_tool_usage_parser.py,sha256=xAVq7bPlyfZK5YBVsNlXyyc-1J4kyVr4-wDNI0ekl_o,433
|
|
277
|
-
autobyteus/tools/usage/parsers/base_parser.py,sha256=iNHVUXMzAydnhYeEBgcXU0g8L_H9KTMavOEd-iwDLbk,1366
|
|
278
|
-
autobyteus/tools/usage/parsers/default_json_tool_usage_parser.py,sha256=jl-VKMubpgI15TuX7tyKmu_4WHb2YUVw5Yz2fy7GXkY,3480
|
|
279
|
-
autobyteus/tools/usage/parsers/default_xml_tool_usage_parser.py,sha256=FtC_szwfQDCORHSp6XG4omCsQTwyBr2AZCNEX90dFV0,5829
|
|
280
|
-
autobyteus/tools/usage/parsers/exceptions.py,sha256=CncCSH4IJUYPaCTilj1oPgfZWdCycIxQBrWiSKuWXtc,468
|
|
281
|
-
autobyteus/tools/usage/parsers/gemini_json_tool_usage_parser.py,sha256=KcjN3xa67Dv3pSaN-RdCOilDa7FPpHhKB1NajL1ETGU,2580
|
|
282
|
-
autobyteus/tools/usage/parsers/openai_json_tool_usage_parser.py,sha256=wQXe4HAYsvfuLG6Ffv_Rk38ZAN5c1NlaEb7lFq7xbVs,6916
|
|
283
|
-
autobyteus/tools/usage/parsers/provider_aware_tool_usage_parser.py,sha256=fbQO7-UASFnTipqj6lrFKO7jpC7L4eIPG72vdwNdtJQ,3089
|
|
284
|
-
autobyteus/tools/usage/providers/__init__.py,sha256=fh-S4Og-mePoTAkBVuq2qSzQnrVpOCwwfjNHC5d0VOk,832
|
|
285
|
-
autobyteus/tools/usage/providers/json_example_provider.py,sha256=sYXTKusAtBCSifpos1x3v0t8igYbF6gEeQ5W3sfHOpk,1221
|
|
286
|
-
autobyteus/tools/usage/providers/json_schema_provider.py,sha256=UH5uBdRHp33QLnOrmkmF507EHCxG4JlPHd19j6AJvIw,1312
|
|
287
|
-
autobyteus/tools/usage/providers/json_tool_usage_parser_provider.py,sha256=B32hvsmoeGCtekh_maGtSlIMbXR3NRZ6dGEShIVWUIg,1072
|
|
288
|
-
autobyteus/tools/usage/providers/tool_manifest_provider.py,sha256=-DjQ7LOjS4I7WNzqWuD38hRMBekil5xgThWyRTL_U9c,2932
|
|
289
|
-
autobyteus/tools/usage/providers/xml_example_provider.py,sha256=BLF64tRoptS2lCNf5NNzj_3e3F93NQ9cQ3nXZt6_ySs,1045
|
|
290
|
-
autobyteus/tools/usage/providers/xml_schema_provider.py,sha256=7RpC__MDpZUjc7Px03hcDpvm_NH32aQgEdMwwfX9oVY,1071
|
|
291
|
-
autobyteus/tools/usage/providers/xml_tool_usage_parser_provider.py,sha256=qGQXTApw0LrT8rRTP2KsbgTBJVhQFq-dSK5KVv5JG3E,944
|
|
292
|
-
autobyteus/tools/usage/registries/__init__.py,sha256=m-wzJidybRtTFMGohse-bL2s9SOdO1Lm-1t5wHE2gNs,885
|
|
293
|
-
autobyteus/tools/usage/registries/json_example_formatter_registry.py,sha256=vYA5F0xiIRUUGTjBkoLPJZzAkvHsQwOvf-w0UZtrjcc,2479
|
|
294
|
-
autobyteus/tools/usage/registries/json_schema_formatter_registry.py,sha256=0eJ6kHhkdynARr9Q-lzis80XcC9YITibsivUs49eJNU,2440
|
|
295
|
-
autobyteus/tools/usage/registries/json_tool_usage_parser_registry.py,sha256=kLIK6I5l5FEEmveoUA-WpeehWiAF5mlpoiI_xe4Q2eI,2011
|
|
296
|
-
autobyteus/tools/usage/registries/xml_example_formatter_registry.py,sha256=KmYnyaw9cpwTSJtBBBqQ61SlhrmRPLgpMF6mn21Hgww,1198
|
|
297
|
-
autobyteus/tools/usage/registries/xml_schema_formatter_registry.py,sha256=aiuW7bs68Y7mct9YRT2q9oRjHnJXvHpl-TDBvshz2lE,1444
|
|
298
|
-
autobyteus/tools/usage/registries/xml_tool_usage_parser_registry.py,sha256=FiGlK_kmyzSMN97xShoPL1Bytd9hfCA67wMFrjWOOd4,1203
|
|
299
|
-
autobyteus/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
300
|
-
autobyteus/utils/dynamic_enum.py,sha256=c_mgKtKrjb958LlCWeAApl1LMvVB7U_0SWl-8XFhRag,1339
|
|
301
|
-
autobyteus/utils/file_utils.py,sha256=QK0LvrwA5c9FDjpSrfPPEQbu_AirteJNiLad9yRahDY,512
|
|
302
|
-
autobyteus/utils/html_cleaner.py,sha256=mI2V83yFRfQe8NnN6fr6Ujpa0bPlq25NW5tTKaz2WGk,8672
|
|
303
|
-
autobyteus/utils/singleton.py,sha256=YVURj5nRcMtzwFPxgy6ic4MSe3IUXNf6XWYuiXyhDOg,814
|
|
304
|
-
autobyteus/workflow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
305
|
-
autobyteus/workflow/simple_task.py,sha256=CcEEfamaZk1pjkPG9TVmlvzMAeTznHvQncRIwgp48tI,3378
|
|
306
|
-
autobyteus/workflow/task.py,sha256=CYyPs8YvEwpWXcF4swJukPNuv6RRs3X-9UOnN6vG2Ko,5746
|
|
307
|
-
autobyteus/workflow/workflow.py,sha256=3PXZVtgnajGUAbZR22xht_2pU2WjYNmA1j0f5TkM3G0,1453
|
|
308
|
-
autobyteus-1.1.3.dist-info/licenses/LICENSE,sha256=Ompok_c8HRsXRwmax-pGR9OZRRxZC9RPp4JB6eTJd0M,1360
|
|
309
|
-
autobyteus-1.1.3.dist-info/METADATA,sha256=QhTUabynJyRHkjH3To4aT8dyH9j9DDR0zlgdDfXGYMo,6904
|
|
310
|
-
autobyteus-1.1.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
311
|
-
autobyteus-1.1.3.dist-info/top_level.txt,sha256=OeVeFlKcnysp6uMGe8TDaoFeuh4NUK4wZIfNjXCWKTE,11
|
|
312
|
-
autobyteus-1.1.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|