flock-core 0.5.0b9__py3-none-any.whl → 0.5.0b10__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/components/__init__.py +5 -3
- flock/core/component/agent_component_base.py +2 -1
- {flock_core-0.5.0b9.dist-info → flock_core-0.5.0b10.dist-info}/METADATA +1 -1
- {flock_core-0.5.0b9.dist-info → flock_core-0.5.0b10.dist-info}/RECORD +7 -7
- {flock_core-0.5.0b9.dist-info → flock_core-0.5.0b10.dist-info}/WHEEL +0 -0
- {flock_core-0.5.0b9.dist-info → flock_core-0.5.0b10.dist-info}/entry_points.txt +0 -0
- {flock_core-0.5.0b9.dist-info → flock_core-0.5.0b10.dist-info}/licenses/LICENSE +0 -0
flock/components/__init__.py
CHANGED
|
@@ -2,7 +2,9 @@
|
|
|
2
2
|
"""Unified component implementations for Flock agents."""
|
|
3
3
|
|
|
4
4
|
# Evaluation components
|
|
5
|
-
from .evaluation.declarative_evaluation_component import
|
|
5
|
+
from .evaluation.declarative_evaluation_component import (
|
|
6
|
+
DeclarativeEvaluationComponent,
|
|
7
|
+
)
|
|
6
8
|
|
|
7
9
|
# Routing components
|
|
8
10
|
from .routing.conditional_routing_component import ConditionalRoutingComponent
|
|
@@ -15,10 +17,10 @@ from .utility.metrics_utility_component import MetricsUtilityComponent
|
|
|
15
17
|
from .utility.output_utility_component import OutputUtilityComponent
|
|
16
18
|
|
|
17
19
|
__all__ = [
|
|
18
|
-
# Evaluation
|
|
19
|
-
"DeclarativeEvaluationComponent",
|
|
20
20
|
# Routing
|
|
21
21
|
"ConditionalRoutingComponent",
|
|
22
|
+
# Evaluation
|
|
23
|
+
"DeclarativeEvaluationComponent",
|
|
22
24
|
"DefaultRoutingComponent",
|
|
23
25
|
"LLMRoutingComponent",
|
|
24
26
|
# Utility
|
|
@@ -7,6 +7,7 @@ from typing import Any, TypeVar
|
|
|
7
7
|
from pydantic import BaseModel, Field, create_model
|
|
8
8
|
|
|
9
9
|
from flock.core.context.context import FlockContext
|
|
10
|
+
|
|
10
11
|
# HandOffRequest removed - using agent.next_agent directly
|
|
11
12
|
|
|
12
13
|
T = TypeVar("T", bound="AgentComponentConfig")
|
|
@@ -58,7 +59,7 @@ class AgentComponent(BaseModel, ABC):
|
|
|
58
59
|
Components can specialize by:
|
|
59
60
|
- EvaluationComponentBase: Implements evaluate_core() for agent intelligence
|
|
60
61
|
- RoutingComponentBase: Implements determine_next_step() for workflow routing
|
|
61
|
-
- UtilityComponentBase: Uses standard lifecycle hooks for cross-cutting concerns
|
|
62
|
+
- UtilityComponentBase: Uses standard lifecycle hooks for cross-cutting concerns
|
|
62
63
|
"""
|
|
63
64
|
|
|
64
65
|
name: str = Field(
|
|
@@ -25,7 +25,7 @@ flock/cli/utils.py,sha256=JJrvM-1D2tbWkicrtkhOgRqVqYb0MdA2XtHYGOYuPRw,4644
|
|
|
25
25
|
flock/cli/view_results.py,sha256=dOzK0O1FHSIDERnx48y-2Xke9BkOHS7pcOhs64AyIg0,781
|
|
26
26
|
flock/cli/yaml_editor.py,sha256=K3N0bh61G1TSDAZDnurqW9e_-hO6CtSQKXQqlDhCjVo,12527
|
|
27
27
|
flock/cli/assets/release_notes.md,sha256=bqnk50jxM3w5uY44Dc7MkdT8XmRREFxrVBAG9XCOSSU,4896
|
|
28
|
-
flock/components/__init__.py,sha256=
|
|
28
|
+
flock/components/__init__.py,sha256=qDcaP0O7_b5RlUEXluqwskpKCkhM73kSMeNXReze63M,963
|
|
29
29
|
flock/components/evaluation/__init__.py,sha256=_M3UlRFeNN90fEny6byt5VdLDE5o5khbd0EPT0o9S9k,303
|
|
30
30
|
flock/components/evaluation/declarative_evaluation_component.py,sha256=yxDv1g4ue5VsnLCEAEZepu4frh8eBwZVqTDogawyxTo,8597
|
|
31
31
|
flock/components/routing/__init__.py,sha256=BH_pFm9T6bUuf8HH4byDJ0dO0fzEVHv9m-ghUdDVdm0,542
|
|
@@ -57,7 +57,7 @@ flock/core/api/run_store.py,sha256=bFodJvVyWogzoezVy0cOoWWU3MdEBXf_6_5sBqCRWps,9
|
|
|
57
57
|
flock/core/api/runner.py,sha256=3izg6cVk1RoR1hDIDwMAO1gi3lnLcp8DPv7AnJBYx6A,1443
|
|
58
58
|
flock/core/api/service.py,sha256=52JBZ8jw4xgkrnY1nGgKr8MvtVgKnBsTrGRtop_SLZQ,11369
|
|
59
59
|
flock/core/component/__init__.py,sha256=84fXB3tlxio1bvjFw8UvL4_Kl6wcYZ3Nzwyuyc89k_U,450
|
|
60
|
-
flock/core/component/agent_component_base.py,sha256=
|
|
60
|
+
flock/core/component/agent_component_base.py,sha256=ifHGcXI-7Q0JEcLCCS8OBrYNmLiuznHiKBhX5QpgInM,10665
|
|
61
61
|
flock/core/component/evaluation_component.py,sha256=IvhS6NgUTH-UWft42Cmk3hK03xGM87kYAmKlQcIcOfs,2016
|
|
62
62
|
flock/core/component/routing_component.py,sha256=gXUpMAf5Ty831FAQ20EAiAW8OkX8jjhgq7yCj4hGEBU,2669
|
|
63
63
|
flock/core/component/utility_component.py,sha256=05DTltnp8-xNGOPVpmKIxG8ry0VNB3PjojOzLZMyrI0,2322
|
|
@@ -549,8 +549,8 @@ flock/workflow/agent_execution_activity.py,sha256=CzTkbjGqrPoAbldaQOS_doesosDK9m
|
|
|
549
549
|
flock/workflow/flock_workflow.py,sha256=ZhAF82ewNRY2vvDjNpXT1D9lCVQsLOSMTaZVzdcogJc,9674
|
|
550
550
|
flock/workflow/temporal_config.py,sha256=3_8O7SDEjMsSMXsWJBfnb6XTp0TFaz39uyzSlMTSF_I,3988
|
|
551
551
|
flock/workflow/temporal_setup.py,sha256=YIHnSBntzOchHfMSh8hoLeNXrz3B1UbR14YrR6soM7A,1606
|
|
552
|
-
flock_core-0.5.
|
|
553
|
-
flock_core-0.5.
|
|
554
|
-
flock_core-0.5.
|
|
555
|
-
flock_core-0.5.
|
|
556
|
-
flock_core-0.5.
|
|
552
|
+
flock_core-0.5.0b10.dist-info/METADATA,sha256=jBfT5Gn8ynYzdelP_t8WQ0mNEWZ6Hmdjm7rHfuuqFgg,9911
|
|
553
|
+
flock_core-0.5.0b10.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
554
|
+
flock_core-0.5.0b10.dist-info/entry_points.txt,sha256=rWaS5KSpkTmWySURGFZk6PhbJ87TmvcFQDi2uzjlagQ,37
|
|
555
|
+
flock_core-0.5.0b10.dist-info/licenses/LICENSE,sha256=iYEqWy0wjULzM9GAERaybP4LBiPeu7Z1NEliLUdJKSc,1072
|
|
556
|
+
flock_core-0.5.0b10.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|