Release 0.5.6 (#1125)

This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-11-08 11:52:05 -03:00 committed by GitHub
commit fe234ebac1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 517 additions and 530 deletions

1041
poetry.lock generated

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,6 @@
[tool.poetry]
name = "langflow"
version = "0.5.5"
version = "0.5.6"
description = "A Python package with a built-in web application"
authors = ["Logspace <contact@logspace.ai>"]
maintainers = [

View file

@ -206,6 +206,10 @@ class ChainVertex(Vertex):
) -> Any:
if not self._built or force:
# Check if the chain requires a PromptVertex
# Temporarily remove the code from the params
self.params.pop("code", None)
for key, value in self.params.items():
if isinstance(value, PromptVertex):
# Build the PromptVertex, passing the tools if available