flock-core 0.5.0b58__py3-none-any.whl → 0.5.0b59__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-0.5.0b58.dist-info → flock_core-0.5.0b59.dist-info}/METADATA +9 -9
- {flock_core-0.5.0b58.dist-info → flock_core-0.5.0b59.dist-info}/RECORD +5 -5
- {flock_core-0.5.0b58.dist-info → flock_core-0.5.0b59.dist-info}/WHEEL +0 -0
- {flock_core-0.5.0b58.dist-info → flock_core-0.5.0b59.dist-info}/entry_points.txt +0 -0
- {flock_core-0.5.0b58.dist-info → flock_core-0.5.0b59.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: flock-core
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.0b59
|
|
4
4
|
Summary: Add your description here
|
|
5
5
|
Author-email: Andre Ratzenberger <andre.ratzenberger@whiteduck.de>
|
|
6
6
|
License-File: LICENSE
|
|
@@ -44,7 +44,7 @@ Description-Content-Type: text/markdown
|
|
|
44
44
|
|
|
45
45
|
> **Stop engineering prompts. Start declaring contracts.**
|
|
46
46
|
|
|
47
|
-
Flock is a production-focused framework for orchestrating AI agents through **declarative type contracts** and **blackboard architecture
|
|
47
|
+
Flock is a production-focused framework for orchestrating AI agents through **declarative type contracts** and **blackboard architecture**—proven patterns from distributed systems, decades of experience with microservice architectures, and classical AI—now applied to modern LLMs.
|
|
48
48
|
|
|
49
49
|
|
|
50
50
|
|
|
@@ -62,8 +62,8 @@ prompt = """You are an expert code reviewer. When you receive code, you should..
|
|
|
62
62
|
|
|
63
63
|
# 500-line prompt that breaks when models update
|
|
64
64
|
|
|
65
|
-
# How do I know that there isn't an even better prompt (you don't)
|
|
66
|
-
# ->
|
|
65
|
+
# How do I know that there isn't an even better prompt? (you don't)
|
|
66
|
+
# -> proving 'best possible performance' is impossible
|
|
67
67
|
```
|
|
68
68
|
|
|
69
69
|
**🧪 Testing Nightmares**
|
|
@@ -90,12 +90,12 @@ workflow.add_edge("agent_b", "agent_c")
|
|
|
90
90
|
```python
|
|
91
91
|
# One orchestrator needs domain knowledge of 20+ agents to route correctly
|
|
92
92
|
# Orchestrator 'guesses' next agent based on a natural language description.
|
|
93
|
-
#
|
|
93
|
+
# Not suitable for critical systems.
|
|
94
94
|
```
|
|
95
95
|
|
|
96
96
|
These aren't framework limitations, they're **architectural choices** that don't scale.
|
|
97
97
|
|
|
98
|
-
|
|
98
|
+
These challenges are solvable—decades of experience with microservices have taught us hard lessons about decoupling, orchestration, and reliability. Let's apply those lessons!
|
|
99
99
|
|
|
100
100
|
---
|
|
101
101
|
|
|
@@ -205,7 +205,7 @@ performance = flock.agent("perf").consumes(Scan).publishes(PerfAnalysis)
|
|
|
205
205
|
- ✅ **Loose coupling** - Agents don't know about each other, just data types
|
|
206
206
|
- ✅ **Scalable** - O(n) complexity, not O(n²) edges
|
|
207
207
|
|
|
208
|
-
**This is not a new idea.** Blackboard architecture powered groundbreaking AI systems since the 1970s (Hearsay-II, HASP/SIAP, BB1). We're applying proven patterns to modern LLMs.
|
|
208
|
+
**This is not a new idea.** Blackboard architecture has powered groundbreaking AI systems since the 1970s (Hearsay-II, HASP/SIAP, BB1). We're applying proven patterns to modern LLMs.
|
|
209
209
|
|
|
210
210
|
---
|
|
211
211
|
|
|
@@ -627,7 +627,7 @@ Flock uses a fundamentally different coordination pattern than most multi-agent
|
|
|
627
627
|
### What Works Today (v0.5.0)
|
|
628
628
|
|
|
629
629
|
**✅ Production-ready core:**
|
|
630
|
-
-
|
|
630
|
+
- More than 700 tests, with >75% coverage (>90% on critical paths)
|
|
631
631
|
- Blackboard orchestrator with typed artifacts
|
|
632
632
|
- Parallel + sequential execution (automatic)
|
|
633
633
|
- Zero-trust security (5 visibility types)
|
|
@@ -673,7 +673,7 @@ We're not building a toy framework. We're building enterprise infrastructure for
|
|
|
673
673
|
|
|
674
674
|
### Flock 1.0 - Q4 2025 Release
|
|
675
675
|
|
|
676
|
-
**We're confident
|
|
676
|
+
**We're confident we can deliver all enterprise features by Q4 2025:**
|
|
677
677
|
|
|
678
678
|
**🏢 Enterprise Persistence**
|
|
679
679
|
- Redis and PostgreSQL backends for durable blackboard state
|
|
@@ -508,8 +508,8 @@ flock/themes/zenburned.toml,sha256=UEmquBbcAO3Zj652XKUwCsNoC2iQSlIh-q5c6DH-7Kc,1
|
|
|
508
508
|
flock/themes/zenwritten-dark.toml,sha256=-dgaUfg1iCr5Dv4UEeHv_cN4GrPUCWAiHSxWK20X1kI,1663
|
|
509
509
|
flock/themes/zenwritten-light.toml,sha256=G1iEheCPfBNsMTGaVpEVpDzYBHA_T-MV27rolUYolmE,1666
|
|
510
510
|
flock/utility/output_utility_component.py,sha256=yVHhlIIIoYKziI5UyT_zvQb4G-NsxCTgLwA1wXXTTj4,9047
|
|
511
|
-
flock_core-0.5.
|
|
512
|
-
flock_core-0.5.
|
|
513
|
-
flock_core-0.5.
|
|
514
|
-
flock_core-0.5.
|
|
515
|
-
flock_core-0.5.
|
|
511
|
+
flock_core-0.5.0b59.dist-info/METADATA,sha256=giTj_P11jQIQwHGwYtXmUS5MK6_Rb2au_3Ytw_w79U0,34735
|
|
512
|
+
flock_core-0.5.0b59.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
513
|
+
flock_core-0.5.0b59.dist-info/entry_points.txt,sha256=UQdPmtHd97gSA_IdLt9MOd-1rrf_WO-qsQeIiHWVrp4,42
|
|
514
|
+
flock_core-0.5.0b59.dist-info/licenses/LICENSE,sha256=U3IZuTbC0yLj7huwJdldLBipSOHF4cPf6cUOodFiaBE,1072
|
|
515
|
+
flock_core-0.5.0b59.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|