diff --git a/pyproject.toml b/pyproject.toml index 447bbcd2b..97e6e4321 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "langflow" -version = "0.6.5a1" +version = "0.6.5a2" description = "A Python package with a built-in web application" authors = ["Logspace "] maintainers = [ diff --git a/src/backend/langflow/processing/process.py b/src/backend/langflow/processing/process.py index 693bd4255..2fa14e5e5 100644 --- a/src/backend/langflow/processing/process.py +++ b/src/backend/langflow/processing/process.py @@ -223,7 +223,9 @@ async def process_graph_cached( if not graph: raise ValueError("Graph not found in the session") - result = await build_graph_and_generate_result(graph, inputs, artifacts, session_id, session_service) + result = await build_graph_and_generate_result( + graph=graph, session_id=session_id, inputs=inputs, artifacts=artifacts, session_service=session_service + ) return result