Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions contents/docs/llm-analytics/installation/cloudflare-ai-gateway.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
---
title: Cloudflare AI Gateway LLM analytics installation
platformLogo: cloudflare
showStepsToc: true
tableOfContents: [
{
url: 'install-dependencies',
value: 'Install dependencies',
depth: 1,
},
{
url: 'set-up-opentelemetry-tracing',
value: 'Set up OpenTelemetry tracing',
depth: 1,
},
{
url: 'call-cloudflare-ai-gateway',
value: 'Call Cloudflare AI Gateway',
depth: 1,
},
{
url: 'verify-traces-and-generations',
value: 'Verify traces and generations',
depth: 1,
},
]
---

<!--
This page imports shared onboarding content from the main PostHog repo.
Source: https://github.com/PostHog/posthog/blob/master/docs/onboarding/llm-analytics/cloudflare-ai-gateway.tsx
See the docs runbook for more info: https://posthog.com/handbook/docs-and-wizard/onboarding-docs
-->

import { CloudflareAIGatewayInstallation } from 'onboarding/llm-analytics/cloudflare-ai-gateway.tsx'
import { OnboardingContentWrapper } from 'components/Docs/OnboardingContentWrapper'
import NotableGenerationProperties from '../_snippets/notable-generation-properties.mdx'
import { addNextStepsStep } from './_snippets/shared-helpers.tsx'

<OnboardingContentWrapper snippets={{ NotableGenerationProperties }}>
<CloudflareAIGatewayInstallation modifySteps={addNextStepsStep} />
</OnboardingContentWrapper>
42 changes: 42 additions & 0 deletions contents/docs/llm-analytics/installation/dedalus.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
---
title: Dedalus Labs LLM analytics installation
platformLogo: dedalus
showStepsToc: true
tableOfContents: [
{
url: 'install-dependencies',
value: 'Install dependencies',
depth: 1,
},
{
url: 'set-up-opentelemetry-tracing',
value: 'Set up OpenTelemetry tracing',
depth: 1,
},
{
url: 'call-dedalus-labs',
value: 'Call Dedalus Labs',
depth: 1,
},
{
url: 'verify-traces-and-generations',
value: 'Verify traces and generations',
depth: 1,
},
]
---

<!--
This page imports shared onboarding content from the main PostHog repo.
Source: https://github.com/PostHog/posthog/blob/master/docs/onboarding/llm-analytics/dedalus.tsx
See the docs runbook for more info: https://posthog.com/handbook/docs-and-wizard/onboarding-docs
-->

import { DedalusInstallation } from 'onboarding/llm-analytics/dedalus.tsx'
import { OnboardingContentWrapper } from 'components/Docs/OnboardingContentWrapper'
import NotableGenerationProperties from '../_snippets/notable-generation-properties.mdx'
import { addNextStepsStep } from './_snippets/shared-helpers.tsx'

<OnboardingContentWrapper snippets={{ NotableGenerationProperties }}>
<DedalusInstallation modifySteps={addNextStepsStep} />
</OnboardingContentWrapper>
1 change: 1 addition & 0 deletions src/constants/logos.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ export const LOGOS = {
crewai: 'https://res.cloudinary.com/dmukukwp6/image/upload/crewai_67ee9f5eb6.svg',
cloudflareR2: 'https://res.cloudinary.com/dmukukwp6/image/upload/r2_0d79d88d1f.svg',
cloudfront: 'https://res.cloudinary.com/dmukukwp6/image/upload/Cloud_Front_76c0f62ab5.svg',
dedalus: 'https://res.cloudinary.com/dmukukwp6/image/upload/dedalus_labs_logo_e03bb97137.svg',
deepseek: 'https://res.cloudinary.com/dmukukwp6/image/upload/deepseek_df02608124.svg',
django: 'https://res.cloudinary.com/dmukukwp6/image/upload/posthog.com/contents/docs/integrate/frameworks/django.svg',
docusaurus:
Expand Down
10 changes: 10 additions & 0 deletions src/navs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5444,6 +5444,16 @@ export const docsMenu = {
url: '/docs/llm-analytics/installation/openrouter',
icon: 'IconOpenRouter',
},
{
name: 'Cloudflare AI Gateway',
url: '/docs/llm-analytics/installation/cloudflare-ai-gateway',
platformLogo: 'cloudflare',
},
{
name: 'Dedalus Labs',
url: '/docs/llm-analytics/installation/dedalus',
platformLogo: 'dedalus',
},
{
name: 'DeepSeek',
url: '/docs/llm-analytics/installation/deepseek',
Expand Down
Loading