From a54c72938ee53233232e3a2238f61489d5913150 Mon Sep 17 00:00:00 2001 From: Andre Ratzenberger Date: Mon, 29 Sep 2025 08:54:06 +0000 Subject: [PATCH 1/2] default model --- examples/01-hello-flock.py | 2 +- uv.lock | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/01-hello-flock.py b/examples/01-hello-flock.py index 70db1f56a..ec7c9a3a4 100644 --- a/examples/01-hello-flock.py +++ b/examples/01-hello-flock.py @@ -2,7 +2,7 @@ from flock.core import DefaultAgent, Flock # 1. Create the main orchestrator -my_flock = Flock(model="openai/gpt-5-mini") # Uses DEFAULT_MODEL from environment if set +my_flock = Flock() # Uses DEFAULT_MODEL from environment if set # 2. Declaratively define an agent prd_agent = DefaultAgent( diff --git a/uv.lock b/uv.lock index f19f42bd4..68e369a95 100644 --- a/uv.lock +++ b/uv.lock @@ -1154,7 +1154,7 @@ wheels = [ [[package]] name = "flock-core" -version = "0.5.0b24" +version = "0.5.0b25" source = { editable = "." } dependencies = [ { name = "aiosqlite" }, From ec3ed62d6b166d824f923913c8b65488fa37a926 Mon Sep 17 00:00:00 2001 From: Andre Ratzenberger Date: Mon, 29 Sep 2025 08:54:33 +0000 Subject: [PATCH 2/2] versioning --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 82398ec7b..d4a884f73 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "flock-core" -version = "0.5.0b25" +version = "0.5.0b26" description = "Declarative LLM Orchestration at Scale" readme = "README.md" authors = [