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:
commit
c7daa1d078
2 changed files with 4 additions and 2 deletions
|
|
@ -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 = [
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue