From e71f929f462a851075fd62f681b0f77c4d35aaac Mon Sep 17 00:00:00 2001 From: "andre.liang" Date: Sat, 10 Aug 2024 12:37:43 +0100 Subject: [PATCH] add: add icon --- ai/fireworksai/v0/assets/fireworks-ai.svg | 12 ++++++++++++ store/store.go | 3 ++- 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 ai/fireworksai/v0/assets/fireworks-ai.svg diff --git a/ai/fireworksai/v0/assets/fireworks-ai.svg b/ai/fireworksai/v0/assets/fireworks-ai.svg new file mode 100644 index 00000000..9a219eb5 --- /dev/null +++ b/ai/fireworksai/v0/assets/fireworks-ai.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/store/store.go b/store/store.go index 06bd67a2..26795870 100644 --- a/store/store.go +++ b/store/store.go @@ -132,7 +132,8 @@ func Init( { // FireworksAI conn := fireworksai.Init(baseComp) - conn = conn.WithInstillCredentials(secrets[conn.GetDefinitionID()]) + // Secret doesn't allow hyphens + conn = conn.WithInstillCredentials(secrets["fireworksai"]) compStore.Import(conn) }