flock-core 0.5.0b1__py3-none-any.whl → 0.5.0b3__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.
Potentially problematic release.
This version of flock-core might be problematic. Click here for more details.
- flock/cli/manage_agents.py +3 -3
- flock/components/evaluation/declarative_evaluation_component.py +10 -10
- flock/components/routing/conditional_routing_component.py +7 -6
- flock/components/routing/default_routing_component.py +3 -3
- flock/components/routing/llm_routing_component.py +24 -26
- flock/components/utility/memory_utility_component.py +3 -3
- flock/components/utility/metrics_utility_component.py +11 -11
- flock/components/utility/output_utility_component.py +11 -9
- flock/core/__init__.py +24 -10
- flock/core/agent/flock_agent_components.py +16 -16
- flock/core/agent/flock_agent_integration.py +88 -29
- flock/core/agent/flock_agent_serialization.py +23 -20
- flock/core/api/endpoints.py +1 -1
- flock/core/component/__init__.py +7 -7
- flock/core/component/{evaluation_component_base.py → evaluation_component.py} +2 -2
- flock/core/component/{routing_component_base.py → routing_component.py} +3 -4
- flock/core/component/{utility_component_base.py → utility_component.py} +3 -3
- flock/core/flock.py +7 -7
- flock/core/flock_agent.py +68 -38
- flock/core/flock_factory.py +21 -18
- flock/core/flock_server_manager.py +8 -8
- flock/core/mcp/flock_mcp_server.py +11 -11
- flock/core/mcp/{flock_mcp_tool_base.py → flock_mcp_tool.py} +2 -2
- flock/core/mcp/mcp_client.py +9 -9
- flock/core/mcp/mcp_client_manager.py +9 -9
- flock/core/mcp/mcp_config.py +24 -24
- flock/core/orchestration/flock_execution.py +3 -3
- flock/core/orchestration/flock_initialization.py +6 -6
- flock/core/orchestration/flock_server_manager.py +8 -6
- flock/core/registry/__init__.py +16 -10
- flock/core/registry/registry_hub.py +7 -4
- flock/core/registry/server_registry.py +6 -6
- flock/core/serialization/flock_serializer.py +3 -2
- flock/mcp/servers/sse/flock_sse_server.py +10 -10
- flock/mcp/servers/stdio/flock_stdio_server.py +10 -10
- flock/mcp/servers/streamable_http/flock_streamable_http_server.py +10 -10
- flock/mcp/servers/websockets/flock_websocket_server.py +10 -10
- flock/workflow/activities.py +10 -10
- {flock_core-0.5.0b1.dist-info → flock_core-0.5.0b3.dist-info}/METADATA +1 -1
- {flock_core-0.5.0b1.dist-info → flock_core-0.5.0b3.dist-info}/RECORD +43 -45
- flock/core/flock_registry.py.backup +0 -688
- flock/workflow/activities_unified.py +0 -230
- {flock_core-0.5.0b1.dist-info → flock_core-0.5.0b3.dist-info}/WHEEL +0 -0
- {flock_core-0.5.0b1.dist-info → flock_core-0.5.0b3.dist-info}/entry_points.txt +0 -0
- {flock_core-0.5.0b1.dist-info → flock_core-0.5.0b3.dist-info}/licenses/LICENSE +0 -0
flock/core/registry/__init__.py
CHANGED
|
@@ -5,32 +5,38 @@ This module provides a complete refactor of the FlockRegistry using
|
|
|
5
5
|
the proven composition pattern from Flock and FlockAgent refactoring.
|
|
6
6
|
"""
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
from flock.core.registry.
|
|
8
|
+
|
|
9
|
+
from flock.core.registry.agent_registry import AgentRegistry
|
|
10
|
+
from flock.core.registry.callable_registry import CallableRegistry
|
|
11
|
+
from flock.core.registry.component_discovery import ComponentDiscovery
|
|
10
12
|
|
|
11
13
|
# Specialized registry components (for advanced usage)
|
|
12
14
|
from flock.core.registry.component_registry import ComponentRegistry
|
|
13
|
-
from flock.core.registry.
|
|
14
|
-
from flock.core.registry.
|
|
15
|
+
from flock.core.registry.config_mapping import ConfigMapping
|
|
16
|
+
from flock.core.registry.decorators import (
|
|
17
|
+
flock_callable,
|
|
18
|
+
flock_component,
|
|
19
|
+
flock_tool,
|
|
20
|
+
flock_type,
|
|
21
|
+
)
|
|
22
|
+
from flock.core.registry.registry_hub import RegistryHub, get_registry
|
|
15
23
|
from flock.core.registry.server_registry import ServerRegistry
|
|
16
24
|
from flock.core.registry.type_registry import TypeRegistry
|
|
17
|
-
from flock.core.registry.config_mapping import ConfigMapping
|
|
18
|
-
from flock.core.registry.component_discovery import ComponentDiscovery
|
|
19
25
|
|
|
20
26
|
__all__ = [
|
|
21
27
|
# Main API
|
|
22
28
|
"RegistryHub",
|
|
23
29
|
"get_registry",
|
|
24
|
-
|
|
30
|
+
|
|
25
31
|
# Decorators
|
|
26
32
|
"flock_component",
|
|
27
|
-
"flock_tool",
|
|
33
|
+
"flock_tool",
|
|
28
34
|
"flock_callable",
|
|
29
35
|
"flock_type",
|
|
30
|
-
|
|
36
|
+
|
|
31
37
|
# Specialized registries (for advanced usage)
|
|
32
38
|
"ComponentRegistry",
|
|
33
|
-
"CallableRegistry",
|
|
39
|
+
"CallableRegistry",
|
|
34
40
|
"AgentRegistry",
|
|
35
41
|
"ServerRegistry",
|
|
36
42
|
"TypeRegistry",
|
|
@@ -8,8 +8,9 @@ from flock.core.logging.logging import get_logger
|
|
|
8
8
|
|
|
9
9
|
if TYPE_CHECKING:
|
|
10
10
|
from collections.abc import Callable
|
|
11
|
+
|
|
11
12
|
from flock.core.flock_agent import FlockAgent
|
|
12
|
-
from flock.core.mcp.flock_mcp_server import
|
|
13
|
+
from flock.core.mcp.flock_mcp_server import FlockMCPServer
|
|
13
14
|
|
|
14
15
|
logger = get_logger("registry.hub")
|
|
15
16
|
|
|
@@ -83,7 +84,9 @@ class RegistryHub:
|
|
|
83
84
|
def discovery(self):
|
|
84
85
|
"""Component discovery helper."""
|
|
85
86
|
if not hasattr(self, '_discovery_helper'):
|
|
86
|
-
from flock.core.registry.component_discovery import
|
|
87
|
+
from flock.core.registry.component_discovery import (
|
|
88
|
+
ComponentDiscovery,
|
|
89
|
+
)
|
|
87
90
|
self._discovery_helper = ComponentDiscovery(self)
|
|
88
91
|
return self._discovery_helper
|
|
89
92
|
|
|
@@ -101,11 +104,11 @@ class RegistryHub:
|
|
|
101
104
|
"""Get all registered agent names."""
|
|
102
105
|
return self.agents.get_all_agent_names()
|
|
103
106
|
|
|
104
|
-
def register_server(self, server: "
|
|
107
|
+
def register_server(self, server: "FlockMCPServer") -> None:
|
|
105
108
|
"""Register a FlockMCPServer instance."""
|
|
106
109
|
self.servers.register_server(server)
|
|
107
110
|
|
|
108
|
-
def get_server(self, name: str) -> "
|
|
111
|
+
def get_server(self, name: str) -> "FlockMCPServer | None":
|
|
109
112
|
"""Get a registered FlockMCPServer instance by name."""
|
|
110
113
|
return self.servers.get_server(name)
|
|
111
114
|
|
|
@@ -7,7 +7,7 @@ from typing import TYPE_CHECKING
|
|
|
7
7
|
from flock.core.logging.logging import get_logger
|
|
8
8
|
|
|
9
9
|
if TYPE_CHECKING:
|
|
10
|
-
from flock.core.mcp.flock_mcp_server import
|
|
10
|
+
from flock.core.mcp.flock_mcp_server import FlockMCPServer
|
|
11
11
|
|
|
12
12
|
logger = get_logger("registry.servers")
|
|
13
13
|
|
|
@@ -17,9 +17,9 @@ class ServerRegistry:
|
|
|
17
17
|
|
|
18
18
|
def __init__(self, lock: threading.RLock):
|
|
19
19
|
self._lock = lock
|
|
20
|
-
self._servers: dict[str,
|
|
20
|
+
self._servers: dict[str, FlockMCPServer] = {}
|
|
21
21
|
|
|
22
|
-
def register_server(self, server: "
|
|
22
|
+
def register_server(self, server: "FlockMCPServer") -> None:
|
|
23
23
|
"""Register a flock mcp server by its name."""
|
|
24
24
|
if not hasattr(server.config, "name") or not server.config.name:
|
|
25
25
|
logger.error("Attempted to register a server without a valid 'name' attribute.")
|
|
@@ -28,11 +28,11 @@ class ServerRegistry:
|
|
|
28
28
|
with self._lock:
|
|
29
29
|
if server.config.name in self._servers and self._servers[server.config.name] != server:
|
|
30
30
|
logger.warning(f"Server '{server.config.name}' already registered. Overwriting.")
|
|
31
|
-
|
|
31
|
+
|
|
32
32
|
self._servers[server.config.name] = server
|
|
33
33
|
logger.debug(f"Registered server: {server.config.name}")
|
|
34
34
|
|
|
35
|
-
def get_server(self, name: str) -> "
|
|
35
|
+
def get_server(self, name: str) -> "FlockMCPServer | None":
|
|
36
36
|
"""Retrieve a registered FlockMCPServer instance by name."""
|
|
37
37
|
with self._lock:
|
|
38
38
|
server = self._servers.get(name)
|
|
@@ -45,7 +45,7 @@ class ServerRegistry:
|
|
|
45
45
|
with self._lock:
|
|
46
46
|
return list(self._servers.keys())
|
|
47
47
|
|
|
48
|
-
def get_all_servers(self) -> dict[str, "
|
|
48
|
+
def get_all_servers(self) -> dict[str, "FlockMCPServer"]:
|
|
49
49
|
"""Get all registered servers."""
|
|
50
50
|
with self._lock:
|
|
51
51
|
return self._servers.copy()
|
|
@@ -12,9 +12,10 @@ from typing import TYPE_CHECKING, Any, Literal
|
|
|
12
12
|
|
|
13
13
|
from pydantic import BaseModel, create_model
|
|
14
14
|
|
|
15
|
+
from flock.core.logging.logging import get_logger
|
|
16
|
+
|
|
15
17
|
# Need registry access
|
|
16
18
|
from flock.core.registry import get_registry
|
|
17
|
-
from flock.core.logging.logging import get_logger
|
|
18
19
|
from flock.core.serialization.serialization_utils import (
|
|
19
20
|
# Assuming this handles basic serialization needs
|
|
20
21
|
extract_pydantic_models_from_type_string,
|
|
@@ -292,7 +293,7 @@ class FlockSerializer:
|
|
|
292
293
|
from flock.core.flock import Flock # Import the actual class
|
|
293
294
|
from flock.core.flock_agent import FlockAgent as ConcreteFlockAgent
|
|
294
295
|
from flock.core.mcp.flock_mcp_server import (
|
|
295
|
-
|
|
296
|
+
FlockMCPServer as ConcreteFlockMCPServer,
|
|
296
297
|
)
|
|
297
298
|
|
|
298
299
|
logger.debug(
|
|
@@ -15,12 +15,12 @@ from opentelemetry import trace
|
|
|
15
15
|
from pydantic import Field
|
|
16
16
|
|
|
17
17
|
from flock.core.logging.logging import get_logger
|
|
18
|
-
from flock.core.mcp.flock_mcp_server import
|
|
19
|
-
from flock.core.mcp.mcp_client import
|
|
20
|
-
from flock.core.mcp.mcp_client_manager import
|
|
18
|
+
from flock.core.mcp.flock_mcp_server import FlockMCPServer
|
|
19
|
+
from flock.core.mcp.mcp_client import FlockMCPClient
|
|
20
|
+
from flock.core.mcp.mcp_client_manager import FlockMCPClientManager
|
|
21
21
|
from flock.core.mcp.mcp_config import (
|
|
22
|
-
|
|
23
|
-
|
|
22
|
+
FlockMCPConfiguration,
|
|
23
|
+
FlockMCPConnectionConfiguration,
|
|
24
24
|
)
|
|
25
25
|
from flock.core.mcp.types.types import SseServerParameters
|
|
26
26
|
|
|
@@ -28,7 +28,7 @@ logger = get_logger("mcp.sse.server")
|
|
|
28
28
|
tracer = trace.get_tracer(__name__)
|
|
29
29
|
|
|
30
30
|
|
|
31
|
-
class FlockSSEConnectionConfig(
|
|
31
|
+
class FlockSSEConnectionConfig(FlockMCPConnectionConfiguration):
|
|
32
32
|
"""Concrete ConnectionConfig for an SSEClient."""
|
|
33
33
|
|
|
34
34
|
# Only thing we need to override here is the concrete transport_type
|
|
@@ -42,7 +42,7 @@ class FlockSSEConnectionConfig(FlockMCPConnectionConfigurationBase):
|
|
|
42
42
|
)
|
|
43
43
|
|
|
44
44
|
|
|
45
|
-
class FlockSSEConfig(
|
|
45
|
+
class FlockSSEConfig(FlockMCPConfiguration):
|
|
46
46
|
"""Configuration for SSE Clients."""
|
|
47
47
|
|
|
48
48
|
# The only thing we need to override here is the concrete
|
|
@@ -53,7 +53,7 @@ class FlockSSEConfig(FlockMCPConfigurationBase):
|
|
|
53
53
|
)
|
|
54
54
|
|
|
55
55
|
|
|
56
|
-
class FlockSSEClient(
|
|
56
|
+
class FlockSSEClient(FlockMCPClient):
|
|
57
57
|
"""Client for SSE Servers."""
|
|
58
58
|
|
|
59
59
|
config: FlockSSEConfig = Field(..., description="Client configuration.")
|
|
@@ -115,7 +115,7 @@ class FlockSSEClient(FlockMCPClientBase):
|
|
|
115
115
|
)
|
|
116
116
|
|
|
117
117
|
|
|
118
|
-
class FlockSSEClientManager(
|
|
118
|
+
class FlockSSEClientManager(FlockMCPClientManager):
|
|
119
119
|
"""Manager for handling SSE Clients."""
|
|
120
120
|
|
|
121
121
|
client_config: FlockSSEConfig = Field(
|
|
@@ -132,7 +132,7 @@ class FlockSSEClientManager(FlockMCPClientManagerBase):
|
|
|
132
132
|
return new_client
|
|
133
133
|
|
|
134
134
|
|
|
135
|
-
class FlockSSEServer(
|
|
135
|
+
class FlockSSEServer(FlockMCPServer):
|
|
136
136
|
"""Class which represents a MCP Server using the SSE Transport type."""
|
|
137
137
|
|
|
138
138
|
config: FlockSSEConfig = Field(..., description="Config for the server.")
|
|
@@ -14,12 +14,12 @@ from opentelemetry import trace
|
|
|
14
14
|
from pydantic import Field
|
|
15
15
|
|
|
16
16
|
from flock.core.logging.logging import get_logger
|
|
17
|
-
from flock.core.mcp.flock_mcp_server import
|
|
18
|
-
from flock.core.mcp.mcp_client import
|
|
19
|
-
from flock.core.mcp.mcp_client_manager import
|
|
17
|
+
from flock.core.mcp.flock_mcp_server import FlockMCPServer
|
|
18
|
+
from flock.core.mcp.mcp_client import FlockMCPClient
|
|
19
|
+
from flock.core.mcp.mcp_client_manager import FlockMCPClientManager
|
|
20
20
|
from flock.core.mcp.mcp_config import (
|
|
21
|
-
|
|
22
|
-
|
|
21
|
+
FlockMCPConfiguration,
|
|
22
|
+
FlockMCPConnectionConfiguration,
|
|
23
23
|
)
|
|
24
24
|
from flock.core.mcp.types.types import StdioServerParameters
|
|
25
25
|
|
|
@@ -27,7 +27,7 @@ logger = get_logger("mcp.stdio.server")
|
|
|
27
27
|
tracer = trace.get_tracer(__name__)
|
|
28
28
|
|
|
29
29
|
|
|
30
|
-
class FlockStdioConnectionConfig(
|
|
30
|
+
class FlockStdioConnectionConfig(FlockMCPConnectionConfiguration):
|
|
31
31
|
"""Concrete ConnectionConfig for an StdioClient."""
|
|
32
32
|
|
|
33
33
|
# Only thing we need to override here is the concrete transport_type
|
|
@@ -42,7 +42,7 @@ class FlockStdioConnectionConfig(FlockMCPConnectionConfigurationBase):
|
|
|
42
42
|
)
|
|
43
43
|
|
|
44
44
|
|
|
45
|
-
class FlockStdioConfig(
|
|
45
|
+
class FlockStdioConfig(FlockMCPConfiguration):
|
|
46
46
|
"""Configuration for Stdio Clients."""
|
|
47
47
|
|
|
48
48
|
# The only thing we need to override here is the
|
|
@@ -53,7 +53,7 @@ class FlockStdioConfig(FlockMCPConfigurationBase):
|
|
|
53
53
|
)
|
|
54
54
|
|
|
55
55
|
|
|
56
|
-
class FlockStdioClient(
|
|
56
|
+
class FlockStdioClient(FlockMCPClient):
|
|
57
57
|
"""Client for Stdio Servers."""
|
|
58
58
|
|
|
59
59
|
config: FlockStdioConfig = Field(..., description="Client Configuration.")
|
|
@@ -104,7 +104,7 @@ class FlockStdioClient(FlockMCPClientBase):
|
|
|
104
104
|
|
|
105
105
|
|
|
106
106
|
# Not really needed but kept here as an example.
|
|
107
|
-
class FlockStdioClientManager(
|
|
107
|
+
class FlockStdioClientManager(FlockMCPClientManager):
|
|
108
108
|
"""Manager for handling Stdio Clients."""
|
|
109
109
|
|
|
110
110
|
client_config: FlockStdioConfig = Field(
|
|
@@ -122,7 +122,7 @@ class FlockStdioClientManager(FlockMCPClientManagerBase):
|
|
|
122
122
|
return new_client
|
|
123
123
|
|
|
124
124
|
|
|
125
|
-
class FlockMCPStdioServer(
|
|
125
|
+
class FlockMCPStdioServer(FlockMCPServer):
|
|
126
126
|
"""Class which represents a MCP Server using the Stdio Transport type.
|
|
127
127
|
|
|
128
128
|
This means (most likely) that the server is a locally
|
|
@@ -17,12 +17,12 @@ from opentelemetry import trace
|
|
|
17
17
|
from pydantic import Field
|
|
18
18
|
|
|
19
19
|
from flock.core.logging.logging import get_logger
|
|
20
|
-
from flock.core.mcp.flock_mcp_server import
|
|
21
|
-
from flock.core.mcp.mcp_client import
|
|
22
|
-
from flock.core.mcp.mcp_client_manager import
|
|
20
|
+
from flock.core.mcp.flock_mcp_server import FlockMCPServer
|
|
21
|
+
from flock.core.mcp.mcp_client import FlockMCPClient
|
|
22
|
+
from flock.core.mcp.mcp_client_manager import FlockMCPClientManager
|
|
23
23
|
from flock.core.mcp.mcp_config import (
|
|
24
|
-
|
|
25
|
-
|
|
24
|
+
FlockMCPConfiguration,
|
|
25
|
+
FlockMCPConnectionConfiguration,
|
|
26
26
|
)
|
|
27
27
|
from flock.core.mcp.types.types import (
|
|
28
28
|
StreamableHttpServerParameters,
|
|
@@ -34,7 +34,7 @@ tracer = trace.get_tracer(__name__)
|
|
|
34
34
|
GetSessionIdCallback = Callable[[], str | None]
|
|
35
35
|
|
|
36
36
|
|
|
37
|
-
class FlockStreamableHttpConnectionConfig(
|
|
37
|
+
class FlockStreamableHttpConnectionConfig(FlockMCPConnectionConfiguration):
|
|
38
38
|
"""Concrete ConnectionConfig for a StreamableHttpClient."""
|
|
39
39
|
|
|
40
40
|
# Only thing we need to override here is the concrete transport_type
|
|
@@ -49,7 +49,7 @@ class FlockStreamableHttpConnectionConfig(FlockMCPConnectionConfigurationBase):
|
|
|
49
49
|
)
|
|
50
50
|
|
|
51
51
|
|
|
52
|
-
class FlockStreamableHttpConfig(
|
|
52
|
+
class FlockStreamableHttpConfig(FlockMCPConfiguration):
|
|
53
53
|
"""Configuration for Streamable HTTP Clients."""
|
|
54
54
|
|
|
55
55
|
# The only thing we need to override here is the
|
|
@@ -60,7 +60,7 @@ class FlockStreamableHttpConfig(FlockMCPConfigurationBase):
|
|
|
60
60
|
)
|
|
61
61
|
|
|
62
62
|
|
|
63
|
-
class FlockStreamableHttpClient(
|
|
63
|
+
class FlockStreamableHttpClient(FlockMCPClient):
|
|
64
64
|
"""Client for StreamableHttpServers."""
|
|
65
65
|
|
|
66
66
|
config: FlockStreamableHttpConfig = Field(
|
|
@@ -135,7 +135,7 @@ class FlockStreamableHttpClient(FlockMCPClientBase):
|
|
|
135
135
|
)
|
|
136
136
|
|
|
137
137
|
|
|
138
|
-
class FlockStreamableHttpClientManager(
|
|
138
|
+
class FlockStreamableHttpClientManager(FlockMCPClientManager):
|
|
139
139
|
"""Manager for handling StreamableHttpClients."""
|
|
140
140
|
|
|
141
141
|
client_config: FlockStreamableHttpConfig = Field(
|
|
@@ -153,7 +153,7 @@ class FlockStreamableHttpClientManager(FlockMCPClientManagerBase):
|
|
|
153
153
|
return new_client
|
|
154
154
|
|
|
155
155
|
|
|
156
|
-
class FlockStreamableHttpServer(
|
|
156
|
+
class FlockStreamableHttpServer(FlockMCPServer):
|
|
157
157
|
"""Class which represents a MCP Server using the streamable Http Transport type."""
|
|
158
158
|
|
|
159
159
|
config: FlockStreamableHttpConfig = Field(
|
|
@@ -14,12 +14,12 @@ from opentelemetry import trace
|
|
|
14
14
|
from pydantic import Field
|
|
15
15
|
|
|
16
16
|
from flock.core.logging.logging import get_logger
|
|
17
|
-
from flock.core.mcp.flock_mcp_server import
|
|
18
|
-
from flock.core.mcp.mcp_client import
|
|
19
|
-
from flock.core.mcp.mcp_client_manager import
|
|
17
|
+
from flock.core.mcp.flock_mcp_server import FlockMCPServer
|
|
18
|
+
from flock.core.mcp.mcp_client import FlockMCPClient
|
|
19
|
+
from flock.core.mcp.mcp_client_manager import FlockMCPClientManager
|
|
20
20
|
from flock.core.mcp.mcp_config import (
|
|
21
|
-
|
|
22
|
-
|
|
21
|
+
FlockMCPConfiguration,
|
|
22
|
+
FlockMCPConnectionConfiguration,
|
|
23
23
|
)
|
|
24
24
|
from flock.core.mcp.types.types import WebsocketServerParameters
|
|
25
25
|
|
|
@@ -28,7 +28,7 @@ tracer = trace.get_tracer(__name__)
|
|
|
28
28
|
|
|
29
29
|
|
|
30
30
|
# Optional to provide type hints.
|
|
31
|
-
class FlockWSConnectionConfig(
|
|
31
|
+
class FlockWSConnectionConfig(FlockMCPConnectionConfiguration):
|
|
32
32
|
"""Concrete ConnectionConfig for a WS Client."""
|
|
33
33
|
|
|
34
34
|
# Only thing we need to override here is the concrete transport_type
|
|
@@ -44,7 +44,7 @@ class FlockWSConnectionConfig(FlockMCPConnectionConfigurationBase):
|
|
|
44
44
|
|
|
45
45
|
|
|
46
46
|
# Optional to provide type hints.
|
|
47
|
-
class FlockWSConfig(
|
|
47
|
+
class FlockWSConfig(FlockMCPConfiguration):
|
|
48
48
|
"""Configuration for Websocket clients."""
|
|
49
49
|
|
|
50
50
|
# The only thing we need to override here is the concrete
|
|
@@ -56,7 +56,7 @@ class FlockWSConfig(FlockMCPConfigurationBase):
|
|
|
56
56
|
)
|
|
57
57
|
|
|
58
58
|
|
|
59
|
-
class FlockWSClient(
|
|
59
|
+
class FlockWSClient(FlockMCPClient):
|
|
60
60
|
"""Client for Websocket servers."""
|
|
61
61
|
|
|
62
62
|
config: FlockWSConfig = Field(..., description="Client Configuration")
|
|
@@ -90,7 +90,7 @@ class FlockWSClient(FlockMCPClientBase):
|
|
|
90
90
|
|
|
91
91
|
|
|
92
92
|
# not really needed, but kept for type hints and as an example.
|
|
93
|
-
class FlockWSClientManager(
|
|
93
|
+
class FlockWSClientManager(FlockMCPClientManager):
|
|
94
94
|
"""Manager for handling websocket clients."""
|
|
95
95
|
|
|
96
96
|
client_config: FlockWSConfig = Field(
|
|
@@ -106,7 +106,7 @@ class FlockWSClientManager(FlockMCPClientManagerBase):
|
|
|
106
106
|
return new_client
|
|
107
107
|
|
|
108
108
|
|
|
109
|
-
class FlockWSServer(
|
|
109
|
+
class FlockWSServer(FlockMCPServer):
|
|
110
110
|
"""Class which represents an MCP Server using the websocket transport type."""
|
|
111
111
|
|
|
112
112
|
config: FlockWSConfig = Field(..., description="Config for the server.")
|
flock/workflow/activities.py
CHANGED
|
@@ -7,10 +7,10 @@ from temporalio import activity
|
|
|
7
7
|
|
|
8
8
|
from flock.core.context.context import FlockContext
|
|
9
9
|
from flock.core.context.context_vars import FLOCK_CURRENT_AGENT, FLOCK_MODEL
|
|
10
|
-
from flock.core.registry import get_registry
|
|
11
10
|
|
|
12
11
|
# HandOffRequest removed - using agent.next_agent directly
|
|
13
12
|
from flock.core.logging.logging import get_logger
|
|
13
|
+
from flock.core.registry import get_registry
|
|
14
14
|
from flock.core.util.input_resolver import resolve_inputs
|
|
15
15
|
|
|
16
16
|
logger = get_logger("activities")
|
|
@@ -54,7 +54,7 @@ async def run_agent(context: FlockContext) -> dict:
|
|
|
54
54
|
agent = registry.get_agent(current_agent_name)
|
|
55
55
|
if agent.model is None or agent.evaluator.config.model is None:
|
|
56
56
|
agent.set_model(context.get_variable(FLOCK_MODEL))
|
|
57
|
-
|
|
57
|
+
|
|
58
58
|
if not agent:
|
|
59
59
|
logger.error("Agent not found", agent=current_agent_name)
|
|
60
60
|
span.record_exception(
|
|
@@ -91,6 +91,13 @@ async def run_agent(context: FlockContext) -> dict:
|
|
|
91
91
|
logger.debug(
|
|
92
92
|
"Agent execution completed", agent=agent.name
|
|
93
93
|
)
|
|
94
|
+
context.record(
|
|
95
|
+
agent.name,
|
|
96
|
+
result,
|
|
97
|
+
timestamp=datetime.now().isoformat(),
|
|
98
|
+
hand_off=None,
|
|
99
|
+
called_from=previous_agent_name,
|
|
100
|
+
)
|
|
94
101
|
except Exception as e:
|
|
95
102
|
logger.error(
|
|
96
103
|
"Agent execution failed",
|
|
@@ -140,13 +147,6 @@ async def run_agent(context: FlockContext) -> dict:
|
|
|
140
147
|
"No next agent found, completing chain",
|
|
141
148
|
agent=agent.name,
|
|
142
149
|
)
|
|
143
|
-
context.record(
|
|
144
|
-
agent.name,
|
|
145
|
-
result,
|
|
146
|
-
timestamp=datetime.now().isoformat(),
|
|
147
|
-
hand_off=None,
|
|
148
|
-
called_from=previous_agent_name,
|
|
149
|
-
)
|
|
150
150
|
iter_span.add_event("chain completed")
|
|
151
151
|
return result
|
|
152
152
|
|
|
@@ -181,7 +181,7 @@ async def run_agent(context: FlockContext) -> dict:
|
|
|
181
181
|
"error": f"Next agent '{next_agent_name}' not found."
|
|
182
182
|
}
|
|
183
183
|
|
|
184
|
-
|
|
184
|
+
|
|
185
185
|
|
|
186
186
|
context.set_variable(FLOCK_CURRENT_AGENT, agent.name)
|
|
187
187
|
|
|
@@ -17,7 +17,7 @@ flock/cli/load_examples.py,sha256=DkeLUlrb7rGx3nZ04aADU9HXXu5mZTf_DBwT0xhzIv4,7
|
|
|
17
17
|
flock/cli/load_flock.py,sha256=sfZ9B9aiyC5TCEbn1xR5Yd5SoaVji6MBNYzXlWOpoZ4,7111
|
|
18
18
|
flock/cli/load_release_notes.py,sha256=bkMIjjQFfOngXkDCh2kB404lQYIToeR91LodzI2IUWM,555
|
|
19
19
|
flock/cli/loaded_flock_cli.py,sha256=lGZ9Y2O16v4OEr0dxvPQA8HqreB_bP25C9teg4ViSsA,8202
|
|
20
|
-
flock/cli/manage_agents.py,sha256=
|
|
20
|
+
flock/cli/manage_agents.py,sha256=LEnrg_ljcbVl9tAaOmyVQ37y5qitTT0Z8lTlWwNMMZc,13468
|
|
21
21
|
flock/cli/registry_management.py,sha256=mAHy3wT97YgODR0gVOkTXDqR5NIPzM-E-z9dEtw9-tw,29790
|
|
22
22
|
flock/cli/runner.py,sha256=TgiuhRLkpa6dn3C-3eCmWx-bWUlTjaH0sD7Y-O7MrYM,1122
|
|
23
23
|
flock/cli/settings.py,sha256=Z_TXBzCYlCmSaKrJ_CQCdYy-Cj29gpI4kbC_2KzoKqg,27025
|
|
@@ -27,41 +27,40 @@ flock/cli/yaml_editor.py,sha256=K3N0bh61G1TSDAZDnurqW9e_-hO6CtSQKXQqlDhCjVo,1252
|
|
|
27
27
|
flock/cli/assets/release_notes.md,sha256=bqnk50jxM3w5uY44Dc7MkdT8XmRREFxrVBAG9XCOSSU,4896
|
|
28
28
|
flock/components/__init__.py,sha256=ZyTU6-haElMddsgCiL426z9qw2W9AnuFKvKkP3FuVSQ,954
|
|
29
29
|
flock/components/evaluation/__init__.py,sha256=_M3UlRFeNN90fEny6byt5VdLDE5o5khbd0EPT0o9S9k,303
|
|
30
|
-
flock/components/evaluation/declarative_evaluation_component.py,sha256=
|
|
30
|
+
flock/components/evaluation/declarative_evaluation_component.py,sha256=lK89CQVwcUscJjbmvCJ_1OQ02kA9QpRKgV4h7JiIpR0,7802
|
|
31
31
|
flock/components/routing/__init__.py,sha256=BH_pFm9T6bUuf8HH4byDJ0dO0fzEVHv9m-ghUdDVdm0,542
|
|
32
|
-
flock/components/routing/conditional_routing_component.py,sha256=
|
|
33
|
-
flock/components/routing/default_routing_component.py,sha256=
|
|
34
|
-
flock/components/routing/llm_routing_component.py,sha256=
|
|
32
|
+
flock/components/routing/conditional_routing_component.py,sha256=WqZLMz-0Dhfb97xvttNrJCIVe6FNMLEQ2m4KQTDpIbI,21374
|
|
33
|
+
flock/components/routing/default_routing_component.py,sha256=ZHt2Kjf-GHB5n7evU5NSGeQJ1Wuims5soeMswqaUb1E,3370
|
|
34
|
+
flock/components/routing/llm_routing_component.py,sha256=SAaOFjlnhnenM6QEBn3WIpjjNXO-tFpP44TS73zvqzQ,7502
|
|
35
35
|
flock/components/utility/__init__.py,sha256=JRj932upddjzZMWs1avOupEFr_GZNu21ac66Rhw_XgY,532
|
|
36
|
-
flock/components/utility/memory_utility_component.py,sha256=
|
|
37
|
-
flock/components/utility/metrics_utility_component.py,sha256=
|
|
38
|
-
flock/components/utility/output_utility_component.py,sha256=
|
|
39
|
-
flock/core/__init__.py,sha256=
|
|
40
|
-
flock/core/flock.py,sha256=
|
|
41
|
-
flock/core/flock_agent.py,sha256=
|
|
42
|
-
flock/core/flock_factory.py,sha256=
|
|
43
|
-
flock/core/flock_registry.py.backup,sha256=f6aapcp1HBzcUjUpTubn7mIdedPdJdup94sa1mX7yj0,26619
|
|
36
|
+
flock/components/utility/memory_utility_component.py,sha256=4Vpt6_McEPpN5lNTcXmj7JeZTBOT6rHI0uQE2Qy-3Gc,20103
|
|
37
|
+
flock/components/utility/metrics_utility_component.py,sha256=u3Bys0dP7FmTeyZOi4XdMhZHCRYc5miXXJ690-qS1Us,24440
|
|
38
|
+
flock/components/utility/output_utility_component.py,sha256=_YIqU6IaY2yeh1uJcWgZI7XTRSPoDsJjawQTKp_RGxA,7519
|
|
39
|
+
flock/core/__init__.py,sha256=ntCQ_wlgvRVNFph3drbFvyaqgtN30487V18YoJzcIFE,1332
|
|
40
|
+
flock/core/flock.py,sha256=T826p8rwXNaWfd7hRbtGjBWN1pZ8Xy1ocjKdVy1rFtY,23190
|
|
41
|
+
flock/core/flock_agent.py,sha256=jdEhtGnPFhYDqUyhzHJ6R3EcKp5ocqI3gEaCARCqirs,12027
|
|
42
|
+
flock/core/flock_factory.py,sha256=toPjFQxlr0-baytwOJQR1GCbNDrv3vPTTZKz0-BABt4,19857
|
|
44
43
|
flock/core/flock_scheduler.py,sha256=fu99UXMhs8qkbTLi1q1h4-mR4TxmsyA156EGXuXZ3-Q,8772
|
|
45
|
-
flock/core/flock_server_manager.py,sha256=
|
|
44
|
+
flock/core/flock_server_manager.py,sha256=tM_nOs37vAbEvxmhwy_DL2JPvgFViWroNxrRSu5MfUQ,4523
|
|
46
45
|
flock/core/agent/__init__.py,sha256=l32KFMJnC_gidMXpAXK8-OX228bWOhNc8OY_NzXm59Q,515
|
|
47
|
-
flock/core/agent/flock_agent_components.py,sha256=
|
|
46
|
+
flock/core/agent/flock_agent_components.py,sha256=LamOgpRC7wDKuU3d6enDG0UFlNxyKPErLpH7SQ_Pi74,4539
|
|
48
47
|
flock/core/agent/flock_agent_execution.py,sha256=pdOddBGv8y1P89Ix8XFWa1eW9i3bWjOYiQQxeY2K0yo,4217
|
|
49
|
-
flock/core/agent/flock_agent_integration.py,sha256=
|
|
48
|
+
flock/core/agent/flock_agent_integration.py,sha256=JseDY72KaMPQAeMqGlvPpCtcfYR2iFr3UDYTWDDH0To,8285
|
|
50
49
|
flock/core/agent/flock_agent_lifecycle.py,sha256=msGKSNVRwV70_UvKBFLpdnLkTfvTu5FKJIMVZQC59NE,7292
|
|
51
|
-
flock/core/agent/flock_agent_serialization.py,sha256=
|
|
50
|
+
flock/core/agent/flock_agent_serialization.py,sha256=U9UcX34G_ntT6O1pkiXKonc8bZWxQt-T3OWWxxqmwkk,16954
|
|
52
51
|
flock/core/api/__init__.py,sha256=KdzUwBOwhxqqy7lAMLpysKL5GvpIiwOy6CxXELZVWaY,186
|
|
53
52
|
flock/core/api/custom_endpoint.py,sha256=Mbk2owdcXVATaT5FtEWXFzllgursozcmqP8ouG5btc0,1305
|
|
54
|
-
flock/core/api/endpoints.py,sha256=
|
|
53
|
+
flock/core/api/endpoints.py,sha256=_P8ZPGt5SXhZMHAOt9KctIWfvILZlCbaNlf0MhT-Ww8,12125
|
|
55
54
|
flock/core/api/main.py,sha256=MMKTWRLZQXcdoeiN8NOX7s5_vBrzH5reE-W_5xJn8fM,8716
|
|
56
55
|
flock/core/api/models.py,sha256=seqKuzhbN37nCNO7KrcJjI2mWuwiOKCLFcJcTPvTtag,3422
|
|
57
56
|
flock/core/api/run_store.py,sha256=bFodJvVyWogzoezVy0cOoWWU3MdEBXf_6_5sBqCRWps,9227
|
|
58
57
|
flock/core/api/runner.py,sha256=3izg6cVk1RoR1hDIDwMAO1gi3lnLcp8DPv7AnJBYx6A,1443
|
|
59
58
|
flock/core/api/service.py,sha256=HRHs4xt-bGeSm5hdN92H1vWQtLzqZalhZxIh6iwww8Y,11381
|
|
60
|
-
flock/core/component/__init__.py,sha256=
|
|
59
|
+
flock/core/component/__init__.py,sha256=84fXB3tlxio1bvjFw8UvL4_Kl6wcYZ3Nzwyuyc89k_U,450
|
|
61
60
|
flock/core/component/agent_component_base.py,sha256=u3Sztd9J5Q-MoeuPs-d9s66mhJuXfTv2JSjsXeGuimc,10660
|
|
62
|
-
flock/core/component/
|
|
63
|
-
flock/core/component/
|
|
64
|
-
flock/core/component/
|
|
61
|
+
flock/core/component/evaluation_component.py,sha256=IvhS6NgUTH-UWft42Cmk3hK03xGM87kYAmKlQcIcOfs,2016
|
|
62
|
+
flock/core/component/routing_component.py,sha256=gXUpMAf5Ty831FAQ20EAiAW8OkX8jjhgq7yCj4hGEBU,2669
|
|
63
|
+
flock/core/component/utility_component.py,sha256=05DTltnp8-xNGOPVpmKIxG8ry0VNB3PjojOzLZMyrI0,2322
|
|
65
64
|
flock/core/config/flock_agent_config.py,sha256=5Y9vJKYEkhtjU6I-bJAJBh0eLDYjGdPar_sJ9wMP65A,2132
|
|
66
65
|
flock/core/config/scheduled_agent_config.py,sha256=3okCjpggJSKkc1Dp8ZJuQP010tQvN3dk8n_llbTc5aE,1506
|
|
67
66
|
flock/core/context/context.py,sha256=zdQuB1YWPJmQVv_2_sm1HK7FSnusa3Jl-83PcTuaLUk,7791
|
|
@@ -87,11 +86,11 @@ flock/core/logging/telemetry_exporter/base_exporter.py,sha256=rQJJzS6q9n2aojoSqw
|
|
|
87
86
|
flock/core/logging/telemetry_exporter/file_exporter.py,sha256=nKAjJSZtA7FqHSTuTiFtYYepaxOq7l1rDvs8U8rSBlA,3023
|
|
88
87
|
flock/core/logging/telemetry_exporter/sqlite_exporter.py,sha256=CDsiMb9QcqeXelZ6ZqPSS56ovMPGqOu6whzBZRK__Vg,3498
|
|
89
88
|
flock/core/mcp/__init__.py,sha256=g3hzM_9ntsr-Af9dE9cCZEjQ9YX2jk7-Jm-0JcHSk1A,25
|
|
90
|
-
flock/core/mcp/flock_mcp_server.py,sha256=
|
|
91
|
-
flock/core/mcp/
|
|
92
|
-
flock/core/mcp/mcp_client.py,sha256=
|
|
93
|
-
flock/core/mcp/mcp_client_manager.py,sha256=
|
|
94
|
-
flock/core/mcp/mcp_config.py,sha256=
|
|
89
|
+
flock/core/mcp/flock_mcp_server.py,sha256=Mkcod8l9jakljXDnnZQrw8JDynQ6LkAUSqJRmTsc76Y,26359
|
|
90
|
+
flock/core/mcp/flock_mcp_tool.py,sha256=Ed2aALKyV1ivZBbT11txUIlV-8ucssBKSbH3LmLllEI,6796
|
|
91
|
+
flock/core/mcp/mcp_client.py,sha256=JqY_sAYjWCDrIJDOxy-bMqhXjb7kTPHlqxth8SYKr7g,25893
|
|
92
|
+
flock/core/mcp/mcp_client_manager.py,sha256=P-m3loDqPoH2UEW5VeNamgxtoPdZPiG4iPwZ4t28Ctw,8020
|
|
93
|
+
flock/core/mcp/mcp_config.py,sha256=1cEC3u1JICXuXrGyffirAGcqNR1wdxUZG6hIKzGqHrw,16479
|
|
95
94
|
flock/core/mcp/types/__init__.py,sha256=YgEJvTXe5VfSMfJNlpefdBYJOmMbMWQsXzc_qmOAybg,25
|
|
96
95
|
flock/core/mcp/types/callbacks.py,sha256=M4dvL9-PUVmojPTK18fg8ngHqYd7AogMoO6HixM9q10,2494
|
|
97
96
|
flock/core/mcp/types/factories.py,sha256=T4fIyyJYibP8AGg_gjR1Pu5LO5xP5LsAfmBxyD6bBmY,3440
|
|
@@ -104,23 +103,23 @@ flock/core/mixin/prompt_parser.py,sha256=eOqI-FK3y17gVqpc_y5GF-WmK1Jv8mFlkZxTcgw
|
|
|
104
103
|
flock/core/orchestration/__init__.py,sha256=lu6VgCpza0c34lDVhTdtFBY9gCuXx-sdadGqxLlfHuQ,543
|
|
105
104
|
flock/core/orchestration/flock_batch_processor.py,sha256=2vqSOHd-Zk871UTai3jGXvITgcwSowaCNjvDkSWbkLg,3357
|
|
106
105
|
flock/core/orchestration/flock_evaluator.py,sha256=_Ctub0P5VOnePpaPQgb7Qw-gvJerns8uO8u2QVOyGYA,4082
|
|
107
|
-
flock/core/orchestration/flock_execution.py,sha256
|
|
108
|
-
flock/core/orchestration/flock_initialization.py,sha256=
|
|
109
|
-
flock/core/orchestration/flock_server_manager.py,sha256=
|
|
106
|
+
flock/core/orchestration/flock_execution.py,sha256=nWaiLFLmXVU8WH2d-PvfuML0UmAkg0q9peigu5dDApg,11453
|
|
107
|
+
flock/core/orchestration/flock_initialization.py,sha256=zgP9lLszPdY0jCkzF2JQrP7LUMa2ZlZMJK4wN5yjDFQ,4554
|
|
108
|
+
flock/core/orchestration/flock_server_manager.py,sha256=idDds7QGsqneY21Y5oL9NHN7fz13FlPF4W1C5HsNhZE,2568
|
|
110
109
|
flock/core/orchestration/flock_web_server.py,sha256=uLTKW2pLf4vW3MqhrA2bl3K69zHRqRqcx6vkFZHRi70,3827
|
|
111
|
-
flock/core/registry/__init__.py,sha256=
|
|
110
|
+
flock/core/registry/__init__.py,sha256=CWKLV1-lnIM1mQXbmZgyzbSFM177FDGeQDexfI5GDus,1324
|
|
112
111
|
flock/core/registry/agent_registry.py,sha256=GTRiziP70jT05--_Vn1-hBi4oM2QU7FG5wzbvesExWQ,2681
|
|
113
112
|
flock/core/registry/callable_registry.py,sha256=BpQZJ6VjUOrFqFGMg3EPkHsIigGDO8DIT9zzlpNlorc,6761
|
|
114
113
|
flock/core/registry/component_discovery.py,sha256=8xN00U044sSMRDRav0cGiKOv1yHK327buSiragjVWKo,6627
|
|
115
114
|
flock/core/registry/component_registry.py,sha256=hZF-xNPbPutlxesoXQbPW5BSmssSrcCar7olZvs6DeA,2617
|
|
116
115
|
flock/core/registry/config_mapping.py,sha256=ShSQd9QqNb2hiASsW_6h27aex23G75X2OzYy9SY-uxs,2392
|
|
117
116
|
flock/core/registry/decorators.py,sha256=nKLVHafnH4GQaMW6cRomJpzlAmIhYQfxs5VhtfBizXc,3765
|
|
118
|
-
flock/core/registry/registry_hub.py,sha256=
|
|
119
|
-
flock/core/registry/server_registry.py,sha256=
|
|
117
|
+
flock/core/registry/registry_hub.py,sha256=_neypRON3x5RjjAP4PhhGnBcwOKj2Co8tseeWlTPBYM,8068
|
|
118
|
+
flock/core/registry/server_registry.py,sha256=hNw1ZnJF5Mt1FKMkgMMDBODu2Pmgq6aFZZSNbfoEC_Y,2093
|
|
120
119
|
flock/core/registry/type_registry.py,sha256=h1DVQH8gWS6u2Lc2MmpzcfXlbhP7U2mZrMIdHrAhq6U,3109
|
|
121
120
|
flock/core/serialization/__init__.py,sha256=CML7fPgG6p4c0CDBlJ_uwV1aZZhJKK9uy3IoIHfO87w,431
|
|
122
121
|
flock/core/serialization/callable_registry.py,sha256=sUZECTZWsM3fJ8FDRQ-FgLNW9hF26nY17AD6fJKADMc,1419
|
|
123
|
-
flock/core/serialization/flock_serializer.py,sha256=
|
|
122
|
+
flock/core/serialization/flock_serializer.py,sha256=xsv6Sg1HBbXG5-oyrPqBTbGRtzBeDNGRbWokUpJR3So,35427
|
|
124
123
|
flock/core/serialization/json_encoder.py,sha256=gAKj2zU_8wQiNvdkby2hksSA4fbPNwTjup_yz1Le1Vw,1229
|
|
125
124
|
flock/core/serialization/secure_serializer.py,sha256=n5-zRvvXddgJv1FFHsaQ2wuYdL3WUSGPvG_LGaffEJo,6144
|
|
126
125
|
flock/core/serialization/serializable.py,sha256=qlv8TsTqRuklXiNuCMrvro5VKz764xC2i3FlgLJSkdk,12129
|
|
@@ -132,13 +131,13 @@ flock/core/util/input_resolver.py,sha256=XNQlx0zRyAIkeVY4SSpfDnpyGQThsEwp3aj_ylv
|
|
|
132
131
|
flock/core/util/loader.py,sha256=j3q2qem5bFMP2SmMuYjb-ISxsNGNZd1baQmpvAnRUUk,2244
|
|
133
132
|
flock/core/util/splitter.py,sha256=rDLnZX158PWkmW8vi2UfMLAMRXcHQFUIydAABd-lDGw,7154
|
|
134
133
|
flock/mcp/servers/sse/__init__.py,sha256=r6YtleRSOMJqKhTtKQeFKd3QDaUJVz9R1BGJgOm_PF8,51
|
|
135
|
-
flock/mcp/servers/sse/flock_sse_server.py,sha256=
|
|
134
|
+
flock/mcp/servers/sse/flock_sse_server.py,sha256=MfEJPtU8xHl4PrTaHDJKab92FXHStjiMhboT-o38mNA,4940
|
|
136
135
|
flock/mcp/servers/stdio/__init__.py,sha256=36QMguWwHCklLbISNNe1m2cq-y9klAWRf_QnuYpD2aY,53
|
|
137
|
-
flock/mcp/servers/stdio/flock_stdio_server.py,sha256=
|
|
136
|
+
flock/mcp/servers/stdio/flock_stdio_server.py,sha256=GTKbPAB2exxZXnHLLh9f-yw1lwam8KF2AueexsdLbHA,4881
|
|
138
137
|
flock/mcp/servers/streamable_http/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
139
|
-
flock/mcp/servers/streamable_http/flock_streamable_http_server.py,sha256=
|
|
138
|
+
flock/mcp/servers/streamable_http/flock_streamable_http_server.py,sha256=5qjv_1JB468wihIB9MPQsmB0Fy42vYmD5c4PxChyQTw,5778
|
|
140
139
|
flock/mcp/servers/websockets/__init__.py,sha256=KeNgNQRdeCQ9xgpaHB1I0-HyYeBhkifAuZPTIA8eDqM,47
|
|
141
|
-
flock/mcp/servers/websockets/flock_websocket_server.py,sha256=
|
|
140
|
+
flock/mcp/servers/websockets/flock_websocket_server.py,sha256=Gt3i5mZHIszmNwVLNkj6Kkces-2Obb12mraoqpDAcdk,4284
|
|
142
141
|
flock/platform/docker_tools.py,sha256=2QFZtYhPKJsPgCVrQIANrCcQjHDMyBHGDikV4xPYSao,1463
|
|
143
142
|
flock/platform/jaeger_install.py,sha256=MyOMJQx4TQSMYvdUJxfiGSo3YCtsfkbNXcAcQ9bjETA,2898
|
|
144
143
|
flock/themes/3024-day.toml,sha256=uOVHqEzSyHx0WlUk3D0lne4RBsNBAPCTy3C58yU7kEY,667
|
|
@@ -554,15 +553,14 @@ flock/webapp/templates/partials/_sidebar.html,sha256=yfhEcF3xKI5j1c3iq46mU8mmPvg
|
|
|
554
553
|
flock/webapp/templates/partials/_structured_data_view.html,sha256=TEaXcMGba9ruxEc_MLxygIO1qWcuSTo1FnosFtGSKWI,2101
|
|
555
554
|
flock/webapp/templates/partials/_theme_preview.html,sha256=THeMYTXzgzHJxzWqaTtUhmJyBZT3saLRAa6wzZa4qnk,1347
|
|
556
555
|
flock/workflow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
557
|
-
flock/workflow/activities.py,sha256=
|
|
558
|
-
flock/workflow/activities_unified.py,sha256=kbb_X1p68YJElqM-SIxSekruvHbmdQ-oWvJlJboNReo,10171
|
|
556
|
+
flock/workflow/activities.py,sha256=iCGy_45YKUSrNEV89JyT7C4zOZyVEEvSYZUh3qSZR0E,8533
|
|
559
557
|
flock/workflow/agent_activities.py,sha256=NhBZscflEf2IMfSRa_pBM_TRP7uVEF_O0ROvWZ33eDc,963
|
|
560
558
|
flock/workflow/agent_execution_activity.py,sha256=CzTkbjGqrPoAbldaQOS_doesosDK9mT04M8cbtvP5ps,9432
|
|
561
559
|
flock/workflow/flock_workflow.py,sha256=ZhAF82ewNRY2vvDjNpXT1D9lCVQsLOSMTaZVzdcogJc,9674
|
|
562
560
|
flock/workflow/temporal_config.py,sha256=3_8O7SDEjMsSMXsWJBfnb6XTp0TFaz39uyzSlMTSF_I,3988
|
|
563
561
|
flock/workflow/temporal_setup.py,sha256=YIHnSBntzOchHfMSh8hoLeNXrz3B1UbR14YrR6soM7A,1606
|
|
564
|
-
flock_core-0.5.
|
|
565
|
-
flock_core-0.5.
|
|
566
|
-
flock_core-0.5.
|
|
567
|
-
flock_core-0.5.
|
|
568
|
-
flock_core-0.5.
|
|
562
|
+
flock_core-0.5.0b3.dist-info/METADATA,sha256=9UbqtzRrhZ9AK2gAk04t44sD2tkbYY4Eq17z_QcYeFU,22786
|
|
563
|
+
flock_core-0.5.0b3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
564
|
+
flock_core-0.5.0b3.dist-info/entry_points.txt,sha256=rWaS5KSpkTmWySURGFZk6PhbJ87TmvcFQDi2uzjlagQ,37
|
|
565
|
+
flock_core-0.5.0b3.dist-info/licenses/LICENSE,sha256=iYEqWy0wjULzM9GAERaybP4LBiPeu7Z1NEliLUdJKSc,1072
|
|
566
|
+
flock_core-0.5.0b3.dist-info/RECORD,,
|