From 865d3adf3e4b92147a5e424b4807912b4215931e Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Wed, 17 Jul 2024 12:59:03 -0300 Subject: [PATCH] feat: add astra_assistants color to nodeColors and nodeNames (#2743) Add a new color and name for the "astra_assistants" node in the styleUtils.ts file. --- src/frontend/src/utils/styleUtils.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/frontend/src/utils/styleUtils.ts b/src/frontend/src/utils/styleUtils.ts index d4389642d..c3a4bf30c 100644 --- a/src/frontend/src/utils/styleUtils.ts +++ b/src/frontend/src/utils/styleUtils.ts @@ -275,6 +275,7 @@ export const nodeColors: { [char: string]: string } = { wrappers: "#E6277A", helpers: "#31A3CC", prototypes: "#E6277A", + astra_assistants: "#272541", langchain_utilities: "#31A3CC", output_parsers: "#E6A627", // custom_components: "#ab11ab", @@ -316,6 +317,7 @@ export const nodeNames: { [char: string]: string } = { retrievers: "Retrievers", helpers: "Helpers", prototypes: "Prototypes", + astra_assistants: "Astra Assistants", langchain_utilities: "Utilities", output_parsers: "Output Parsers", custom_components: "Custom", @@ -431,6 +433,7 @@ export const nodeIconsLucide: iconsType = { textsplitters: Scissors, wrappers: Gift, helpers: Wand2, + astra_assistants: Sparkles, ScanEye, prototypes: FlaskConical, langchain_utilities: PocketKnife,