flock-core 0.5.1__py3-none-any.whl → 0.5.2__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.1.dist-info → flock_core-0.5.2.dist-info}/METADATA +13 -12
- {flock_core-0.5.1.dist-info → flock_core-0.5.2.dist-info}/RECORD +5 -5
- {flock_core-0.5.1.dist-info → flock_core-0.5.2.dist-info}/WHEEL +0 -0
- {flock_core-0.5.1.dist-info → flock_core-0.5.2.dist-info}/entry_points.txt +0 -0
- {flock_core-0.5.1.dist-info → flock_core-0.5.2.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: flock-core
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.2
|
|
4
4
|
Summary: Flock: A declrative framework for building and orchestrating AI agents.
|
|
5
5
|
Author-email: Andre Ratzenberger <andre.ratzenberger@whiteduck.de>
|
|
6
|
+
License: MIT
|
|
6
7
|
License-File: LICENSE
|
|
7
8
|
Requires-Python: >=3.10
|
|
8
9
|
Requires-Dist: aiosqlite>=0.20.0
|
|
@@ -34,10 +35,10 @@ Description-Content-Type: text/markdown
|
|
|
34
35
|
<img alt="Flock Banner" src="docs/assets/images/flock.png" width="800">
|
|
35
36
|
</p>
|
|
36
37
|
<p align="center">
|
|
37
|
-
<a href="https://
|
|
38
|
+
<a href="https://whiteducksoftware.github.io/flock/" target="_blank"><img alt="Documentation" src="https://img.shields.io/badge/docs-online-blue?style=for-the-badge&logo=readthedocs"></a>
|
|
38
39
|
<a href="https://pypi.org/project/flock-core/" target="_blank"><img alt="PyPI Version" src="https://img.shields.io/pypi/v/flock-core?style=for-the-badge&logo=pypi&label=pip%20version"></a>
|
|
39
40
|
<img alt="Python Version" src="https://img.shields.io/badge/python-3.10%2B-blue?style=for-the-badge&logo=python">
|
|
40
|
-
<a href="LICENSE" target="_blank"><img alt="License" src="https://img.shields.io/
|
|
41
|
+
<a href="LICENSE" target="_blank"><img alt="License" src="https://img.shields.io/github/license/whiteducksoftware/flock?style=for-the-badge"></a>
|
|
41
42
|
<a href="https://whiteduck.de" target="_blank"><img alt="Built by white duck" src="https://img.shields.io/badge/Built%20by-white%20duck%20GmbH-white?style=for-the-badge&labelColor=black"></a>
|
|
42
43
|
<img alt="Test Coverage" src="https://img.shields.io/badge/coverage-77%25-green?style=for-the-badge">
|
|
43
44
|
<img alt="Tests" src="https://img.shields.io/badge/tests-743%20passing-brightgreen?style=for-the-badge">
|
|
@@ -51,14 +52,14 @@ Description-Content-Type: text/markdown
|
|
|
51
52
|
|
|
52
53
|
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.
|
|
53
54
|
|
|
54
|
-
**📖 [Read the full documentation →](https://
|
|
55
|
+
**📖 [Read the full documentation →](https://whiteducksoftware.github.io/flock)**
|
|
55
56
|
|
|
56
57
|
**Quick links:**
|
|
57
|
-
- **[Getting Started](https://
|
|
58
|
-
- **[Tutorials](https://
|
|
59
|
-
- **[User Guides](https://
|
|
60
|
-
- **[API Reference](https://
|
|
61
|
-
- **[Roadmap](https://
|
|
58
|
+
- **[Getting Started](https://whiteducksoftware.github.io/flock/getting-started/installation/)** - Installation and first steps
|
|
59
|
+
- **[Tutorials](https://whiteducksoftware.github.io/flock/tutorials/)** - Step-by-step learning path
|
|
60
|
+
- **[User Guides](https://whiteducksoftware.github.io/flock/guides/)** - In-depth feature documentation
|
|
61
|
+
- **[API Reference](https://whiteducksoftware.github.io/flock/reference/api/)** - Complete API documentation
|
|
62
|
+
- **[Roadmap](https://whiteducksoftware.github.io/flock/about/roadmap/)** - What's coming in v1.0
|
|
62
63
|
|
|
63
64
|
---
|
|
64
65
|
|
|
@@ -890,14 +891,14 @@ uv run python examples/02-dashboard/01_declarative_pizza.py
|
|
|
890
891
|
- 📚 [Examples README](examples/README.md) - 12-step learning path from basics to advanced
|
|
891
892
|
- 🖥️ [CLI Examples](examples/01-cli/) - Detailed console output examples (01-12)
|
|
892
893
|
- 📊 [Dashboard Examples](examples/02-dashboard/) - Interactive visualization examples (01-12)
|
|
893
|
-
- 📖 [Documentation](https://
|
|
894
|
+
- 📖 [Documentation](https://whiteducksoftware.github.io/flock) - Complete online documentation
|
|
894
895
|
- 📘 [AGENTS.md](AGENTS.md) - Development guide
|
|
895
896
|
|
|
896
897
|
---
|
|
897
898
|
|
|
898
899
|
## Contributing
|
|
899
900
|
|
|
900
|
-
We're building Flock in the open. See **[Contributing Guide](https://
|
|
901
|
+
We're building Flock in the open. See **[Contributing Guide](https://whiteducksoftware.github.io/flock/about/contributing/)** for development setup, or check [CONTRIBUTING.md](CONTRIBUTING.md) and [AGENTS.md](AGENTS.md) locally.
|
|
901
902
|
|
|
902
903
|
**We welcome:**
|
|
903
904
|
- Bug reports and feature requests
|
|
@@ -960,7 +961,7 @@ We're calling this 0.5 to signal:
|
|
|
960
961
|
|
|
961
962
|
**"Declarative contracts eliminate prompt hell. Blackboard architecture eliminates graph spaghetti. Proven patterns applied to modern LLMs."**
|
|
962
963
|
|
|
963
|
-
[⭐ Star on GitHub](https://github.com/whiteducksoftware/flock-flow) | [📖 Documentation](https://
|
|
964
|
+
[⭐ Star on GitHub](https://github.com/whiteducksoftware/flock-flow) | [📖 Documentation](https://whiteducksoftware.github.io/flock) | [🚀 Try Examples](examples/) | [💼 Enterprise Support](mailto:support@whiteduck.de)
|
|
964
965
|
|
|
965
966
|
</div>
|
|
966
967
|
|
|
@@ -521,8 +521,8 @@ flock/themes/zenburned.toml,sha256=UEmquBbcAO3Zj652XKUwCsNoC2iQSlIh-q5c6DH-7Kc,1
|
|
|
521
521
|
flock/themes/zenwritten-dark.toml,sha256=-dgaUfg1iCr5Dv4UEeHv_cN4GrPUCWAiHSxWK20X1kI,1663
|
|
522
522
|
flock/themes/zenwritten-light.toml,sha256=G1iEheCPfBNsMTGaVpEVpDzYBHA_T-MV27rolUYolmE,1666
|
|
523
523
|
flock/utility/output_utility_component.py,sha256=yVHhlIIIoYKziI5UyT_zvQb4G-NsxCTgLwA1wXXTTj4,9047
|
|
524
|
-
flock_core-0.5.
|
|
525
|
-
flock_core-0.5.
|
|
526
|
-
flock_core-0.5.
|
|
527
|
-
flock_core-0.5.
|
|
528
|
-
flock_core-0.5.
|
|
524
|
+
flock_core-0.5.2.dist-info/METADATA,sha256=tCrSJS6TpMQftwK0xDIAmW3cK2-2r33WaM58tyvX4i0,36666
|
|
525
|
+
flock_core-0.5.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
526
|
+
flock_core-0.5.2.dist-info/entry_points.txt,sha256=UQdPmtHd97gSA_IdLt9MOd-1rrf_WO-qsQeIiHWVrp4,42
|
|
527
|
+
flock_core-0.5.2.dist-info/licenses/LICENSE,sha256=U3IZuTbC0yLj7huwJdldLBipSOHF4cPf6cUOodFiaBE,1072
|
|
528
|
+
flock_core-0.5.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|