Release 0.6.5 (#1400)

This release:

- Adds Components from the Community
- Changes the state management to Zustand which simplifies many parts of
Langflow's frontend
- Migrates many components to CustomComponent to eventually put all
components in the same framework
- Fixes migration problems
This commit is contained in:
Gabriel Luiz Freitas Almeida 2024-02-05 18:34:57 -03:00 committed by GitHub
commit d2bfd300a6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

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

View file

@ -284,7 +284,7 @@ export default function GenericNode({
title={
data.node?.output_types &&
data.node.output_types.length > 0
? data.node.output_types.join("|")
? data.node.output_types.join(" | ")
: data.type
}
tooltipTitle={data.node?.base_classes.join("\n")}
@ -515,7 +515,7 @@ export default function GenericNode({
}
title={
data.node?.output_types && data.node.output_types.length > 0
? data.node.output_types.join("|")
? data.node.output_types.join(" | ")
: data.type
}
tooltipTitle={data.node?.base_classes.join("\n")}