Skip to content

Commit

Permalink
feat: Add LLM platforms to product analytics onboarding (#23729)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
Lior539 and github-actions[bot] authored Jul 25, 2024
1 parent 8ea7418 commit 32ba6f1
Show file tree
Hide file tree
Showing 11 changed files with 221 additions and 2 deletions.
21 changes: 21 additions & 0 deletions frontend/src/scenes/onboarding/sdks/allSDKs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,13 @@ export const allSDKs: SDK[] = [
image: require('./logos/go.svg'),
docsLink: 'https://posthog.com/docs/libraries/go',
},
{
name: 'Helicone',
key: SDKKey.HELICONE,
tags: [SDKTag.LLM],
image: require('./logos/helicone.svg'),
docsLink: 'https://posthog.com/docs/ai-engineering/helicone-posthog',
},
{
name: 'iOS',
key: SDKKey.IOS,
Expand All @@ -114,6 +121,13 @@ export const allSDKs: SDK[] = [
image: require('./logos/java.svg'),
docsLink: 'https://posthog.com/docs/libraries/java',
},
{
name: 'Langfuse',
key: SDKKey.LANGFUSE,
tags: [SDKTag.LLM],
image: require('./logos/langfuse.svg'),
docsLink: 'https://posthog.com/docs/ai-engineering/langfuse-posthog',
},
{
name: 'Laravel',
key: SDKKey.LARAVEL,
Expand Down Expand Up @@ -201,6 +215,13 @@ export const allSDKs: SDK[] = [
image: require('./logos/svelte.svg'),
docsLink: 'https://posthog.com/docs/libraries/svelte',
},
{
name: 'Traceloop',
key: SDKKey.TRACELOOP,
tags: [SDKTag.LLM],
image: require('./logos/traceloop.svg'),
docsLink: 'https://posthog.com/docs/ai-engineering/traceloop-posthog',
},
{
name: 'Vue.js',
key: SDKKey.VUE_JS,
Expand Down
8 changes: 8 additions & 0 deletions frontend/src/scenes/onboarding/sdks/logos/helicone.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions frontend/src/scenes/onboarding/sdks/logos/langfuse.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions frontend/src/scenes/onboarding/sdks/logos/traceloop.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ import {
ProductAnalyticsFlutterInstructions,
ProductAnalyticsFramerInstructions,
ProductAnalyticsGoInstructions,
ProductAnalyticsHeliconeInstructions,
ProductAnalyticsIOSInstructions,
ProductAnalyticsLangfuseInstructions,
ProductAnalyticsLaravelInstructions,
ProductAnalyticsNextJSInstructions,
ProductAnalyticsNodeInstructions,
Expand All @@ -24,6 +26,7 @@ import {
ProductAnalyticsRNInstructions,
ProductAnalyticsRubyInstructions,
ProductAnalyticsSvelteJSInstructions,
ProductAnalyticsTraceloopInstructions,
ProductAnalyticsVueInstructions,
ProductAnalyticsWebflowInstructions,
} from '.'
Expand All @@ -40,8 +43,10 @@ export const ProductAnalyticsSDKInstructions: SDKInstructionsMap = {
[SDKKey.FLUTTER]: ProductAnalyticsFlutterInstructions,
[SDKKey.FRAMER]: ProductAnalyticsFramerInstructions,
[SDKKey.GO]: ProductAnalyticsGoInstructions,
[SDKKey.HELICONE]: ProductAnalyticsHeliconeInstructions,
[SDKKey.HTML_SNIPPET]: HTMLSnippetInstructions,
[SDKKey.IOS]: ProductAnalyticsIOSInstructions,
[SDKKey.LANGFUSE]: ProductAnalyticsLangfuseInstructions,
[SDKKey.LARAVEL]: ProductAnalyticsLaravelInstructions,
[SDKKey.NEXT_JS]: ProductAnalyticsNextJSInstructions,
[SDKKey.NODE_JS]: ProductAnalyticsNodeInstructions,
Expand All @@ -52,6 +57,7 @@ export const ProductAnalyticsSDKInstructions: SDKInstructionsMap = {
[SDKKey.REMIX]: ProductAnalyticsRemixJSInstructions,
[SDKKey.RUBY]: ProductAnalyticsRubyInstructions,
[SDKKey.SVELTE]: ProductAnalyticsSvelteJSInstructions,
[SDKKey.TRACELOOP]: ProductAnalyticsTraceloopInstructions,
[SDKKey.VUE_JS]: ProductAnalyticsVueInstructions,
[SDKKey.WEBFLOW]: ProductAnalyticsWebflowInstructions,
}
Loading

0 comments on commit 32ba6f1

Please sign in to comment.