Skip to content

Commit 8982c54

Browse files
committed
.
1 parent aba7be9 commit 8982c54

23 files changed

Lines changed: 1314 additions & 13 deletions

docs/app/(home)/page.tsx

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,15 @@ export const metadata: Metadata = {
1919

2020
export default function HomePage() {
2121
return (
22-
<section className="mx-auto flex w-full max-w-[var(--site-shell-max-width)] flex-1 flex-col">
23-
<HomeLayout
24-
leftContent={<HomeHeroSection />}
25-
rightContent={
26-
<div className="docs-page-surface">
27-
<DocsBody>
28-
<ReadMe components={getMDXComponents()} />
29-
</DocsBody>
30-
</div>
31-
}
32-
/>
33-
</section>
22+
<HomeLayout
23+
leftContent={<HomeHeroSection />}
24+
rightContent={
25+
<div className="docs-page-surface">
26+
<DocsBody>
27+
<ReadMe components={getMDXComponents()} />
28+
</DocsBody>
29+
</div>
30+
}
31+
/>
3432
);
3533
}

docs/app/enterprise/page.tsx

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
import type { Metadata } from "next";
2+
import { DocsBody } from "fumadocs-ui/layouts/notebook/page";
3+
import { getMDXComponents } from "@/components/mdx";
4+
import EnterpriseReadMe from "@/enterprise/read-me.mdx";
5+
import HomePageShell from "@/src/layouts/HomePageShell";
6+
import HomeLayout from "@/src/layouts/HomeLayout";
7+
import EnterpriseHeroSection from "@/src/sections/enterprise/EnterpriseHeroSection";
8+
9+
export const metadata: Metadata = {
10+
title: "Enterprise",
11+
description:
12+
"Scale DeepEval with enterprise observability, shared workflows, and production-grade LLM evaluation on Confident AI.",
13+
alternates: { canonical: "/enterprise" },
14+
};
15+
16+
export default function EnterprisePage() {
17+
return (
18+
<HomePageShell>
19+
<HomeLayout
20+
leftContent={<EnterpriseHeroSection />}
21+
rightContent={
22+
<div className="docs-page-surface">
23+
<DocsBody>
24+
<EnterpriseReadMe components={getMDXComponents()} />
25+
</DocsBody>
26+
</div>
27+
}
28+
/>
29+
</HomePageShell>
30+
);
31+
}

docs/components/mdx.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ import TechStackCards from "@site/src/components/TechStackCards";
1919
import { FAQs } from "@site/src/components/FAQ";
2020
import BlogPostMeta from "@site/src/components/BlogPostMeta";
2121
import ChangelogContributors from "@site/src/components/ChangelogContributors";
22+
import SectionLabel from "@site/src/components/SectionLabel";
23+
import EnterpriseComparisonTable from "@site/src/sections/enterprise/EnterpriseComparisonTable";
24+
import EnterprisePlatformMockup from "@site/src/sections/enterprise/EnterprisePlatformMockup";
2225
import RepoContributors from "@site/src/sections/home/RepoContributors";
2326

2427
function DefaultLLMModel() {
@@ -48,6 +51,9 @@ export function getMDXComponents(components?: MDXComponents) {
4851
FAQs,
4952
BlogPostMeta,
5053
ChangelogContributors,
54+
SectionLabel,
55+
EnterpriseComparisonTable,
56+
EnterprisePlatformMockup,
5157
RepoContributors,
5258
DefaultLLMModel,
5359
...components,

docs/enterprise/read-me.mdx

Lines changed: 176 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,176 @@
1+
import { PrimaryButton } from "@site/src/components/Buttons";
2+
import { ArrowUpRight } from "lucide-react";
3+
4+
<br />
5+
6+
<br />
7+
8+
<br />
9+
10+
<br />
11+
12+
<SectionLabel>Why teams outgrow DeepEval alone</SectionLabel>
13+
14+
## DeepEval gets you started. Confident AI gets you scaled.
15+
16+
DeepEval is the framework. Confident AI is the platform that makes it work for your whole company.
17+
18+
<EnterpriseComparisonTable />
19+
20+
<br />
21+
22+
<br />
23+
24+
<SectionLabel>For product and QA teams</SectionLabel>
25+
26+
## Run evals without writing a single line of code.
27+
28+
Spin up evaluations from the dashboard. Annotate traces and turn feedback into reusable metrics. Build custom dashboards your team actually understands. Stop filing tickets to engineering every time you want to test a prompt change.
29+
30+
- No-code eval workflows for PMs, QA, and domain experts.
31+
- Annotation queues that turn human feedback into automated metrics.
32+
- Custom dashboards and reports for stakeholders who don't read code.
33+
34+
We connect directly to your AI app over HTTP so non-technical team members can collaborate equally on AI quality.
35+
36+
<Tabs items={["Experiments", "Dataset management", "Centralized metrics", "Regression testing", "Annotation", "Prompt versioning"]}>
37+
<Tab value="Experiments">
38+
39+
<ImageDisplayer
40+
src="/img/confident-experimentation.png"
41+
alt="Side-by-side experiment comparison in Confident AI"
42+
/>
43+
44+
</Tab>
45+
<Tab value="Dataset management">
46+
47+
<ImageDisplayer
48+
src="/img/confident-dataset-management.png"
49+
alt="Dataset management in Confident AI"
50+
/>
51+
52+
</Tab>
53+
<Tab value="Centralized metrics">
54+
55+
<ImageDisplayer
56+
src="/img/confident-centralized-metrics.png"
57+
alt="Centralized evaluation metrics in Confident AI"
58+
/>
59+
60+
</Tab>
61+
<Tab value="Regression testing">
62+
63+
<ImageDisplayer
64+
src="/img/confident-regression-testing.png"
65+
alt="Regression testing dashboard in Confident AI"
66+
/>
67+
68+
</Tab>
69+
<Tab value="Annotation">
70+
71+
<ImageDisplayer
72+
src="/img/confident-human-annotation.png"
73+
alt="Annotation workflow for non-technical reviewers"
74+
/>
75+
76+
</Tab>
77+
<Tab value="Prompt versioning">
78+
79+
<ImageDisplayer
80+
src="/img/confident-prompt-versioning.png"
81+
alt="Prompt versioning in Confident AI"
82+
/>
83+
84+
</Tab>
85+
</Tabs>
86+
87+
<br />
88+
89+
<br />
90+
91+
<SectionLabel>For engineering teams</SectionLabel>
92+
93+
## Tracing and evals built for the way you actually ship.
94+
95+
Drop in our SDK or use OpenTelemetry to capture every LLM call, tool call, and agent step. Run regression tests on every prompt change in CI/CD. Get alerted the moment quality drops in production. Framework-agnostic — works with LangChain, LangGraph, CrewAI, OpenAI Agents, Pydantic AI, or your own stack.
96+
97+
- Production tracing for every LLM call, span, and agent step.
98+
- Automatic detection of AI app failures, quality drift, user sentiment shifts, performance regressions, and cost anomalies in production.
99+
- Real-time alerts in Slack, PagerDuty, or Teams when quality degrades.
100+
101+
Observability completes the AI iteration loop: Trace agents, run online evals, detect issues, feed these back to datasets for pre-deployment testing.
102+
103+
<Tabs items={["Online evals", "Signals", "Alerts", "Trace-to-dataset"]}>
104+
<Tab value="Online evals">
105+
106+
<ImageDisplayer
107+
src="/img/confident-tracing-observability.png"
108+
alt="Online evaluations on production traces in Confident AI"
109+
/>
110+
111+
</Tab>
112+
<Tab value="Signals">
113+
114+
<ImageDisplayer
115+
src="/img/confident-production-monitoring.png"
116+
alt="Production signals dashboard in Confident AI"
117+
/>
118+
119+
</Tab>
120+
<Tab value="Alerts">
121+
122+
<ImageDisplayer
123+
src="/img/confident-alerts.png"
124+
alt="Production alerts in Confident AI"
125+
/>
126+
127+
</Tab>
128+
<Tab value="Trace-to-dataset">
129+
130+
<ImageDisplayer
131+
src="/img/confident-trace-to-dataset.png"
132+
alt="Trace-to-dataset and annotation queue workflows in Confident AI"
133+
/>
134+
135+
</Tab>
136+
</Tabs>
137+
138+
<br />
139+
140+
<br />
141+
142+
<SectionLabel>For platform teams</SectionLabel>
143+
144+
## Deploy once. Scale to every team in your org.
145+
146+
Self-host on your own infrastructure or run on our cloud. Multi-tenant by default — give every product team their own workspace with shared compliance and observability standards. Built for the AI platform team that's responsible for quality across the whole company.
147+
148+
- On-prem deployment in 3 days, automated updates in 30 minutes.
149+
- SSO, RBAC, granular permissions, and audit logs.
150+
- SOC2 Type II, GDPR-compliant, custom data retention available.
151+
152+
One platform, one source of truth for AI quality across every team.
153+
154+
<EnterprisePlatformMockup variant="deployment" />
155+
156+
<br />
157+
158+
<br />
159+
160+
## Still on the fence? Talk to us.
161+
162+
We can only show you so much on a website. Talk to someone on the Confident AI team and see if we're a good fit.
163+
164+
<PrimaryButton
165+
href="https://www.confident-ai.com/book-a-demo"
166+
target="_blank"
167+
rel="noopener noreferrer"
168+
data-utm-content="enterprise_bottom_demo"
169+
endIcon={<ArrowUpRight aria-hidden />}
170+
>
171+
Book a Demo
172+
</PrimaryButton>
173+
174+
<br />
175+
176+
<br />

docs/lib/layout.shared.tsx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import {
44
Compass,
55
GraduationCap,
66
Blocks,
7+
Building2,
78
History,
89
Newspaper,
910
} from "lucide-react";
@@ -22,6 +23,7 @@ import { appName, gitConfig } from "./shared";
2223
// Guides → Compass (directional walkthroughs)
2324
// Tutorials → GraduationCap (learning path)
2425
// Integrations → Blocks (modular pluggable pieces)
26+
// Enterprise → Building2 (organization / deployment)
2527
// Changelog → History (time-ordered records)
2628
// Blog → Newspaper (articles / posts)
2729
export const navLinks = [
@@ -49,6 +51,12 @@ export const navLinks = [
4951
activeBase: "/integrations",
5052
icon: <Blocks />,
5153
},
54+
{
55+
text: "Enterprise",
56+
url: "/enterprise",
57+
activeBase: "/enterprise",
58+
icon: <Building2 />,
59+
},
5260
{
5361
text: "Changelog",
5462
url: "/changelog",
Lines changed: 40 additions & 0 deletions
Loading

docs/public/icons/brand-icons/epic-games.svg

Lines changed: 57 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)