flock-core 0.5.0b12__py3-none-any.whl → 0.5.0b14__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/evaluation/declarative_evaluation_component.py +4 -5
- flock/core/flock_factory.py +1 -1
- flock/webapp/app/services/flock_service.py +1 -1
- {flock_core-0.5.0b12.dist-info → flock_core-0.5.0b14.dist-info}/METADATA +5 -5
- {flock_core-0.5.0b12.dist-info → flock_core-0.5.0b14.dist-info}/RECORD +8 -8
- {flock_core-0.5.0b12.dist-info → flock_core-0.5.0b14.dist-info}/WHEEL +0 -0
- {flock_core-0.5.0b12.dist-info → flock_core-0.5.0b14.dist-info}/entry_points.txt +0 -0
- {flock_core-0.5.0b12.dist-info → flock_core-0.5.0b14.dist-info}/licenses/LICENSE +0 -0
|
@@ -28,7 +28,7 @@ class DeclarativeEvaluationConfig(AgentComponentConfig):
|
|
|
28
28
|
override_evaluator_type: str | None = None
|
|
29
29
|
model: str | None = "openai/gpt-4o"
|
|
30
30
|
use_cache: bool = True
|
|
31
|
-
temperature: float =
|
|
31
|
+
temperature: float = 1.0
|
|
32
32
|
max_tokens: int = 8192
|
|
33
33
|
max_retries: int = 3
|
|
34
34
|
max_tool_calls: int = 10
|
|
@@ -70,12 +70,11 @@ class DeclarativeEvaluationComponent(
|
|
|
70
70
|
super().__init__(**data)
|
|
71
71
|
|
|
72
72
|
@override
|
|
73
|
-
def set_model(self, model: str, temperature: float =
|
|
73
|
+
def set_model(self, model: str, temperature: float = 1.0, max_tokens: int = 8192) -> None:
|
|
74
74
|
"""Set the model for the evaluation component."""
|
|
75
75
|
self.config.model = model
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
self.config.max_tokens = 32768
|
|
76
|
+
self.config.temperature = temperature
|
|
77
|
+
self.config.max_tokens = max_tokens
|
|
79
78
|
|
|
80
79
|
async def evaluate_core(
|
|
81
80
|
self,
|
flock/core/flock_factory.py
CHANGED
|
@@ -398,7 +398,7 @@ class FlockFactory:
|
|
|
398
398
|
enable_rich_tables: bool = False,
|
|
399
399
|
output_theme: OutputTheme = OutputTheme.abernathy,
|
|
400
400
|
wait_for_input: bool = False,
|
|
401
|
-
temperature: float =
|
|
401
|
+
temperature: float = 1.0,
|
|
402
402
|
max_tokens: int = 8192,
|
|
403
403
|
max_tool_calls: int = 10,
|
|
404
404
|
max_retries: int = 3,
|
|
@@ -12,8 +12,8 @@ else:
|
|
|
12
12
|
FlockFactory = "flock.core.flock_factory.FlockFactory"
|
|
13
13
|
|
|
14
14
|
from flock.core.api.run_store import RunStore
|
|
15
|
-
from flock.core.flock_registry import get_registry
|
|
16
15
|
from flock.core.logging.logging import get_logger
|
|
16
|
+
from flock.core.registry import get_registry
|
|
17
17
|
from flock.webapp.app.config import FLOCK_FILES_DIR
|
|
18
18
|
from flock.webapp.app.dependencies import set_global_flock_services
|
|
19
19
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: flock-core
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.0b14
|
|
4
4
|
Summary: Declarative LLM Orchestration at Scale
|
|
5
5
|
Author-email: Andre Ratzenberger <andre.ratzenberger@whiteduck.de>
|
|
6
6
|
License-File: LICENSE
|
|
@@ -19,7 +19,7 @@ Requires-Dist: devtools>=0.12.2
|
|
|
19
19
|
Requires-Dist: dspy==2.6.23
|
|
20
20
|
Requires-Dist: fastapi>=0.115.8
|
|
21
21
|
Requires-Dist: httpx>=0.28.1
|
|
22
|
-
Requires-Dist: litellm==
|
|
22
|
+
Requires-Dist: litellm[proxy]==v1.75.3
|
|
23
23
|
Requires-Dist: loguru>=0.7.3
|
|
24
24
|
Requires-Dist: markdown2>=2.5.3
|
|
25
25
|
Requires-Dist: mcp>=1.7.1
|
|
@@ -44,7 +44,7 @@ Requires-Dist: python-decouple>=3.8
|
|
|
44
44
|
Requires-Dist: python-dotenv>=1.0.1
|
|
45
45
|
Requires-Dist: pyyaml>=6.0
|
|
46
46
|
Requires-Dist: questionary>=2.1.0
|
|
47
|
-
Requires-Dist: rich>=13.
|
|
47
|
+
Requires-Dist: rich>=13.7.0
|
|
48
48
|
Requires-Dist: rouge-score>=0.1.2
|
|
49
49
|
Requires-Dist: sentence-transformers>=3.4.1
|
|
50
50
|
Requires-Dist: temporalio>=1.9.0
|
|
@@ -52,9 +52,9 @@ Requires-Dist: thefuzz>=0.22.1
|
|
|
52
52
|
Requires-Dist: tiktoken>=0.8.0
|
|
53
53
|
Requires-Dist: toml>=0.10.2
|
|
54
54
|
Requires-Dist: tqdm>=4.60.1
|
|
55
|
-
Requires-Dist: uvicorn>=0.
|
|
55
|
+
Requires-Dist: uvicorn>=0.29.0
|
|
56
56
|
Requires-Dist: wd-di>=0.2.14
|
|
57
|
-
Requires-Dist: websockets>=
|
|
57
|
+
Requires-Dist: websockets>=13.0.1
|
|
58
58
|
Requires-Dist: werkzeug>=3.1.3
|
|
59
59
|
Requires-Dist: xlsxwriter>=3.2.3
|
|
60
60
|
Provides-Extra: memory
|
|
@@ -27,7 +27,7 @@ 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=qDcaP0O7_b5RlUEXluqwskpKCkhM73kSMeNXReze63M,963
|
|
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=xy0nzoawXm1HFVTNW0PSVUeUlt-nXxzA5gLexf7jgsE,8899
|
|
31
31
|
flock/components/routing/__init__.py,sha256=BH_pFm9T6bUuf8HH4byDJ0dO0fzEVHv9m-ghUdDVdm0,542
|
|
32
32
|
flock/components/routing/conditional_routing_component.py,sha256=WqZLMz-0Dhfb97xvttNrJCIVe6FNMLEQ2m4KQTDpIbI,21374
|
|
33
33
|
flock/components/routing/default_routing_component.py,sha256=ZHt2Kjf-GHB5n7evU5NSGeQJ1Wuims5soeMswqaUb1E,3370
|
|
@@ -39,7 +39,7 @@ flock/components/utility/output_utility_component.py,sha256=c4K_PL3bGqdyy_v6dnOr
|
|
|
39
39
|
flock/core/__init__.py,sha256=ntCQ_wlgvRVNFph3drbFvyaqgtN30487V18YoJzcIFE,1332
|
|
40
40
|
flock/core/flock.py,sha256=dN-asYsN2QOolZtYM5U8bRWEWkGckKRyhyy2n1xQ9b8,23148
|
|
41
41
|
flock/core/flock_agent.py,sha256=5n4Khlyc-xRaV65JFnCavNXeUCXMuL3PNS9T1tsTl7U,12023
|
|
42
|
-
flock/core/flock_factory.py,sha256
|
|
42
|
+
flock/core/flock_factory.py,sha256=-a4buSge2cdp1FwTjer283wbamSEyLeUQs_-MeM-S2Y,20049
|
|
43
43
|
flock/core/flock_scheduler.py,sha256=ng_s7gyijmc-AmYvBn5rtg61CSUZiIkXPRSlA1xO6VQ,8766
|
|
44
44
|
flock/core/flock_server_manager.py,sha256=tM_nOs37vAbEvxmhwy_DL2JPvgFViWroNxrRSu5MfUQ,4523
|
|
45
45
|
flock/core/agent/__init__.py,sha256=l32KFMJnC_gidMXpAXK8-OX228bWOhNc8OY_NzXm59Q,515
|
|
@@ -494,7 +494,7 @@ flock/webapp/app/api/flock_management.py,sha256=1o-6-36kTnUjI3am_BqLpdrcz0aqFXrx
|
|
|
494
494
|
flock/webapp/app/api/registry_viewer.py,sha256=IoInxJiRR0yFlecG_l2_eRc6l35RQQyEDMG9BcBkipY,1020
|
|
495
495
|
flock/webapp/app/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
496
496
|
flock/webapp/app/services/feedback_file_service.py,sha256=6WYJjml8lt_ULH5vq7JSWrPQPvUSLvp91qMBt-_tg5Q,9376
|
|
497
|
-
flock/webapp/app/services/flock_service.py,sha256=
|
|
497
|
+
flock/webapp/app/services/flock_service.py,sha256=a2gcmx7_8uxSnu_Y3IlEl6e-JbeWO5_ejDyE5yOKVeA,14929
|
|
498
498
|
flock/webapp/app/services/sharing_models.py,sha256=XeJk1akILV_1l-cIUaG8k_eYhjV3EWBCWZ2kpwbdImA,3609
|
|
499
499
|
flock/webapp/app/services/sharing_store.py,sha256=Ee7D-2g44oM_PixxEuN1oqe1PmBqONHvfo3LY7SMlzY,27164
|
|
500
500
|
flock/webapp/app/templates/theme_mapper.html,sha256=z8ZY7nmk6PiUGzD_-px7wSXcEnuBM121rMq6u-2oaCo,14249
|
|
@@ -550,8 +550,8 @@ flock/workflow/agent_execution_activity.py,sha256=CzTkbjGqrPoAbldaQOS_doesosDK9m
|
|
|
550
550
|
flock/workflow/flock_workflow.py,sha256=ZhAF82ewNRY2vvDjNpXT1D9lCVQsLOSMTaZVzdcogJc,9674
|
|
551
551
|
flock/workflow/temporal_config.py,sha256=3_8O7SDEjMsSMXsWJBfnb6XTp0TFaz39uyzSlMTSF_I,3988
|
|
552
552
|
flock/workflow/temporal_setup.py,sha256=YIHnSBntzOchHfMSh8hoLeNXrz3B1UbR14YrR6soM7A,1606
|
|
553
|
-
flock_core-0.5.
|
|
554
|
-
flock_core-0.5.
|
|
555
|
-
flock_core-0.5.
|
|
556
|
-
flock_core-0.5.
|
|
557
|
-
flock_core-0.5.
|
|
553
|
+
flock_core-0.5.0b14.dist-info/METADATA,sha256=lgPu-j6u9envD7uigX2Yr1Ukw3LbqTod4NmHx5l3t0o,10026
|
|
554
|
+
flock_core-0.5.0b14.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
555
|
+
flock_core-0.5.0b14.dist-info/entry_points.txt,sha256=rWaS5KSpkTmWySURGFZk6PhbJ87TmvcFQDi2uzjlagQ,37
|
|
556
|
+
flock_core-0.5.0b14.dist-info/licenses/LICENSE,sha256=iYEqWy0wjULzM9GAERaybP4LBiPeu7Z1NEliLUdJKSc,1072
|
|
557
|
+
flock_core-0.5.0b14.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|