Skip to content

Commit 36e6ef1

Browse files
committed
add llm section to onboard final page
1 parent ddd5c24 commit 36e6ef1

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

packages/web/src/app/onboard/page.tsx

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import { prisma } from "@/prisma";
1414
import { OrgRole } from "@sourcebot/db";
1515
import { LogoutEscapeHatch } from "@/app/components/logoutEscapeHatch";
1616
import { redirect } from "next/navigation";
17-
import { BetweenHorizontalStart, GitBranchIcon, LockIcon } from "lucide-react";
17+
import { BetweenHorizontalStart, Brain, GitBranchIcon, LockIcon } from "lucide-react";
1818
import { hasEntitlement } from "@sourcebot/shared";
1919
import { env } from "@/env.mjs";
2020
import { GcpIapAuth } from "@/app/[domain]/components/gcpIapAuth";
@@ -87,6 +87,13 @@ export default async function Onboarding({ searchParams }: OnboardingProps) {
8787
href: "https://docs.sourcebot.dev/docs/connections/overview",
8888
icon: <GitBranchIcon className="w-4 h-4" />,
8989
},
90+
{
91+
id: "language-models",
92+
title: "Language Models",
93+
description: "Learn how to configure your language model providers to start using Ask Sourcebot",
94+
href: "https://docs.sourcebot.dev/docs/configuration/language-model-providers",
95+
icon: <Brain className="w-4 h-4" />,
96+
},
9097
{
9198
id: "authentication-system",
9299
title: "Authentication System",

0 commit comments

Comments
 (0)