Remove redundant base types from

CUSTOM_COMPONENT_SUPPORTED_TYPES
This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-12-01 15:10:24 -03:00
commit 4d6973ad19

View file

@ -53,12 +53,6 @@ LANGCHAIN_BASE_TYPES = {
# Langchain base types plus Python base types
CUSTOM_COMPONENT_SUPPORTED_TYPES = {
**LANGCHAIN_BASE_TYPES,
"str": str,
"int": int,
"float": float,
"bool": bool,
"list": list,
"dict": dict,
"NestedDict": NestedDict,
"Data": Data,
"Object": Object,