autobyteus 1.1.3__py3-none-any.whl → 1.1.4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- autobyteus/agent/agent.py +1 -1
- autobyteus/agent/bootstrap_steps/system_prompt_processing_step.py +4 -2
- autobyteus/agent/context/agent_config.py +36 -5
- autobyteus/agent/events/worker_event_dispatcher.py +1 -2
- autobyteus/agent/handlers/inter_agent_message_event_handler.py +1 -1
- autobyteus/agent/handlers/llm_user_message_ready_event_handler.py +2 -2
- autobyteus/agent/handlers/tool_result_event_handler.py +48 -20
- autobyteus/agent/handlers/user_input_message_event_handler.py +1 -1
- autobyteus/agent/input_processor/__init__.py +1 -7
- autobyteus/agent/message/context_file_type.py +6 -0
- autobyteus/agent/message/send_message_to.py +68 -99
- autobyteus/agent/phases/discover.py +2 -1
- autobyteus/agent/runtime/agent_worker.py +1 -0
- autobyteus/agent/tool_execution_result_processor/__init__.py +9 -0
- autobyteus/agent/tool_execution_result_processor/base_processor.py +46 -0
- autobyteus/agent/tool_execution_result_processor/processor_definition.py +36 -0
- autobyteus/agent/tool_execution_result_processor/processor_meta.py +36 -0
- autobyteus/agent/tool_execution_result_processor/processor_registry.py +70 -0
- autobyteus/agent/workspace/base_workspace.py +17 -2
- autobyteus/cli/__init__.py +1 -1
- autobyteus/cli/cli_display.py +1 -1
- autobyteus/cli/workflow_tui/__init__.py +4 -0
- autobyteus/cli/workflow_tui/app.py +210 -0
- autobyteus/cli/workflow_tui/state.py +189 -0
- autobyteus/cli/workflow_tui/widgets/__init__.py +6 -0
- autobyteus/cli/workflow_tui/widgets/agent_list_sidebar.py +149 -0
- autobyteus/cli/workflow_tui/widgets/focus_pane.py +335 -0
- autobyteus/cli/workflow_tui/widgets/logo.py +27 -0
- autobyteus/cli/workflow_tui/widgets/renderables.py +70 -0
- autobyteus/cli/workflow_tui/widgets/shared.py +51 -0
- autobyteus/cli/workflow_tui/widgets/status_bar.py +14 -0
- autobyteus/events/event_types.py +3 -0
- autobyteus/llm/api/lmstudio_llm.py +37 -0
- autobyteus/llm/api/openai_compatible_llm.py +20 -3
- autobyteus/llm/llm_factory.py +2 -0
- autobyteus/llm/lmstudio_provider.py +89 -0
- autobyteus/llm/providers.py +1 -0
- autobyteus/llm/token_counter/token_counter_factory.py +2 -0
- autobyteus/tools/__init__.py +2 -0
- autobyteus/tools/ask_user_input.py +2 -1
- autobyteus/tools/bash/bash_executor.py +2 -1
- autobyteus/tools/browser/session_aware/browser_session_aware_navigate_to.py +2 -0
- autobyteus/tools/browser/session_aware/browser_session_aware_web_element_trigger.py +3 -0
- autobyteus/tools/browser/session_aware/browser_session_aware_webpage_reader.py +3 -0
- autobyteus/tools/browser/session_aware/browser_session_aware_webpage_screenshot_taker.py +3 -0
- autobyteus/tools/browser/standalone/google_search_ui.py +2 -0
- autobyteus/tools/browser/standalone/navigate_to.py +2 -0
- autobyteus/tools/browser/standalone/web_page_pdf_generator.py +3 -0
- autobyteus/tools/browser/standalone/webpage_image_downloader.py +3 -0
- autobyteus/tools/browser/standalone/webpage_reader.py +2 -0
- autobyteus/tools/browser/standalone/webpage_screenshot_taker.py +3 -0
- autobyteus/tools/file/file_reader.py +36 -9
- autobyteus/tools/file/file_writer.py +37 -9
- autobyteus/tools/functional_tool.py +5 -4
- autobyteus/tools/image_downloader.py +2 -0
- autobyteus/tools/mcp/tool_registrar.py +3 -1
- autobyteus/tools/pdf_downloader.py +2 -1
- autobyteus/tools/registry/tool_definition.py +12 -8
- autobyteus/tools/registry/tool_registry.py +50 -2
- autobyteus/tools/timer.py +2 -0
- autobyteus/tools/tool_category.py +14 -4
- autobyteus/tools/tool_meta.py +6 -1
- autobyteus/tools/tool_origin.py +10 -0
- autobyteus/workflow/agentic_workflow.py +93 -0
- autobyteus/{agent/workflow → workflow}/base_agentic_workflow.py +19 -27
- autobyteus/workflow/bootstrap_steps/__init__.py +20 -0
- autobyteus/workflow/bootstrap_steps/agent_tool_injection_step.py +34 -0
- autobyteus/workflow/bootstrap_steps/base_workflow_bootstrap_step.py +23 -0
- autobyteus/workflow/bootstrap_steps/coordinator_initialization_step.py +41 -0
- autobyteus/workflow/bootstrap_steps/coordinator_prompt_preparation_step.py +108 -0
- autobyteus/workflow/bootstrap_steps/workflow_bootstrapper.py +50 -0
- autobyteus/workflow/bootstrap_steps/workflow_runtime_queue_initialization_step.py +25 -0
- autobyteus/workflow/context/__init__.py +17 -0
- autobyteus/workflow/context/team_manager.py +147 -0
- autobyteus/workflow/context/workflow_config.py +30 -0
- autobyteus/workflow/context/workflow_context.py +61 -0
- autobyteus/workflow/context/workflow_node_config.py +76 -0
- autobyteus/workflow/context/workflow_runtime_state.py +53 -0
- autobyteus/workflow/events/__init__.py +29 -0
- autobyteus/workflow/events/workflow_event_dispatcher.py +39 -0
- autobyteus/workflow/events/workflow_events.py +53 -0
- autobyteus/workflow/events/workflow_input_event_queue_manager.py +21 -0
- autobyteus/workflow/exceptions.py +8 -0
- autobyteus/workflow/factory/__init__.py +9 -0
- autobyteus/workflow/factory/workflow_factory.py +99 -0
- autobyteus/workflow/handlers/__init__.py +19 -0
- autobyteus/workflow/handlers/base_workflow_event_handler.py +16 -0
- autobyteus/workflow/handlers/inter_agent_message_request_event_handler.py +61 -0
- autobyteus/workflow/handlers/lifecycle_workflow_event_handler.py +27 -0
- autobyteus/workflow/handlers/process_user_message_event_handler.py +46 -0
- autobyteus/workflow/handlers/tool_approval_workflow_event_handler.py +39 -0
- autobyteus/workflow/handlers/workflow_event_handler_registry.py +23 -0
- autobyteus/workflow/phases/__init__.py +11 -0
- autobyteus/workflow/phases/workflow_operational_phase.py +19 -0
- autobyteus/workflow/phases/workflow_phase_manager.py +48 -0
- autobyteus/workflow/runtime/__init__.py +13 -0
- autobyteus/workflow/runtime/workflow_runtime.py +82 -0
- autobyteus/workflow/runtime/workflow_worker.py +117 -0
- autobyteus/workflow/shutdown_steps/__init__.py +17 -0
- autobyteus/workflow/shutdown_steps/agent_team_shutdown_step.py +42 -0
- autobyteus/workflow/shutdown_steps/base_workflow_shutdown_step.py +16 -0
- autobyteus/workflow/shutdown_steps/bridge_cleanup_step.py +28 -0
- autobyteus/workflow/shutdown_steps/sub_workflow_shutdown_step.py +41 -0
- autobyteus/workflow/shutdown_steps/workflow_shutdown_orchestrator.py +35 -0
- autobyteus/workflow/streaming/__init__.py +26 -0
- autobyteus/workflow/streaming/agent_event_bridge.py +48 -0
- autobyteus/workflow/streaming/agent_event_multiplexer.py +70 -0
- autobyteus/workflow/streaming/workflow_event_bridge.py +50 -0
- autobyteus/workflow/streaming/workflow_event_notifier.py +83 -0
- autobyteus/workflow/streaming/workflow_event_stream.py +33 -0
- autobyteus/workflow/streaming/workflow_stream_event_payloads.py +28 -0
- autobyteus/workflow/streaming/workflow_stream_events.py +45 -0
- autobyteus/workflow/utils/__init__.py +9 -0
- autobyteus/workflow/utils/wait_for_idle.py +46 -0
- autobyteus/workflow/workflow_builder.py +151 -0
- {autobyteus-1.1.3.dist-info → autobyteus-1.1.4.dist-info}/METADATA +16 -14
- {autobyteus-1.1.3.dist-info → autobyteus-1.1.4.dist-info}/RECORD +134 -65
- {autobyteus-1.1.3.dist-info → autobyteus-1.1.4.dist-info}/top_level.txt +1 -0
- examples/__init__.py +1 -0
- examples/discover_phase_transitions.py +104 -0
- examples/run_browser_agent.py +260 -0
- examples/run_google_slides_agent.py +286 -0
- examples/run_mcp_browser_client.py +174 -0
- examples/run_mcp_google_slides_client.py +270 -0
- examples/run_mcp_list_tools.py +189 -0
- examples/run_poem_writer.py +274 -0
- examples/run_sqlite_agent.py +293 -0
- examples/workflow/__init__.py +1 -0
- examples/workflow/run_basic_research_workflow.py +189 -0
- examples/workflow/run_code_review_workflow.py +269 -0
- examples/workflow/run_debate_workflow.py +212 -0
- examples/workflow/run_workflow_with_tui.py +153 -0
- autobyteus/agent/context/agent_phase_manager.py +0 -264
- autobyteus/agent/context/phases.py +0 -49
- autobyteus/agent/group/__init__.py +0 -0
- autobyteus/agent/group/agent_group.py +0 -164
- autobyteus/agent/group/agent_group_context.py +0 -81
- autobyteus/agent/input_processor/content_prefixing_input_processor.py +0 -41
- autobyteus/agent/input_processor/metadata_appending_input_processor.py +0 -34
- autobyteus/agent/input_processor/passthrough_input_processor.py +0 -33
- autobyteus/agent/workflow/__init__.py +0 -11
- autobyteus/agent/workflow/agentic_workflow.py +0 -89
- autobyteus/tools/mcp/registrar.py +0 -202
- 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 → autobyteus-1.1.4.dist-info}/WHEEL +0 -0
- {autobyteus-1.1.3.dist-info → autobyteus-1.1.4.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
# file: autobyteus/autobyteus/workflow/workflow_builder.py
|
|
2
|
+
import logging
|
|
3
|
+
from typing import List, Optional, Dict, Union
|
|
4
|
+
|
|
5
|
+
from autobyteus.workflow.agentic_workflow import AgenticWorkflow
|
|
6
|
+
from autobyteus.workflow.context.workflow_config import WorkflowConfig
|
|
7
|
+
from autobyteus.workflow.context.workflow_node_config import WorkflowNodeConfig
|
|
8
|
+
from autobyteus.agent.context.agent_config import AgentConfig
|
|
9
|
+
from autobyteus.workflow.factory.workflow_factory import WorkflowFactory
|
|
10
|
+
|
|
11
|
+
logger = logging.getLogger(__name__)
|
|
12
|
+
|
|
13
|
+
# Define a type hint for the possible definition types for clarity
|
|
14
|
+
NodeDefinition = Union[AgentConfig, WorkflowConfig]
|
|
15
|
+
|
|
16
|
+
class WorkflowBuilder:
|
|
17
|
+
"""
|
|
18
|
+
A fluent API for constructing and configuring an AgenticWorkflow.
|
|
19
|
+
|
|
20
|
+
This builder simplifies creating a workflow by abstracting away the manual
|
|
21
|
+
creation of config objects and providing an intuitive way to define the
|
|
22
|
+
agent and sub-workflow graph.
|
|
23
|
+
"""
|
|
24
|
+
def __init__(self, name: str, description: str, role: Optional[str] = None):
|
|
25
|
+
"""
|
|
26
|
+
Initializes the WorkflowBuilder.
|
|
27
|
+
|
|
28
|
+
Args:
|
|
29
|
+
name: A unique name for the workflow.
|
|
30
|
+
description: A high-level description of the workflow's goal.
|
|
31
|
+
role: An optional role description for when this workflow is used
|
|
32
|
+
as a sub-workflow within a parent.
|
|
33
|
+
"""
|
|
34
|
+
if not name or not isinstance(name, str):
|
|
35
|
+
raise ValueError("Workflow name must be a non-empty string.")
|
|
36
|
+
if not description or not isinstance(description, str):
|
|
37
|
+
raise ValueError("Workflow description must be a non-empty string.")
|
|
38
|
+
|
|
39
|
+
self._name = name
|
|
40
|
+
self._description = description
|
|
41
|
+
self._role = role
|
|
42
|
+
self._nodes: Dict[NodeDefinition, List[NodeDefinition]] = {}
|
|
43
|
+
self._coordinator_config: Optional[AgentConfig] = None
|
|
44
|
+
logger.info(f"WorkflowBuilder initialized for workflow: '{self._name}'.")
|
|
45
|
+
|
|
46
|
+
def add_agent_node(self, agent_config: AgentConfig, dependencies: Optional[List[NodeDefinition]] = None) -> 'WorkflowBuilder':
|
|
47
|
+
"""
|
|
48
|
+
Adds a regular agent node to the workflow.
|
|
49
|
+
|
|
50
|
+
Args:
|
|
51
|
+
agent_config: The configuration for the agent at this node.
|
|
52
|
+
dependencies: A list of AgentConfig or WorkflowConfig objects for nodes
|
|
53
|
+
that this node depends on. These must have been added previously.
|
|
54
|
+
|
|
55
|
+
Returns:
|
|
56
|
+
The builder instance for fluent chaining.
|
|
57
|
+
"""
|
|
58
|
+
self._add_node_internal(agent_config, dependencies)
|
|
59
|
+
return self
|
|
60
|
+
|
|
61
|
+
def add_workflow_node(self, workflow_config: WorkflowConfig, dependencies: Optional[List[NodeDefinition]] = None) -> 'WorkflowBuilder':
|
|
62
|
+
"""
|
|
63
|
+
Adds a sub-workflow node to the workflow.
|
|
64
|
+
|
|
65
|
+
Args:
|
|
66
|
+
workflow_config: The configuration for the sub-workflow.
|
|
67
|
+
dependencies: A list of AgentConfig or WorkflowConfig objects for nodes
|
|
68
|
+
that this node depends on. These must have been added previously.
|
|
69
|
+
|
|
70
|
+
Returns:
|
|
71
|
+
The builder instance for fluent chaining.
|
|
72
|
+
"""
|
|
73
|
+
self._add_node_internal(workflow_config, dependencies)
|
|
74
|
+
return self
|
|
75
|
+
|
|
76
|
+
def _add_node_internal(self, node_definition: NodeDefinition, dependencies: Optional[List[NodeDefinition]]):
|
|
77
|
+
"""Internal helper to add a node of any type."""
|
|
78
|
+
if not isinstance(node_definition, (AgentConfig, WorkflowConfig)):
|
|
79
|
+
raise TypeError("node_definition must be an instance of AgentConfig or WorkflowConfig.")
|
|
80
|
+
|
|
81
|
+
if node_definition in self._nodes or node_definition == self._coordinator_config:
|
|
82
|
+
raise ValueError(f"Node definition for '{node_definition.name}' has already been added to the workflow.")
|
|
83
|
+
|
|
84
|
+
if dependencies:
|
|
85
|
+
for dep_config in dependencies:
|
|
86
|
+
if dep_config not in self._nodes and dep_config != self._coordinator_config:
|
|
87
|
+
raise ValueError(f"Dependency node '{dep_config.name}' must be added to the builder before being used as a dependency.")
|
|
88
|
+
|
|
89
|
+
self._nodes[node_definition] = dependencies or []
|
|
90
|
+
node_type = "Sub-workflow" if isinstance(node_definition, WorkflowConfig) else "Agent"
|
|
91
|
+
logger.debug(f"Added {node_type} node '{node_definition.name}' to builder with {len(dependencies or [])} dependencies.")
|
|
92
|
+
|
|
93
|
+
def set_coordinator(self, agent_config: AgentConfig) -> 'WorkflowBuilder':
|
|
94
|
+
"""
|
|
95
|
+
Sets the coordinator agent for the workflow. A coordinator must be an agent.
|
|
96
|
+
|
|
97
|
+
Args:
|
|
98
|
+
agent_config: The configuration for the coordinator agent.
|
|
99
|
+
|
|
100
|
+
Returns:
|
|
101
|
+
The builder instance for fluent chaining.
|
|
102
|
+
"""
|
|
103
|
+
if self._coordinator_config is not None:
|
|
104
|
+
raise ValueError("A coordinator has already been set for this workflow.")
|
|
105
|
+
|
|
106
|
+
if not isinstance(agent_config, AgentConfig):
|
|
107
|
+
raise TypeError("Coordinator must be an instance of AgentConfig.")
|
|
108
|
+
|
|
109
|
+
self._coordinator_config = agent_config
|
|
110
|
+
logger.debug(f"Set coordinator for workflow to '{agent_config.name}'.")
|
|
111
|
+
return self
|
|
112
|
+
|
|
113
|
+
def build(self) -> AgenticWorkflow:
|
|
114
|
+
"""
|
|
115
|
+
Constructs and returns the final AgenticWorkflow instance using the
|
|
116
|
+
singleton WorkflowFactory.
|
|
117
|
+
"""
|
|
118
|
+
logger.info("Building AgenticWorkflow from builder...")
|
|
119
|
+
if self._coordinator_config is None:
|
|
120
|
+
raise ValueError("Cannot build workflow: A coordinator must be set.")
|
|
121
|
+
|
|
122
|
+
node_map: Dict[NodeDefinition, WorkflowNodeConfig] = {}
|
|
123
|
+
all_definitions = list(self._nodes.keys()) + [self._coordinator_config]
|
|
124
|
+
|
|
125
|
+
for definition in all_definitions:
|
|
126
|
+
node_map[definition] = WorkflowNodeConfig(node_definition=definition)
|
|
127
|
+
|
|
128
|
+
all_nodes_with_deps = self._nodes.copy()
|
|
129
|
+
all_nodes_with_deps[self._coordinator_config] = [] # Coordinator has no explicit deps in this model
|
|
130
|
+
|
|
131
|
+
for node_def, dep_defs in all_nodes_with_deps.items():
|
|
132
|
+
if node_def in node_map and dep_defs:
|
|
133
|
+
current_node = node_map[node_def]
|
|
134
|
+
dependency_nodes = [node_map[dep_def] for dep_def in dep_defs]
|
|
135
|
+
current_node.dependencies = tuple(dependency_nodes)
|
|
136
|
+
|
|
137
|
+
final_nodes = list(node_map.values())
|
|
138
|
+
coordinator_node_instance = node_map[self._coordinator_config]
|
|
139
|
+
|
|
140
|
+
workflow_config = WorkflowConfig(
|
|
141
|
+
name=self._name,
|
|
142
|
+
description=self._description,
|
|
143
|
+
role=self._role,
|
|
144
|
+
nodes=tuple(final_nodes),
|
|
145
|
+
coordinator_node=coordinator_node_instance
|
|
146
|
+
)
|
|
147
|
+
|
|
148
|
+
logger.info(f"WorkflowConfig created successfully. Name: '{workflow_config.name}'. Total nodes: {len(final_nodes)}. Coordinator: '{coordinator_node_instance.name}'.")
|
|
149
|
+
|
|
150
|
+
factory = WorkflowFactory()
|
|
151
|
+
return factory.create_workflow(config=workflow_config)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: autobyteus
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.4
|
|
4
4
|
Summary: Multi-Agent framework
|
|
5
5
|
Home-page: https://github.com/AutoByteus/autobyteus
|
|
6
6
|
Author: Ryan Zheng
|
|
@@ -14,26 +14,28 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
14
14
|
Requires-Python: >=3.8
|
|
15
15
|
Description-Content-Type: text/markdown
|
|
16
16
|
License-File: LICENSE
|
|
17
|
+
Requires-Dist: aiohttp
|
|
18
|
+
Requires-Dist: anthropic==0.37.1
|
|
19
|
+
Requires-Dist: autobyteus-llm-client==1.1.1
|
|
17
20
|
Requires-Dist: beautifulsoup4>=4.12.2
|
|
18
|
-
Requires-Dist: openai
|
|
19
|
-
Requires-Dist: requests
|
|
20
|
-
Requires-Dist: tiktoken==0.7.0
|
|
21
|
-
Requires-Dist: google-api-python-client
|
|
22
|
-
Requires-Dist: google-generativeai
|
|
23
|
-
Requires-Dist: mistralai
|
|
24
21
|
Requires-Dist: boto3
|
|
25
22
|
Requires-Dist: botocore
|
|
26
|
-
Requires-Dist:
|
|
23
|
+
Requires-Dist: brui-core==1.0.8
|
|
24
|
+
Requires-Dist: certifi==2025.4.26
|
|
25
|
+
Requires-Dist: google-api-python-client
|
|
26
|
+
Requires-Dist: google-generativeai
|
|
27
27
|
Requires-Dist: Jinja2
|
|
28
|
-
Requires-Dist:
|
|
28
|
+
Requires-Dist: mcp[cli]==1.9.1
|
|
29
29
|
Requires-Dist: mistral_common==1.6.3
|
|
30
|
+
Requires-Dist: mistralai
|
|
30
31
|
Requires-Dist: mistralai==1.5.2
|
|
31
|
-
Requires-Dist: certifi==2025.4.26
|
|
32
32
|
Requires-Dist: numpy==2.2.5
|
|
33
|
-
Requires-Dist:
|
|
34
|
-
Requires-Dist:
|
|
35
|
-
Requires-Dist:
|
|
36
|
-
Requires-Dist:
|
|
33
|
+
Requires-Dist: ollama
|
|
34
|
+
Requires-Dist: openai
|
|
35
|
+
Requires-Dist: requests
|
|
36
|
+
Requires-Dist: rich
|
|
37
|
+
Requires-Dist: textual
|
|
38
|
+
Requires-Dist: tiktoken==0.7.0
|
|
37
39
|
Provides-Extra: dev
|
|
38
40
|
Requires-Dist: coverage; extra == "dev"
|
|
39
41
|
Requires-Dist: flake8; extra == "dev"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
autobyteus/__init__.py,sha256=ij7pzJD0e838u_nQIypAlXkJQgUkcB898Gqw2Dovv-s,110
|
|
2
2
|
autobyteus/check_requirements.py,sha256=nLWmqMlGiAToQuub68IpL2EhRxFZ1CyCwRCMi2C5hrY,853
|
|
3
3
|
autobyteus/agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
autobyteus/agent/agent.py,sha256=
|
|
4
|
+
autobyteus/agent/agent.py,sha256=OLHU73lGlfbrwqke3cpnY8HE5zZEvYb0Cqqsxu_LKD0,4926
|
|
5
5
|
autobyteus/agent/exceptions.py,sha256=tfXvey5SkT70X6kcu29o8YO91KB0hI9_uLrba91_G2s,237
|
|
6
6
|
autobyteus/agent/remote_agent.py,sha256=DPhAWobptj82HZaACbtLkXQBYIotgr3yZ6u4D9TJmeE,14458
|
|
7
7
|
autobyteus/agent/tool_invocation.py,sha256=Kt1ge4kUGzC5f6ONdoBNGDUr9OwSAIEKmGFrtGzjewM,2312
|
|
@@ -10,47 +10,39 @@ autobyteus/agent/bootstrap_steps/agent_bootstrapper.py,sha256=tPxD4yQ_i3-rl9XOGa
|
|
|
10
10
|
autobyteus/agent/bootstrap_steps/agent_runtime_queue_initialization_step.py,sha256=wulFdVAwR4jTZtJgHwLYf07r76KKCKpwa1Cho2AqjSw,3265
|
|
11
11
|
autobyteus/agent/bootstrap_steps/base_bootstrap_step.py,sha256=8XaGHJva2Fo4T3fACK36FbEcrblj105oVhffYFEQO1A,1349
|
|
12
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=
|
|
13
|
+
autobyteus/agent/bootstrap_steps/system_prompt_processing_step.py,sha256=uqJvnj8Mm_m43RsKwc_lQfHH1D2jEBbHFWbZcQZnQtc,5703
|
|
14
14
|
autobyteus/agent/bootstrap_steps/workspace_context_initialization_step.py,sha256=FMF9fhD6Wgas4TpQbSwKiL43OZBmwh_cAA3G_5jRJhM,2112
|
|
15
15
|
autobyteus/agent/context/__init__.py,sha256=7LXLRuI_9Por2g_B4p89jLG3rZeJ5OYlmTXkjT4OGBY,364
|
|
16
|
-
autobyteus/agent/context/agent_config.py,sha256=
|
|
16
|
+
autobyteus/agent/context/agent_config.py,sha256=m_Z5Os9hAGjVgAIyXp2AjueuccxnXtcjFdV526IqgHk,6586
|
|
17
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
18
|
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
19
|
autobyteus/agent/events/__init__.py,sha256=8AL83PBRLkEptTzPznn_XpGXq2-S56Yxx3WarNcsc3U,1507
|
|
22
20
|
autobyteus/agent/events/agent_events.py,sha256=plrBY3Cr_nUhrwvkpED_2qyPq2Slc0ciiupsWdPvmwo,3821
|
|
23
21
|
autobyteus/agent/events/agent_input_event_queue_manager.py,sha256=VfynrdVSPkKEH94yg9p1WBOoV52JQX8MRJhJ-GU7fcY,10461
|
|
24
22
|
autobyteus/agent/events/notifiers.py,sha256=UTLFC2OeBMftku97rAFSZU8J12Ji8s4iPeEZTovyEBQ,7455
|
|
25
|
-
autobyteus/agent/events/worker_event_dispatcher.py,sha256=
|
|
23
|
+
autobyteus/agent/events/worker_event_dispatcher.py,sha256=wE63Qq4gw0JhkxvpuvbxUJHhbjzKSfhinjuF6epfR04,6165
|
|
26
24
|
autobyteus/agent/factory/__init__.py,sha256=4_PxMM-S_BRuYoQBHIffY6bXpBdEv-zFyuB6YaK93Yw,204
|
|
27
25
|
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
26
|
autobyteus/agent/handlers/__init__.py,sha256=UFIEqdaET3zTYnHJAJpjiSVS9euWqQuaVMlVTN6dyAY,1510
|
|
32
27
|
autobyteus/agent/handlers/approved_tool_invocation_event_handler.py,sha256=ND9XzSXIQOaj16AOs37gaPGGSgU1BXRK7CrWK_-wL8Y,7857
|
|
33
28
|
autobyteus/agent/handlers/base_event_handler.py,sha256=G2vtFJT_vyObWTgrgwIgRwOssBQ-6A3gxHtc7S4SEuQ,1264
|
|
34
29
|
autobyteus/agent/handlers/event_handler_registry.py,sha256=95BCsKtxKFFSsliSJOCb6nw10TMbiRK2qM366DDuZKM,3474
|
|
35
30
|
autobyteus/agent/handlers/generic_event_handler.py,sha256=759BrDJI-sesY74YN3CX3OfTM44vLGyj6Sg1gd8eJ_w,1888
|
|
36
|
-
autobyteus/agent/handlers/inter_agent_message_event_handler.py,sha256=
|
|
31
|
+
autobyteus/agent/handlers/inter_agent_message_event_handler.py,sha256=cPofsprTTbWHfVNJkvjn_0VTLQ7pTzuCEMM1BgWzTF8,3286
|
|
37
32
|
autobyteus/agent/handlers/lifecycle_event_logger.py,sha256=-j5GhlCPauPwJMUOMUL53__wweZTsamhYXNbvQklnoY,2656
|
|
38
33
|
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=
|
|
34
|
+
autobyteus/agent/handlers/llm_user_message_ready_event_handler.py,sha256=hUy4lSOMmTFWNZwtCGB4JWdhurUe49yr6Mf5p4RTNcs,7666
|
|
40
35
|
autobyteus/agent/handlers/tool_execution_approval_event_handler.py,sha256=Tda_LrlIPbEwVzf1I6u4Vb9sPmAbGQRqT_2-Q9ukLhw,4489
|
|
41
36
|
autobyteus/agent/handlers/tool_invocation_request_event_handler.py,sha256=AjNGQgRCQkjXvYThd_AaPj0Lzh1adEkhYJO83alxVAY,10957
|
|
42
|
-
autobyteus/agent/handlers/tool_result_event_handler.py,sha256
|
|
43
|
-
autobyteus/agent/handlers/user_input_message_event_handler.py,sha256=
|
|
37
|
+
autobyteus/agent/handlers/tool_result_event_handler.py,sha256=CXsEHVWJ9PJCD8d1E7ytTzQCnApJxk9bj3j6OfEvQ_A,7341
|
|
38
|
+
autobyteus/agent/handlers/user_input_message_event_handler.py,sha256=i_ltYlS3ELgZ-ymXviD4h9S2h24pOFV5EO5coaqNkXQ,4224
|
|
44
39
|
autobyteus/agent/hooks/__init__.py,sha256=a1do0Ribb2Hpf9t0Xqxhf3Ls7R6EQuWJtfTGQK7VjUM,495
|
|
45
40
|
autobyteus/agent/hooks/base_phase_hook.py,sha256=7JU3FgPzX06Yg6eJgB4GXzXcaWTpOcEMmyw5Ku0mwJk,2040
|
|
46
41
|
autobyteus/agent/hooks/hook_definition.py,sha256=4aA4iZnxMnw9n6sGThD-kCt3JPQSjPQDCd5D7Q7uzQs,1273
|
|
47
42
|
autobyteus/agent/hooks/hook_meta.py,sha256=QHqEDug46EgDHrZYyacdXkFhnE39Zq2oPbgBgB27E6I,1590
|
|
48
43
|
autobyteus/agent/hooks/hook_registry.py,sha256=j0EXgv-cVYacFePNur_yrPhx8aH5OFdINxg2U_Y3Xr4,4410
|
|
49
|
-
autobyteus/agent/input_processor/__init__.py,sha256=
|
|
44
|
+
autobyteus/agent/input_processor/__init__.py,sha256=uyxNlVWQXkHshNFp-9MkjRjMK0f7Ve0Mjx_d-q8C8Ic,330
|
|
50
45
|
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
46
|
autobyteus/agent/input_processor/processor_definition.py,sha256=ISRHvjbBhlG2DYdgSK4hN3i8w1DJkgPOvCDY06TuslQ,2101
|
|
55
47
|
autobyteus/agent/input_processor/processor_meta.py,sha256=Ns_VcPbK4-xLlpbdFIC_xWfgoXDHVduVTNN7EUCUPgU,2241
|
|
56
48
|
autobyteus/agent/input_processor/processor_registry.py,sha256=uIDttiadUSO-1QO0Qmjmc-YkKKnrYXsjxRLNj7ihzco,5049
|
|
@@ -63,12 +55,12 @@ autobyteus/agent/llm_response_processor/provider_aware_tool_usage_processor.py,s
|
|
|
63
55
|
autobyteus/agent/message/__init__.py,sha256=xRs_zyqW1e_Z6R2hu8bGj6sB5s86ZgQQMDkqoRE9kGY,681
|
|
64
56
|
autobyteus/agent/message/agent_input_user_message.py,sha256=NCy-1CjB4SFj4O05cH6HyC-lK-nZaspUh7bc3iwemD8,4838
|
|
65
57
|
autobyteus/agent/message/context_file.py,sha256=VCwuN9qWKUHe1sZOWKQMwnbj1DzaeyfbML9wXU8SIL8,3376
|
|
66
|
-
autobyteus/agent/message/context_file_type.py,sha256=
|
|
58
|
+
autobyteus/agent/message/context_file_type.py,sha256=wpfL0o-0DU33uwS3Ufgc3eqFNiOfH7YgQVQuTRvTROQ,2541
|
|
67
59
|
autobyteus/agent/message/inter_agent_message.py,sha256=302oAt5PdrAqS1Cz80o7G6Kk3Ur1D9JNxze7Q0NI3dM,2436
|
|
68
60
|
autobyteus/agent/message/inter_agent_message_type.py,sha256=l-j0WB4F6yRXSSnHRKzNfmwnL4wX3usPN0JIrQthyEA,1130
|
|
69
|
-
autobyteus/agent/message/send_message_to.py,sha256=
|
|
61
|
+
autobyteus/agent/message/send_message_to.py,sha256=vWYOO4iNDdrqRo3KrUd8LE-AEqN_bjhbfcCtKQ_p2y8,5520
|
|
70
62
|
autobyteus/agent/phases/__init__.py,sha256=OC0T294mOGUk6pudSVLslHtfziBJEYd_VoA-LgWo9oE,558
|
|
71
|
-
autobyteus/agent/phases/discover.py,sha256=
|
|
63
|
+
autobyteus/agent/phases/discover.py,sha256=YuW0I8PyGysiyAf3jfR-cVesgSH5zi78uYZKqnM6dGU,1993
|
|
72
64
|
autobyteus/agent/phases/manager.py,sha256=-K3trAbDyXweGUxtgKPuUjQh7Cr2oFswR9KwhisT128,15604
|
|
73
65
|
autobyteus/agent/phases/phase_enum.py,sha256=Ubd_fraZxYRJUM7DdeLEjL0Vvm1RzBcCuOUgVKHBELE,2882
|
|
74
66
|
autobyteus/agent/phases/transition_decorator.py,sha256=jiby_dzeytKGQFjnTQYQ1gziYh7F-2RnShajpHWWhFQ,1553
|
|
@@ -76,7 +68,7 @@ autobyteus/agent/phases/transition_info.py,sha256=wqA_ANUbDzjsgESUtgH4svVczPA6-L
|
|
|
76
68
|
autobyteus/agent/runtime/__init__.py,sha256=VQLu_-t86WkvLKEnGmbPksP53CrqgchqY8eB-DS-SsI,457
|
|
77
69
|
autobyteus/agent/runtime/agent_runtime.py,sha256=cGN9_kNQcgbG6HTZNkBFv5-xeod6Z5wBTeZCzrTVX9o,6483
|
|
78
70
|
autobyteus/agent/runtime/agent_thread_pool_manager.py,sha256=-dyo3LQ4Mi1upUyyp-8EmQuRXWamIcESc1-WCVSS0dM,3607
|
|
79
|
-
autobyteus/agent/runtime/agent_worker.py,sha256=
|
|
71
|
+
autobyteus/agent/runtime/agent_worker.py,sha256=xGHjMMgDjTykIm5yBfIc1x0ylCGh8UQ1ITmoWyCKyZQ,11264
|
|
80
72
|
autobyteus/agent/shutdown_steps/__init__.py,sha256=583P5F3eBdqkmwBlnqua0PBZjHpnsfNEZgGxFw3x-4o,574
|
|
81
73
|
autobyteus/agent/shutdown_steps/agent_shutdown_orchestrator.py,sha256=5y8Ynm0zDbV00NkiJ4XNoM9U7T0vEp5E_fkUt4pTAVI,2475
|
|
82
74
|
autobyteus/agent/shutdown_steps/base_shutdown_step.py,sha256=YqHMD4opVvjCHHZdD38SxxJLhfAHL5523DNymUNHiD4,1083
|
|
@@ -93,32 +85,45 @@ autobyteus/agent/system_prompt_processor/processor_definition.py,sha256=r2ry7igU
|
|
|
93
85
|
autobyteus/agent/system_prompt_processor/processor_meta.py,sha256=aQLo0WE58HVQf4lkDxej2Lz4XFLWddUd24ZPWscnsyo,2356
|
|
94
86
|
autobyteus/agent/system_prompt_processor/processor_registry.py,sha256=VjjFiQ2z3Sxb_ZBVJ1omCcqompA2ttN815YEnx0R2lE,5007
|
|
95
87
|
autobyteus/agent/system_prompt_processor/tool_manifest_injector_processor.py,sha256=9p1HWI6DyK5-82ij6d7bPI8QHlxYcr9B4dZZG-X5Lrg,4087
|
|
88
|
+
autobyteus/agent/tool_execution_result_processor/__init__.py,sha256=GKiNSMvVvwuBce0z1wEUaf48NOzOqugzvB5Utxt8w7w,286
|
|
89
|
+
autobyteus/agent/tool_execution_result_processor/base_processor.py,sha256=0X_0W5dEYBZmWzVp6iiBwTCb0Gdm1Om_PxcoOyIHuW4,1546
|
|
90
|
+
autobyteus/agent/tool_execution_result_processor/processor_definition.py,sha256=Zr5a-DwKNdYuSO-UAD2R6Rg686YQAin5FhA6pWnxUVQ,1555
|
|
91
|
+
autobyteus/agent/tool_execution_result_processor/processor_meta.py,sha256=uUSvKeVVg6lq8aTCTvkKQjWlEOB2l0cn4FheC4s2hp8,1772
|
|
92
|
+
autobyteus/agent/tool_execution_result_processor/processor_registry.py,sha256=On8KGadeN17RCst3HuVPCPV5dbdG0raufpqwvUOv06I,2955
|
|
96
93
|
autobyteus/agent/utils/__init__.py,sha256=vau-Zjww0qxPyo9SetL7aLUEw-99PX8Nv8TEDngUlKs,210
|
|
97
94
|
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
95
|
autobyteus/agent/workspace/__init__.py,sha256=7a16HpWxic9zxxsmZeICnBGHK_Z2K9yJUv4z9YELKfw,277
|
|
102
|
-
autobyteus/agent/workspace/base_workspace.py,sha256=
|
|
96
|
+
autobyteus/agent/workspace/base_workspace.py,sha256=Kw9EZ_5iyatlf69VQaUf8nKgRjGxBef4VctLocLzHG0,3569
|
|
103
97
|
autobyteus/agent/workspace/workspace_config.py,sha256=UfDpOkCH5B7ddt227zoQdmq8bCvI0wTL9vPAB6tOH24,5571
|
|
104
98
|
autobyteus/agent/workspace/workspace_definition.py,sha256=l959gPAVSF17ym9P4y7vf4LuiibcVzom2y0AEmQT7Ak,1476
|
|
105
99
|
autobyteus/agent/workspace/workspace_meta.py,sha256=xuw1-lYQiK5YyyDDc_5uT3uOGL0FfwLC8zCQiSyyQro,1680
|
|
106
100
|
autobyteus/agent/workspace/workspace_registry.py,sha256=A_wADwvZOm1XutBgkn_-FBkqb4tS1fRtALrKe2XRDhw,3182
|
|
107
|
-
autobyteus/cli/__init__.py,sha256=
|
|
101
|
+
autobyteus/cli/__init__.py,sha256=FpcugZofPrQzll16-OFcDypbven0J2mBPxNVgQ3eAxY,266
|
|
108
102
|
autobyteus/cli/agent_cli.py,sha256=Ua6MnuVHmNgelnZQ8B8ZMFk2nyN-VNPijNzyucVVPis,4818
|
|
109
|
-
autobyteus/cli/cli_display.py,sha256=
|
|
103
|
+
autobyteus/cli/cli_display.py,sha256=F0mBDnaqmQJCfhqO-ccVxd_UGklCRuNoGZ4aa8ApMKs,9493
|
|
104
|
+
autobyteus/cli/workflow_tui/__init__.py,sha256=xbWMXwK_a-IX-dM3m1TJkm9SHT--bqiHVgkS5XCA6vM,127
|
|
105
|
+
autobyteus/cli/workflow_tui/app.py,sha256=DZPHPIrjz5-YBxwybDylokemtzqO9Ac49hdhkBdXCwQ,9681
|
|
106
|
+
autobyteus/cli/workflow_tui/state.py,sha256=JA3MOGpV25yin6dMO8AWRLSOgCEcd5oKtfNROU8RavM,9477
|
|
107
|
+
autobyteus/cli/workflow_tui/widgets/__init__.py,sha256=CsygQhYM_MoTURsJ9PpkZi_yXy-9g7Z8WQdNZ3BfD9E,169
|
|
108
|
+
autobyteus/cli/workflow_tui/widgets/agent_list_sidebar.py,sha256=qL3jZGsQuc-76fMESpsixD32dwOt5RH0Z0mS0QNECps,6626
|
|
109
|
+
autobyteus/cli/workflow_tui/widgets/focus_pane.py,sha256=ynqALGeViHqF2ZadidzStf1jnixdyqRAEw7A3YrQTbg,16756
|
|
110
|
+
autobyteus/cli/workflow_tui/widgets/logo.py,sha256=TvfxdBvDXknf7-2vD3xkHuZkiymhMDFaJaCLl2y7msI,906
|
|
111
|
+
autobyteus/cli/workflow_tui/widgets/renderables.py,sha256=hkRTjwz5DPSqaO8_8Zuvt1XxxAePZ9vGp582b3UMF18,3030
|
|
112
|
+
autobyteus/cli/workflow_tui/widgets/shared.py,sha256=vXUrJ0vU7gMLzi7j8mAdhSMgPMno1LanhHxkeyMOQtA,1732
|
|
113
|
+
autobyteus/cli/workflow_tui/widgets/status_bar.py,sha256=PLkw2IxJ4T2cDt-3HKRhnIme4luYIvXr1HpBVmfJH1c,455
|
|
110
114
|
autobyteus/events/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
111
115
|
autobyteus/events/event_emitter.py,sha256=WKKwISFo2yDx0OpLjGFtXEl3DVV1siB0lXdndIAHhBg,2522
|
|
112
116
|
autobyteus/events/event_manager.py,sha256=c5RMlCtKzkHgQZkePBvqxPAxxOu-NapUrl8c2oRDkT8,5841
|
|
113
|
-
autobyteus/events/event_types.py,sha256=
|
|
117
|
+
autobyteus/events/event_types.py,sha256=8-ekBWBT08U8sBByAPNnaCMErkTQbkDZsMQOsblmM2I,2769
|
|
114
118
|
autobyteus/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
115
119
|
autobyteus/llm/autobyteus_provider.py,sha256=WCLUZM24UUB9Gl32WKgwoyXx41pnRXJiz-c9PpiC_C4,6747
|
|
116
120
|
autobyteus/llm/base_llm.py,sha256=XwVnihE6Qy6L8HPWUIXTKCYcKgoxYuw2Om8PivwlbU0,11597
|
|
117
|
-
autobyteus/llm/llm_factory.py,sha256=
|
|
121
|
+
autobyteus/llm/llm_factory.py,sha256=DCLK_H-mV7uQtdPt5KAMMYgW4RpWN-OMPLoj_lKJHac,16552
|
|
122
|
+
autobyteus/llm/lmstudio_provider.py,sha256=cydBTwsnT8MGzok8_5liHzq5YcK37fovOuY9czXASWg,3522
|
|
118
123
|
autobyteus/llm/models.py,sha256=Dg_1dLAOwJ9H1NJWnQ7GaTdYiX8_ESbh_tZN67dl8-I,5825
|
|
119
124
|
autobyteus/llm/ollama_provider.py,sha256=xInqOsZjHQ_1xzvO67vAR7NBausMeUCtRG1FY236lUQ,4230
|
|
120
125
|
autobyteus/llm/ollama_provider_resolver.py,sha256=O0eKyE6Lj6ozhyWV72sOb-A7Iw9cwFHsBjcD-HH6tHM,1774
|
|
121
|
-
autobyteus/llm/providers.py,sha256=
|
|
126
|
+
autobyteus/llm/providers.py,sha256=ws6NgD6467wxzKhb06oUqzZGQNLktzcdxViHxn9tjGo,354
|
|
122
127
|
autobyteus/llm/user_message.py,sha256=5FfDOKN-ohBhQy3mTTezv4zTAwcfmcyE0zODNCfRxdo,3200
|
|
123
128
|
autobyteus/llm/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
124
129
|
autobyteus/llm/api/autobyteus_llm.py,sha256=iJJ2luB1YVg0lEuS8nHPm8h1axouSGEGvoFk2g4o2jo,4896
|
|
@@ -129,10 +134,11 @@ autobyteus/llm/api/gemini_llm.py,sha256=pIH72Lodw5-w0XWKeybUza55cQ5BJChdgSzbWEVw
|
|
|
129
134
|
autobyteus/llm/api/grok_llm.py,sha256=oZIkJrRhbvcKSrho5hLWqqRxO5SUfbwutKW1g-mPQC0,875
|
|
130
135
|
autobyteus/llm/api/groq_llm.py,sha256=pq30UuR4NGVCVxMxcGTK2AVBTHtCymAi44hlkfvsXiY,3482
|
|
131
136
|
autobyteus/llm/api/kimi_llm.py,sha256=oUgmP_D0ppr0zKhgRVyjxRMP8cEMGXB2DFUgXYqRlCg,873
|
|
137
|
+
autobyteus/llm/api/lmstudio_llm.py,sha256=f0SDcX3U0MWI985DLwf73Z3uPNFP9XI6xMxRLdRZ584,1446
|
|
132
138
|
autobyteus/llm/api/mistral_llm.py,sha256=VdVqEXp5GdXZJQ7NVXmiV9AVDYltb3neqo2EugDIMds,5019
|
|
133
139
|
autobyteus/llm/api/nvidia_llm.py,sha256=jh1cz1zQtCVwYxFSFW9y6LXCW6rv8FdvjTCHvyoBzwc,3913
|
|
134
140
|
autobyteus/llm/api/ollama_llm.py,sha256=hOB4FciwLhivKEKL8_UXM_qVxFGD8gop0xtXbQkDHo0,5959
|
|
135
|
-
autobyteus/llm/api/openai_compatible_llm.py,sha256=
|
|
141
|
+
autobyteus/llm/api/openai_compatible_llm.py,sha256=JNfgEJMRGinieo7RwY9jrdM7qusGvorMsggtq7LQ5fM,8691
|
|
136
142
|
autobyteus/llm/api/openai_llm.py,sha256=414fWDFvTm7IkG3STfYCWT4mz1FQwEGnD4N5MpTyf6M,905
|
|
137
143
|
autobyteus/llm/extensions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
138
144
|
autobyteus/llm/extensions/base_extension.py,sha256=0HE-od2MxITaBMHCzIrnkQ6n40-0R7jxA7GxPFeJ8Gg,1322
|
|
@@ -145,7 +151,7 @@ autobyteus/llm/token_counter/deepseek_token_counter.py,sha256=YWCng71H6h5ZQX0Drj
|
|
|
145
151
|
autobyteus/llm/token_counter/kimi_token_counter.py,sha256=KuzgcbSWiqybCKHaukd-n917zEgUFebGXMAxlkZxue8,854
|
|
146
152
|
autobyteus/llm/token_counter/mistral_token_counter.py,sha256=YAUPqksnonTQRd1C7NjjFUPsjEDq_AKWxTc5GNTVGqU,4760
|
|
147
153
|
autobyteus/llm/token_counter/openai_token_counter.py,sha256=hGpKSo52NjtLKU8ZMHr76243wglFkfM9-ycSXJW-cwE,2811
|
|
148
|
-
autobyteus/llm/token_counter/token_counter_factory.py,sha256=
|
|
154
|
+
autobyteus/llm/token_counter/token_counter_factory.py,sha256=8lrIfKCOrhqKO96yhAuH24ilPuRMpMYgO-cdGeJU0qI,2102
|
|
149
155
|
autobyteus/llm/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
150
156
|
autobyteus/llm/utils/image_payload_formatter.py,sha256=2T21VK2Ql-AoxHGkfQGv2UX6CjMMBMzv1Hy4ekUdzfU,2661
|
|
151
157
|
autobyteus/llm/utils/llm_config.py,sha256=Q1_k0EnRqmUgbh9QeSs2F78fyPHA4cfVvJJE9iXQ2-w,9047
|
|
@@ -183,28 +189,29 @@ autobyteus/rpc/server/base_method_handler.py,sha256=6sKWucR1vUYeritjJPHIX_sCQOD2
|
|
|
183
189
|
autobyteus/rpc/server/method_handlers.py,sha256=Zqrr1R3yu_hVD0qCOPpxXm4ujkvdds9wCCneIeT3gU8,14702
|
|
184
190
|
autobyteus/rpc/server/sse_server_handler.py,sha256=3F1LNLw6fXcB08hmWOUhGZROYhpPdk8xwz2TakiR-2M,16273
|
|
185
191
|
autobyteus/rpc/server/stdio_server_handler.py,sha256=pSAvVtxyo0Hytzld7WINeKHvGBqEjp0Bad-xkY2Rul4,7398
|
|
186
|
-
autobyteus/tools/__init__.py,sha256=
|
|
187
|
-
autobyteus/tools/ask_user_input.py,sha256=
|
|
192
|
+
autobyteus/tools/__init__.py,sha256=82FKptxtN04HG_1YnnNnOzdpJKgKKhF7gAGdfkLLhNk,3004
|
|
193
|
+
autobyteus/tools/ask_user_input.py,sha256=2KHv7kRR9yyd5VKLgW-vJiE4HiYiFozHsVN4_5NhhdE,1649
|
|
188
194
|
autobyteus/tools/base_tool.py,sha256=x8Hjth7koJ6Brgi70phlm46K5SC9ofH4qokl4QqM9JQ,5159
|
|
189
|
-
autobyteus/tools/functional_tool.py,sha256=
|
|
190
|
-
autobyteus/tools/image_downloader.py,sha256=
|
|
195
|
+
autobyteus/tools/functional_tool.py,sha256=_WBv_mZCTIaekBwlOLiV8A7nLZhJiR-HYG6WJDij-eg,10393
|
|
196
|
+
autobyteus/tools/image_downloader.py,sha256=IQ-P1IBwLvbp8jyhtxLu54acWldJ6miFYkVIz7tHCMQ,4868
|
|
191
197
|
autobyteus/tools/parameter_schema.py,sha256=y_CJywuOO1o14lTtwaXAVOR3B55JZAKJyZ175v-EJsE,10818
|
|
192
|
-
autobyteus/tools/pdf_downloader.py,sha256=
|
|
193
|
-
autobyteus/tools/timer.py,sha256=
|
|
194
|
-
autobyteus/tools/tool_category.py,sha256=
|
|
198
|
+
autobyteus/tools/pdf_downloader.py,sha256=0WeznZhkYvXvgU2CH21q6LSVEQm8S1mAm7gtw_CjsJM,3927
|
|
199
|
+
autobyteus/tools/timer.py,sha256=hPei4QONtpdQrSS72_SNw6-j-gVd5NT2RScAhqMhRSY,7384
|
|
200
|
+
autobyteus/tools/tool_category.py,sha256=S1g-aE9eXod94evR8e-L7PfT0f17UUYSI9u663rPPZI,649
|
|
195
201
|
autobyteus/tools/tool_config.py,sha256=gnzGweccECNmCeufkzbskHeFOt3f0431DyAmMhqNVn4,3564
|
|
196
|
-
autobyteus/tools/tool_meta.py,sha256=
|
|
202
|
+
autobyteus/tools/tool_meta.py,sha256=X2JOY5fcPSvUMdgUQr0zTV5bRDuAmF7vuUMax5X5DhE,4417
|
|
203
|
+
autobyteus/tools/tool_origin.py,sha256=X1RqyDMWg2n7v0TciJHh5eiXgDDoU86BEQL3hx975jk,269
|
|
197
204
|
autobyteus/tools/tool_state.py,sha256=CwmEu7GTdaE72QIsdsXQu0AmTxQTp5hMncFcY58PkGo,746
|
|
198
205
|
autobyteus/tools/utils.py,sha256=PuHGlARmNx5HA2YFVF5XA36MoeAyFL6voK10S12AYS0,546
|
|
199
206
|
autobyteus/tools/bash/__init__.py,sha256=X38g3OVhlr-6aLIYfcSyh8DzqHAEh8dSzfEH1NEH7aw,99
|
|
200
|
-
autobyteus/tools/bash/bash_executor.py,sha256=
|
|
207
|
+
autobyteus/tools/bash/bash_executor.py,sha256=j8geFGcWh8pNfr0O_jrixGQBHJC9yZ5GFH32hNDmAAg,2230
|
|
201
208
|
autobyteus/tools/browser/__init__.py,sha256=fNt3qo9ykOIhfG7CmbelCabMydhPTWL-5timHXBa8ZI,91
|
|
202
209
|
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=
|
|
210
|
+
autobyteus/tools/browser/session_aware/browser_session_aware_navigate_to.py,sha256=RuBtv9OfqSXIlSlIdaNv5Pcv82_FPnaK510kdHwr9sM,3099
|
|
204
211
|
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=
|
|
206
|
-
autobyteus/tools/browser/session_aware/browser_session_aware_webpage_reader.py,sha256=
|
|
207
|
-
autobyteus/tools/browser/session_aware/browser_session_aware_webpage_screenshot_taker.py,sha256=
|
|
212
|
+
autobyteus/tools/browser/session_aware/browser_session_aware_web_element_trigger.py,sha256=lgZF4bIReUQjlsIWNlNk8za_-oo9nGiZafRvO1wa0FE,7014
|
|
213
|
+
autobyteus/tools/browser/session_aware/browser_session_aware_webpage_reader.py,sha256=Gltfx7xx7Ku0Jpyf8uKoRe7SBjAfajr1jBqXGUcZvOc,3996
|
|
214
|
+
autobyteus/tools/browser/session_aware/browser_session_aware_webpage_screenshot_taker.py,sha256=xm3M2-9xCZ4GjjUQYcCmIwb-xtw1cPqW94ar5x3l9SE,4711
|
|
208
215
|
autobyteus/tools/browser/session_aware/shared_browser_session.py,sha256=WjdkY6vrE96hluwHQS8U0K5z3XE8QMw2-fDRv5VFhXA,326
|
|
209
216
|
autobyteus/tools/browser/session_aware/shared_browser_session_manager.py,sha256=OAFzqLHWWxtVnU-zYGYFPLwiVTzhW7C6UA3y70-lBQU,1103
|
|
210
217
|
autobyteus/tools/browser/session_aware/web_element_action.py,sha256=jPWGmqoTB7Hpk6APQOWglLUaJmf5c_nR8Hh0AbT4fkM,477
|
|
@@ -213,12 +220,12 @@ autobyteus/tools/browser/session_aware/factory/browser_session_aware_web_element
|
|
|
213
220
|
autobyteus/tools/browser/session_aware/factory/browser_session_aware_webpage_reader_factory.py,sha256=WmW9yU_KVjvDNSlxWPkdXljM9h4-zZRoZH7GP6sQndA,1335
|
|
214
221
|
autobyteus/tools/browser/session_aware/factory/browser_session_aware_webpage_screenshot_taker_factory.py,sha256=uxv7cLtlXg9Vdl82_r1K-wEHKfXzrmngGwT8rd5u4JQ,717
|
|
215
222
|
autobyteus/tools/browser/standalone/__init__.py,sha256=68N5TpeIyKMW4Y8b7kIO0lyUYIcNPBwZoTg_W9lMfpM,369
|
|
216
|
-
autobyteus/tools/browser/standalone/google_search_ui.py,sha256=
|
|
217
|
-
autobyteus/tools/browser/standalone/navigate_to.py,sha256=
|
|
218
|
-
autobyteus/tools/browser/standalone/web_page_pdf_generator.py,sha256=
|
|
219
|
-
autobyteus/tools/browser/standalone/webpage_image_downloader.py,sha256=
|
|
220
|
-
autobyteus/tools/browser/standalone/webpage_reader.py,sha256=
|
|
221
|
-
autobyteus/tools/browser/standalone/webpage_screenshot_taker.py,sha256=
|
|
223
|
+
autobyteus/tools/browser/standalone/google_search_ui.py,sha256=9tHusVs5jM2Zu1W48_YxAsePZJp9Z8-dOZptl7WURpM,5388
|
|
224
|
+
autobyteus/tools/browser/standalone/navigate_to.py,sha256=Z_V0DRzu-1zwYXTVMaCbCl9ltuEAPqoz7wGvq2IVaoQ,3458
|
|
225
|
+
autobyteus/tools/browser/standalone/web_page_pdf_generator.py,sha256=UvRrUjJMVyBrG1JqTg67DCrOGboI44Hvard2UO_k9WM,4041
|
|
226
|
+
autobyteus/tools/browser/standalone/webpage_image_downloader.py,sha256=oH4dnEQBx8DVhitP4tozoHRVO9ue-rGA_ZSJJyJotUI,7159
|
|
227
|
+
autobyteus/tools/browser/standalone/webpage_reader.py,sha256=9N_NlbB7YnrT_MpkP_nLzWKYopMLM6eWJJ2wQmuGgVI,4254
|
|
228
|
+
autobyteus/tools/browser/standalone/webpage_screenshot_taker.py,sha256=iy9qwl2zLaHxlc4kuZuLo3Q3tJfWGmiSekXZJzHDOJU,4424
|
|
222
229
|
autobyteus/tools/browser/standalone/factory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
223
230
|
autobyteus/tools/browser/standalone/factory/google_search_factory.py,sha256=bgsRr7gix1L96sVwAF19pbQklPPYNEhz2Et6JdIViwE,1120
|
|
224
231
|
autobyteus/tools/browser/standalone/factory/webpage_reader_factory.py,sha256=R9PJPf7MF3cP8q8ffMKU5-ihPJWHJkVDYXZswZNdGS0,1131
|
|
@@ -226,18 +233,17 @@ autobyteus/tools/browser/standalone/factory/webpage_screenshot_taker_factory.py,
|
|
|
226
233
|
autobyteus/tools/factory/__init__.py,sha256=EQXbTH6BcqK2SM3JEq2PkLwzZSczExv3KDvlhWHlsGQ,275
|
|
227
234
|
autobyteus/tools/factory/tool_factory.py,sha256=-gUhcBwiQu1FQiR0nAKJp1aUZ2sXbcz-pIn4f4heFbE,1066
|
|
228
235
|
autobyteus/tools/file/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
229
|
-
autobyteus/tools/file/file_reader.py,sha256=
|
|
230
|
-
autobyteus/tools/file/file_writer.py,sha256=
|
|
236
|
+
autobyteus/tools/file/file_reader.py,sha256=U8xtPXDkm-UHqizzHpTgq56-QuDLxhz8WhjlGgsseBU,2557
|
|
237
|
+
autobyteus/tools/file/file_writer.py,sha256=LQgd9arr3jLFEzpjv6WnTP9XhsD44wxBVphgznqf7O4,2681
|
|
231
238
|
autobyteus/tools/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
232
239
|
autobyteus/tools/handlers/shell_handler.py,sha256=ClTXqFR45iyD0gcoOPpKRX5p6g_6BI4a5JOLuKuQOIA,1065
|
|
233
240
|
autobyteus/tools/mcp/__init__.py,sha256=gwT34UgJe2rU5y4bYNOLI-PyAmRQTMWKz_WC4f2LcyE,1553
|
|
234
241
|
autobyteus/tools/mcp/config_service.py,sha256=b6xShFAcCzouMG5ICyBfTK_ebtj79dEU6YKr3wn2xTI,11212
|
|
235
242
|
autobyteus/tools/mcp/factory.py,sha256=SmPR6mgmwLEfzfole-zKuptKnSyeZEBi1t9gBbwCtZY,2204
|
|
236
|
-
autobyteus/tools/mcp/registrar.py,sha256=GuJImUCXFiekSduK9kvyh0H4M0Rrd9hBcae0eCzdGeY,10327
|
|
237
243
|
autobyteus/tools/mcp/schema_mapper.py,sha256=PJGEAlqCgkoCThLzmkG3jXOXYk6fR1ogjSpOiCuFKsc,7502
|
|
238
244
|
autobyteus/tools/mcp/server_instance_manager.py,sha256=XJTKrA__fyKDxsWHwr9oqoxCboH2T3cJDFszQLKHhH8,4678
|
|
239
245
|
autobyteus/tools/mcp/tool.py,sha256=HpXSjvQjwwDzGGww1Cz3j4yCCLDiCYEv0RG-q-2BU4o,3380
|
|
240
|
-
autobyteus/tools/mcp/tool_registrar.py,sha256=
|
|
246
|
+
autobyteus/tools/mcp/tool_registrar.py,sha256=ZfCQxu9CPu2TAIeZzaRrai-NvMW87VC1TW8bHKzPBNs,8622
|
|
241
247
|
autobyteus/tools/mcp/types.py,sha256=KiQUPhqzro5VW7piA-eOXkBcE0FThOUgr9Pw_7iV6Us,4171
|
|
242
248
|
autobyteus/tools/mcp/call_handlers/__init__.py,sha256=elxV-ttOoQ3Ve5idyIetdCzFDGlQBQ9UAG9okIpaI5c,516
|
|
243
249
|
autobyteus/tools/mcp/call_handlers/base_handler.py,sha256=q-34xq6w-561rwujmoJVvhJMexe4-bhqBq8ORc_W6qA,1252
|
|
@@ -254,8 +260,8 @@ autobyteus/tools/operation/file_rename_operation.py,sha256=pExiC69HUzYbKihlVumlG
|
|
|
254
260
|
autobyteus/tools/operation/operation.py,sha256=9sIZnlrPct5CwkCKuwbspVKvjF4KumP6twmXRo1blwo,1702
|
|
255
261
|
autobyteus/tools/operation/shell_operation.py,sha256=_BiGIRGWCzzwPVtbqFwXpHOvnqH68YqJujQI-gWeKx0,1860
|
|
256
262
|
autobyteus/tools/registry/__init__.py,sha256=39TSHm7mD6NXhsrczsX5Mdr32US0I6z3Bzad4hgcrrA,250
|
|
257
|
-
autobyteus/tools/registry/tool_definition.py,sha256=
|
|
258
|
-
autobyteus/tools/registry/tool_registry.py,sha256=
|
|
263
|
+
autobyteus/tools/registry/tool_definition.py,sha256=JGxMSVjlF9n3Uk2oCGXMhxb6WN3G3IqJNJTKKxwF0dw,7124
|
|
264
|
+
autobyteus/tools/registry/tool_registry.py,sha256=eekF5q3GZr3FwnwITGni-gyc46Vob5u3WoApmvEHPQ8,7564
|
|
259
265
|
autobyteus/tools/usage/__init__.py,sha256=0kJoUH-m0d1AHTYJQyXlCjlXhMJ3e95Ykf-8J9lO2g4,224
|
|
260
266
|
autobyteus/tools/usage/formatters/__init__.py,sha256=BThdI_R8Dkda1eHJFr1cQ7nLCgf5KfSuvWokjPrnT9U,1424
|
|
261
267
|
autobyteus/tools/usage/formatters/anthropic_json_example_formatter.py,sha256=EVVPZ7e1tG3QRcEPjdOC0yTvnGisubfUm9geWbd9r2g,792
|
|
@@ -302,11 +308,74 @@ autobyteus/utils/file_utils.py,sha256=QK0LvrwA5c9FDjpSrfPPEQbu_AirteJNiLad9yRahD
|
|
|
302
308
|
autobyteus/utils/html_cleaner.py,sha256=mI2V83yFRfQe8NnN6fr6Ujpa0bPlq25NW5tTKaz2WGk,8672
|
|
303
309
|
autobyteus/utils/singleton.py,sha256=YVURj5nRcMtzwFPxgy6ic4MSe3IUXNf6XWYuiXyhDOg,814
|
|
304
310
|
autobyteus/workflow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
305
|
-
autobyteus/workflow/
|
|
306
|
-
autobyteus/workflow/
|
|
307
|
-
autobyteus/workflow/
|
|
308
|
-
autobyteus
|
|
309
|
-
autobyteus
|
|
310
|
-
autobyteus
|
|
311
|
-
autobyteus
|
|
312
|
-
autobyteus
|
|
311
|
+
autobyteus/workflow/agentic_workflow.py,sha256=u1A_HkgNlPmKn2nXz_0u_l9_DSyt4hxRJSyojGonvAA,3765
|
|
312
|
+
autobyteus/workflow/base_agentic_workflow.py,sha256=fb7JZZ58p7HL-jQdzHybrMSEMSGgenoJ3D4prnWIBtk,3602
|
|
313
|
+
autobyteus/workflow/exceptions.py,sha256=mIHDol7s6bQX_LP8y00zDAnpjDXlAL4-3P8rX2nxA-Q,407
|
|
314
|
+
autobyteus/workflow/workflow_builder.py,sha256=_e3hlCTclQLN81XyJjbZ8uHSvKe6sgpeKA_8yL51e9c,6889
|
|
315
|
+
autobyteus/workflow/bootstrap_steps/__init__.py,sha256=9C9HvkXHNYJfI-OfXvMWOyerA1r6j1n3gLX2nE4fAKU,1034
|
|
316
|
+
autobyteus/workflow/bootstrap_steps/agent_tool_injection_step.py,sha256=LLPCKwzh0tQI6aUrWWrWNsU92uK-YdP0xDCkv1LWgTU,1942
|
|
317
|
+
autobyteus/workflow/bootstrap_steps/base_workflow_bootstrap_step.py,sha256=mj6SvAbKVL_HFygRh5QkuEhOhDhi4djU8opBARLa8fM,880
|
|
318
|
+
autobyteus/workflow/bootstrap_steps/coordinator_initialization_step.py,sha256=zZqc2fxOwy1Crll6VEXt2a8UC7ROSG_jmXC5Kjs7fhk,1927
|
|
319
|
+
autobyteus/workflow/bootstrap_steps/coordinator_prompt_preparation_step.py,sha256=aOHjTg-Ch9J2Eo_qPhHTblzmeKpeU6etWaVbde-Wjwk,5533
|
|
320
|
+
autobyteus/workflow/bootstrap_steps/workflow_bootstrapper.py,sha256=0fz-eN5DCtWPsYZLMUeFh-OOKQSBpwhN6ry3tAB5AM8,2746
|
|
321
|
+
autobyteus/workflow/bootstrap_steps/workflow_runtime_queue_initialization_step.py,sha256=uE8Ixgv66BMpzkBR_ohXY5i3A4CsaKdFmod514dzYj4,1369
|
|
322
|
+
autobyteus/workflow/context/__init__.py,sha256=aOkJMgX6bo7Cq1UBC4oENgb7lZYhMdJJSLJ-3uUhnA0,653
|
|
323
|
+
autobyteus/workflow/context/team_manager.py,sha256=EfWBdVsjnT9FJOhEFDZhlrdsJ9-qshDBq5sm7gkX5kA,7659
|
|
324
|
+
autobyteus/workflow/context/workflow_config.py,sha256=E3ylRyeC8WO37qHri9TmyShXht6-UqpMZIixBjucG7o,1174
|
|
325
|
+
autobyteus/workflow/context/workflow_context.py,sha256=JwFZr6Mof0tqLRndlgrQEz9iAkpie1i_URNUtUCSDJ0,2695
|
|
326
|
+
autobyteus/workflow/context/workflow_node_config.py,sha256=ka_ku03tKOwU-q9Is1lCt-Bpfj39gZk9KEE3lfEtNe8,3212
|
|
327
|
+
autobyteus/workflow/context/workflow_runtime_state.py,sha256=zEfPSXL6rSVib7hQrUFCRvI1MX85P7g2RUsLC2FF6ok,2810
|
|
328
|
+
autobyteus/workflow/events/__init__.py,sha256=7qNll9W8bpJRg63bzvZDdLLXwKQfoxsLFd-RLFPDGpA,949
|
|
329
|
+
autobyteus/workflow/events/workflow_event_dispatcher.py,sha256=aRn-R32AkS0Z38QJmHxRMX1msqdy25almwjbD6-zcls,1729
|
|
330
|
+
autobyteus/workflow/events/workflow_events.py,sha256=5IeDgjkImXZMMkpBn3u4d3PiKiLDHuDndb3FA1I_ycs,1744
|
|
331
|
+
autobyteus/workflow/events/workflow_input_event_queue_manager.py,sha256=JtTicSrEBXT6gQcUo5XLxuZ78NIDl2A1GtwRI44MONU,942
|
|
332
|
+
autobyteus/workflow/factory/__init__.py,sha256=W9Hq6EaVlpvHNj3I_6MpWluuLOxdPvpibH4AXlFX1f0,235
|
|
333
|
+
autobyteus/workflow/factory/workflow_factory.py,sha256=VpxDguKhG7ng3Z8-2Equqd6ligIn3FsXjeGDyP8ppjQ,4829
|
|
334
|
+
autobyteus/workflow/handlers/__init__.py,sha256=kgTir-RKwzsuUpODMcNjIzqFrw2LU4KQ8vWRcz-2ZCg,989
|
|
335
|
+
autobyteus/workflow/handlers/base_workflow_event_handler.py,sha256=1nA02qJuK4bk6gH3lyVCS85nfQtAO5tOifUp31FHfYk,580
|
|
336
|
+
autobyteus/workflow/handlers/inter_agent_message_request_event_handler.py,sha256=w9cq_GWZHp2996hh4tbgM598BpCTcdFfXx5dyGf39Q8,3388
|
|
337
|
+
autobyteus/workflow/handlers/lifecycle_workflow_event_handler.py,sha256=AtP1BZahYgbe-WV423bzZRPgvcGqh-I3mv5YqqYHwFI,1348
|
|
338
|
+
autobyteus/workflow/handlers/process_user_message_event_handler.py,sha256=TDEFwfONgNyHXOFtC56FEcxkRLr9FDmtXXONIcYC2lY,2602
|
|
339
|
+
autobyteus/workflow/handlers/tool_approval_workflow_event_handler.py,sha256=2nw4FhhjYSfHyYoeXW4v2s9ziy-Cb0sR-YrYHZg-8bM,1881
|
|
340
|
+
autobyteus/workflow/handlers/workflow_event_handler_registry.py,sha256=o-qXbg9VY4Ce8EtOGdbAhRXleQsWVjVE_idPK5rQTU8,1207
|
|
341
|
+
autobyteus/workflow/phases/__init__.py,sha256=GLqzLOHeiWXnUYTSrG8kRVqARU-litYdnwcGoGs5u-Q,403
|
|
342
|
+
autobyteus/workflow/phases/workflow_operational_phase.py,sha256=Do7YTKQ-NFCaqXyXf2HnMDoT6_WK1S5Td7K8CI-nsHk,674
|
|
343
|
+
autobyteus/workflow/phases/workflow_phase_manager.py,sha256=rJ90brGy0NoWRktAPkFuOVL4vZwJ1wBBPxdcLamSXLs,2346
|
|
344
|
+
autobyteus/workflow/runtime/__init__.py,sha256=WYLVQfP2zwgg8GtJSInTJZyVdr1mxRfvQRtSERmQfQQ,451
|
|
345
|
+
autobyteus/workflow/runtime/workflow_runtime.py,sha256=hZCVk7D4nsdjUAEQIMsprbWUi1mDrASx3hDfnSOt4IM,3894
|
|
346
|
+
autobyteus/workflow/runtime/workflow_worker.py,sha256=3QgyoZ7ahPmXcKEBSvTD29mmv4VPU4LBfD0xnJ_26zk,5598
|
|
347
|
+
autobyteus/workflow/shutdown_steps/__init__.py,sha256=6_d81qvsu5ViWi5BIjQ2pxIYjVKOnhmdtI5v031KXv8,802
|
|
348
|
+
autobyteus/workflow/shutdown_steps/agent_team_shutdown_step.py,sha256=27pJ0ysP1PzGcuU3mkwPorPenypN7jlZb18gh4MUDmI,1883
|
|
349
|
+
autobyteus/workflow/shutdown_steps/base_workflow_shutdown_step.py,sha256=c4fRHV56aTEOEVya5cvVEu15dgCjq4h3V93IKqrk4Ho,638
|
|
350
|
+
autobyteus/workflow/shutdown_steps/bridge_cleanup_step.py,sha256=rCDKe-Wdm4SY7ua0NRlp9i7wnIlmwqh-Nqze-qeGYcw,1183
|
|
351
|
+
autobyteus/workflow/shutdown_steps/sub_workflow_shutdown_step.py,sha256=odjGy3p3ikk2c713Iopsfe9vEX6RWa-4ZqjnKfry7kY,1861
|
|
352
|
+
autobyteus/workflow/shutdown_steps/workflow_shutdown_orchestrator.py,sha256=uZ77Ajnt5rzICXcjgyv19ckXEXi_pFnFNCyl-5MXMME,1580
|
|
353
|
+
autobyteus/workflow/streaming/__init__.py,sha256=-MFvSEtsgOpjABgrzHwugiauasE_eCK9Z7n99ldLZDg,877
|
|
354
|
+
autobyteus/workflow/streaming/agent_event_bridge.py,sha256=pT8tgXfQhdGb4LQ286tZcwmQZFrIbCBlIy_d7v1HGNE,2126
|
|
355
|
+
autobyteus/workflow/streaming/agent_event_multiplexer.py,sha256=VlBucqJJNHO7uwPAD7u5-0zTvmAkkqouaRyihJW5A6g,3765
|
|
356
|
+
autobyteus/workflow/streaming/workflow_event_bridge.py,sha256=BBgMQw1gruW-EgtK3SM-O21GG2qjaRem3BIWtsSlu_c,2461
|
|
357
|
+
autobyteus/workflow/streaming/workflow_event_notifier.py,sha256=GA1XPqWTEvdljYAJpifxrQtILORAGGuxWNldARmdVKA,3654
|
|
358
|
+
autobyteus/workflow/streaming/workflow_event_stream.py,sha256=XTOvbx1EWIh2x_-Nl5UcY6jCPnsgdS4GvoHjfRKj8yM,1540
|
|
359
|
+
autobyteus/workflow/streaming/workflow_stream_event_payloads.py,sha256=jv1bVYg-75Fa93gcK6Apavxu-crpeJ0w4QMmEa4Csno,1470
|
|
360
|
+
autobyteus/workflow/streaming/workflow_stream_events.py,sha256=75P29jNgcL7Go7D9wVz236KTwPfmqc5K7hUvVnc94K0,2221
|
|
361
|
+
autobyteus/workflow/utils/__init__.py,sha256=SzaMZHnJBIJKcT_r-HOeyIcuxzRu2bGeFkOcMLJaalk,222
|
|
362
|
+
autobyteus/workflow/utils/wait_for_idle.py,sha256=FgHtz59DN0eg8Na1PkkVR55Ihdd2e5Gn_mr7RVHl4qI,2001
|
|
363
|
+
autobyteus-1.1.4.dist-info/licenses/LICENSE,sha256=Ompok_c8HRsXRwmax-pGR9OZRRxZC9RPp4JB6eTJd0M,1360
|
|
364
|
+
examples/__init__.py,sha256=BtTQJ6yeHyksK5GC3kfN6RFR6Gcrwq1TBmp6FIIj3Z8,40
|
|
365
|
+
examples/discover_phase_transitions.py,sha256=NiFK_XzDCpWwmNsQqf0Ou2w6L5bofKIKODq7sH5uPzk,3679
|
|
366
|
+
examples/run_browser_agent.py,sha256=qTsx0fxd21izx-IzMr1rIJPQ5azAPaLEfCLx4tFoLtQ,11500
|
|
367
|
+
examples/run_google_slides_agent.py,sha256=4mvswhjJELRCslbWS1ClyhK5lq8wivALFA_Vz_QmyBU,12875
|
|
368
|
+
examples/run_mcp_browser_client.py,sha256=6vEBxGtAuGffkFk-gr3NvqetO84IdhNzip5Jp7V1tSc,6772
|
|
369
|
+
examples/run_mcp_google_slides_client.py,sha256=EMG7nG3df3fCrOX_iIncDWSqDdBrifm7gGYWUnkCJ_c,11826
|
|
370
|
+
examples/run_mcp_list_tools.py,sha256=-dOM-7xyyDM2gp5e_8KZVGbX5ZxWqFQB9l-fHfR8XxY,7367
|
|
371
|
+
examples/run_poem_writer.py,sha256=SU0OECQH5XdSWTIDAX4gdXIciFA7-Q-mokHPLDw3F4U,12657
|
|
372
|
+
examples/run_sqlite_agent.py,sha256=lOTuRJAJyI37h3dsU0cvTTQPBw6CG1Ss8EeeAA7B5Og,12921
|
|
373
|
+
examples/workflow/__init__.py,sha256=oS0ThEVObEexu26BU2QQuNs6y855LYdCXAdfmx_WU1Y,49
|
|
374
|
+
examples/workflow/run_basic_research_workflow.py,sha256=SazESHnN2axdvD0t-UXVLYLd8oGoznDu1P6HZ32HYKQ,8083
|
|
375
|
+
examples/workflow/run_code_review_workflow.py,sha256=R3gtMvmp6btYiaGgAy7858CDq39-vAGtfiV4Kx5irs8,13004
|
|
376
|
+
examples/workflow/run_debate_workflow.py,sha256=UQPvnPEhqveNVeUHzvj3FhitsL2b1okWPi9PBed-2tI,10700
|
|
377
|
+
examples/workflow/run_workflow_with_tui.py,sha256=h-NND47KBtRk3TMNB5LIgLiAwrenOs6uZ-4xxhX0qFA,6209
|
|
378
|
+
autobyteus-1.1.4.dist-info/METADATA,sha256=VrML9iEOjU4wAcj9lwpl2ifVgMthULI2PIqxu0WDRsI,6947
|
|
379
|
+
autobyteus-1.1.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
380
|
+
autobyteus-1.1.4.dist-info/top_level.txt,sha256=vNmK1Y8Irbc0iDPdRtr9gIx5eLM-c2v1ntItkzICzHU,20
|
|
381
|
+
autobyteus-1.1.4.dist-info/RECORD,,
|
examples/__init__.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# file: autobyteus/examples/__init__.py
|