Added colors to types

This commit is contained in:
Lucas Oliveira 2023-12-04 16:35:06 -03:00
commit d19fdf5373
2 changed files with 11 additions and 3 deletions

View file

@ -464,10 +464,10 @@ export default function GenericNode({
data={data}
color={
nodeColors[
types[data.node?.template[templateField].type!]
data.node?.template[templateField].type!
] ??
nodeColors[
data.node?.template[templateField].type!
types[data.node?.template[templateField].type!]
] ??
nodeColors.unknown
}
@ -519,7 +519,13 @@ export default function GenericNode({
dataType: data.type,
})}
data={data}
color={nodeColors[types[data.type]] ?? nodeColors.unknown}
color={
(data.node?.output_types &&
data.node.output_types.length > 0
? nodeColors[data.node.output_types[0]] ??
nodeColors[types[data.node.output_types[0]]]
: nodeColors[types[data.type]]) ?? nodeColors.unknown
}
title={
data.node?.output_types && data.node.output_types.length > 0
? data.node.output_types.join("|")

View file

@ -174,6 +174,8 @@ export const nodeColors: { [char: string]: string } = {
prompts: "#4367BF",
llms: "#6344BE",
chains: "#FE7500",
Document: "#7AAE42",
list: "#9AAE42",
agents: "#903BBE",
tools: "#FF3434",
memories: "#F5B85A",