flock-core 0.2.3__py3-none-any.whl → 0.2.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.
Potentially problematic release.
This version of flock-core might be problematic. Click here for more details.
- flock/core/logging/formatters/pprint_formatter.py +10 -4
- flock/core/util/cli_helper.py +8 -1
- {flock_core-0.2.3.dist-info → flock_core-0.2.4.dist-info}/METADATA +9 -2
- {flock_core-0.2.3.dist-info → flock_core-0.2.4.dist-info}/RECORD +6 -6
- {flock_core-0.2.3.dist-info → flock_core-0.2.4.dist-info}/WHEEL +0 -0
- {flock_core-0.2.3.dist-info → flock_core-0.2.4.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,15 +1,21 @@
|
|
|
1
|
+
import json
|
|
1
2
|
from typing import Any
|
|
2
3
|
|
|
3
4
|
from flock.core.logging.formatters.base_formatter import BaseFormatter
|
|
4
5
|
|
|
5
6
|
|
|
6
7
|
class PrettyPrintFormatter(BaseFormatter):
|
|
7
|
-
def display_result(
|
|
8
|
+
def display_result(
|
|
9
|
+
self, result: dict[str, Any], agent_name: str, **kwargs
|
|
10
|
+
) -> None:
|
|
8
11
|
"""Print an agent's result using Rich formatting."""
|
|
9
|
-
from
|
|
12
|
+
from rich.console import Console
|
|
13
|
+
from rich.json import JSON
|
|
14
|
+
|
|
15
|
+
console = Console()
|
|
10
16
|
|
|
11
|
-
|
|
12
|
-
|
|
17
|
+
console.print(agent_name)
|
|
18
|
+
console.print(JSON(json.dumps(result)))
|
|
13
19
|
|
|
14
20
|
def display_data(self, data: dict[str, Any], **kwargs) -> None:
|
|
15
21
|
"""Print an agent's result using Rich formatting."""
|
flock/core/util/cli_helper.py
CHANGED
|
@@ -1,6 +1,13 @@
|
|
|
1
|
+
from importlib.metadata import PackageNotFoundError, version
|
|
2
|
+
|
|
1
3
|
from rich.console import Console
|
|
2
4
|
from rich.syntax import Text
|
|
3
5
|
|
|
6
|
+
try:
|
|
7
|
+
__version__ = version("flock-core")
|
|
8
|
+
except PackageNotFoundError:
|
|
9
|
+
__version__ = "0.2.0"
|
|
10
|
+
|
|
4
11
|
console = Console()
|
|
5
12
|
|
|
6
13
|
|
|
@@ -21,5 +28,5 @@ def display_banner():
|
|
|
21
28
|
)
|
|
22
29
|
console.print(banner_text)
|
|
23
30
|
console.print(
|
|
24
|
-
f"[bold]
|
|
31
|
+
f"[bold]v{__version__}[/] - [bold]white duck GmbH[/] - [cyan]https://whiteduck.de[/]\n"
|
|
25
32
|
)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: flock-core
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.4
|
|
4
4
|
Summary: Declarative LLM Orchestration at Scale
|
|
5
5
|
Author-email: Andre Ratzenberger <andre.ratzenberger@whiteduck.de>
|
|
6
6
|
License-File: LICENSE
|
|
@@ -36,7 +36,14 @@ Description-Content-Type: text/markdown
|
|
|
36
36
|
|
|
37
37
|
<p align="center">
|
|
38
38
|
<img src="docs/img/flock.png" width="600"><br>
|
|
39
|
-
<
|
|
39
|
+
<img alt="Dynamic TOML Badge" src="https://img.shields.io/badge/dynamic/toml?url=https%3A%2F%2Fraw.githubusercontent.com%2Fwhiteducksoftware%2Fflock%2Frefs%2Fheads%2Fbadges%2Fpyproject.toml%3Ftoken%3DGHSAT0AAAAAACVFDVNBU3S6HLJSC36P3YNQZ5LNPQQ&query=%24.project.version&style=for-the-badge&logo=pypi&logoSize=large&label=pip%20version&link=https%3A%2F%2Fpypi.org%2Fproject%2Fflock-core%2F">
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
|
|
40
47
|
|
|
41
48
|
|
|
42
49
|
## Overview
|
|
@@ -14,7 +14,7 @@ flock/core/logging/telemetry.py,sha256=T2CRSiqOWvOsXe-WRsObkkOkrrd6z-BwEYLaBUU2A
|
|
|
14
14
|
flock/core/logging/trace_and_logged.py,sha256=h4YH8s0KjK4tiBdrEZdCLd4fDzMB5-NKwqzrtkWhQw4,1999
|
|
15
15
|
flock/core/logging/formatters/base_formatter.py,sha256=CyG-X2NWq8sqEhFEO2aG7Mey5tVkIzoWiihW301_VIo,1023
|
|
16
16
|
flock/core/logging/formatters/formatter_factory.py,sha256=hmH-NpCESHkioX0GBQ5CuQR4axyIXnSRWwAZCHylx6Q,1283
|
|
17
|
-
flock/core/logging/formatters/pprint_formatter.py,sha256=
|
|
17
|
+
flock/core/logging/formatters/pprint_formatter.py,sha256=tTm2WhwlCw-SX2Ouci5I9U_HVgxNGY5SSnzB9HZh8bg,692
|
|
18
18
|
flock/core/logging/formatters/rich_formatters.py,sha256=h1FD0_cIdQBQ8P2x05XhgD1cmmP80IBNVT5jb3cAV9M,4776
|
|
19
19
|
flock/core/logging/formatters/theme_builder.py,sha256=1RUEwPIDfCjwTapbK1liasA5SdukOn7YwbZ4H4j1WkI,17364
|
|
20
20
|
flock/core/logging/formatters/themed_formatter.py,sha256=CbxmqUC7zkLzyIxngk-3dcpQ6vxPR6zaDNA2TAMitCI,16714
|
|
@@ -25,7 +25,7 @@ flock/core/mixin/prompt_parser.py,sha256=eOqI-FK3y17gVqpc_y5GF-WmK1Jv8mFlkZxTcgw
|
|
|
25
25
|
flock/core/registry/agent_registry.py,sha256=QHdr3Cb-32PEdz8jFCIZSH9OlfpRwAJMtSRpHCWJDq4,4889
|
|
26
26
|
flock/core/tools/basic_tools.py,sha256=nRc1bIz96z-WUTe_yYf9V6EfCPEncl_XnrpGdC7dEmo,8721
|
|
27
27
|
flock/core/tools/dev_tools/github.py,sha256=6ya2_eN-qITV3b_pYP24jQC3X4oZbRY5GKh1AF-9Zic,6836
|
|
28
|
-
flock/core/util/cli_helper.py,sha256=
|
|
28
|
+
flock/core/util/cli_helper.py,sha256=aHLKjl5JBLIczLzjYeUcGQlVQRlypunxV2TYeAFX0KE,1030
|
|
29
29
|
flock/core/util/input_resolver.py,sha256=OesGqX2Dld8myL9Qz04mmxLqoYqOSQC632pj1EMk9Yk,5456
|
|
30
30
|
flock/core/util/serializable.py,sha256=SymJ0YrjBx48mOBItYSqoRpKuzIc4vKWRS6ScTzre7s,2573
|
|
31
31
|
flock/themes/3024-day.toml,sha256=uOVHqEzSyHx0WlUk3D0lne4RBsNBAPCTy3C58yU7kEY,667
|
|
@@ -369,7 +369,7 @@ flock/workflow/activities.py,sha256=YEg-Gr8kzVsxWsmsZguIVhX2XwMRvhZ2OlnsJoG5g_A,
|
|
|
369
369
|
flock/workflow/agent_activities.py,sha256=NhBZscflEf2IMfSRa_pBM_TRP7uVEF_O0ROvWZ33eDc,963
|
|
370
370
|
flock/workflow/temporal_setup.py,sha256=VWBgmBgfTBjwM5ruS_dVpA5AVxx6EZ7oFPGw4j3m0l0,1091
|
|
371
371
|
flock/workflow/workflow.py,sha256=I9MryXW_bqYVTHx-nl2epbTqeRy27CAWHHA7ZZA0nAk,1696
|
|
372
|
-
flock_core-0.2.
|
|
373
|
-
flock_core-0.2.
|
|
374
|
-
flock_core-0.2.
|
|
375
|
-
flock_core-0.2.
|
|
372
|
+
flock_core-0.2.4.dist-info/METADATA,sha256=VztTdTQKj4pIiPnSearGjlMDmPA_1o0Nak_EefDzs4o,11488
|
|
373
|
+
flock_core-0.2.4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
374
|
+
flock_core-0.2.4.dist-info/licenses/LICENSE,sha256=iYEqWy0wjULzM9GAERaybP4LBiPeu7Z1NEliLUdJKSc,1072
|
|
375
|
+
flock_core-0.2.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|