From 5e895cb3d51e8a47b6845a7595e165363da6703e Mon Sep 17 00:00:00 2001 From: Mikyo King Date: Tue, 15 Oct 2024 23:16:56 -0600 Subject: [PATCH] feat: add litellm integrations UI (#5028) --- app/src/components/project/IntegrationIcons.tsx | 17 +++++++++++++++++ app/src/components/project/Integrations.tsx | 9 +++++++++ 2 files changed, 26 insertions(+) diff --git a/app/src/components/project/IntegrationIcons.tsx b/app/src/components/project/IntegrationIcons.tsx index e9f95adf6b..61ca620e40 100644 --- a/app/src/components/project/IntegrationIcons.tsx +++ b/app/src/components/project/IntegrationIcons.tsx @@ -465,3 +465,20 @@ export const BedrockSVG = () => ( ); + +export const IntegrationSVG = () => ( + + + +); diff --git a/app/src/components/project/Integrations.tsx b/app/src/components/project/Integrations.tsx index f9e8cde1a1..320499ae1e 100644 --- a/app/src/components/project/Integrations.tsx +++ b/app/src/components/project/Integrations.tsx @@ -8,6 +8,7 @@ import { DSPYSVG, GroqSVG, HaystackSVG, + IntegrationSVG, LangChainSVG, LlamaIndexSVG, MistralAISVG, @@ -183,6 +184,14 @@ const PYTHON_INTEGRATIONS: IntegrationLinkProps[] = [ "https://github.com/Arize-ai/openinference/tree/main/python/instrumentation/openinference-instrumentation-crewai", icon: , }, + { + name: "LiteLLM", + docsHref: + "https://docs.arize.com/phoenix/tracing/integrations-tracing/litellm", + githubHref: + "https://github.com/Arize-ai/openinference/tree/main/python/instrumentation/openinference-instrumentation-litellm", + icon: , + }, ]; const integrationsListCSS = css`