Fix memory inputs and update function arguments (#1334)

Refactor process_graph_cached function

Update version to 0.6.5a2 in pyproject.toml
This commit is contained in:
Gabriel Luiz Freitas Almeida 2024-01-14 17:51:19 -03:00 committed by GitHub
commit c7daa1d078
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View file

@ -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 <contact@logspace.ai>"]
maintainers = [

View file

@ -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