From 9c025b2277ef610fc44856f39eab1ffc225f64e9 Mon Sep 17 00:00:00 2001 From: vizsatiz Date: Thu, 11 Sep 2025 15:35:09 +0530 Subject: [PATCH 1/2] Fix for arium builder --- flo_ai/flo_ai/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flo_ai/flo_ai/__init__.py b/flo_ai/flo_ai/__init__.py index 80e5a364..643c424d 100644 --- a/flo_ai/flo_ai/__init__.py +++ b/flo_ai/flo_ai/__init__.py @@ -23,6 +23,7 @@ StartNode, EndNode, Edge, + AriumBuilder, ) # Utils package - Utility functions @@ -54,7 +55,6 @@ # Arium 'Arium', 'BaseArium', - 'AriumBuilder', 'create_arium', 'MessageMemory', 'BaseMemory', From 734456448012f51967535e2196e1565243634da7 Mon Sep 17 00:00:00 2001 From: vizsatiz Date: Thu, 11 Sep 2025 15:53:54 +0530 Subject: [PATCH 2/2] Release version to 1.0.3 --- flo_ai/pyproject.toml | 2 +- flo_ai/setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/flo_ai/pyproject.toml b/flo_ai/pyproject.toml index 1657b35c..8b527246 100644 --- a/flo_ai/pyproject.toml +++ b/flo_ai/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "flo_ai" -version = "1.0.2-dev1" +version = "1.0.3" description = "A easy way to create structured AI agents" authors = ["rootflo <*@rootflo.ai>"] license = "MIT" diff --git a/flo_ai/setup.py b/flo_ai/setup.py index 076f8c8e..9c2938e8 100644 --- a/flo_ai/setup.py +++ b/flo_ai/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name='flo-ai', - version='1.0.2-dev1', + version='1.0.3', author='Rootflo', description='Create composable AI agents', long_description=long_description,