forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathroute.ts
More file actions
50 lines (45 loc) · 1.77 KB
/
Copy pathroute.ts
File metadata and controls
50 lines (45 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// Dedicated runtime for the declarative-hashbrown demo.
//
// The demo page (`src/app/demos/declarative-hashbrown/page.tsx`) wraps the
// `<Chat />` component (`./chat.tsx`) in the HashBrownDashboard provider;
// `Chat` overrides the CopilotChat assistantMessage slot with a renderer
// that consumes hashbrown-shaped structured output via `@hashbrownai/react`'s
// `useUiKit` + `useJsonParser`. The Python module + langgraph graph ID
// retain the legacy `byoc_hashbrown` name (only the user-facing slug,
// route, and frontend folder were renamed); the system prompt that
// produces the hashbrown shape lives in
// `src/agents/byoc_hashbrown_prompt.py`.
import { NextRequest, NextResponse } from "next/server";
import {
CopilotRuntime,
ExperimentalEmptyAdapter,
copilotRuntimeNextJSAppRouterEndpoint,
} from "@copilotkit/runtime";
import { LangGraphAgent } from "@copilotkit/runtime/langgraph";
const LANGGRAPH_URL =
process.env.LANGGRAPH_DEPLOYMENT_URL || "http://localhost:8123";
const byocHashbrownAgent = new LangGraphAgent({
deploymentUrl: LANGGRAPH_URL,
graphId: "byoc_hashbrown",
langsmithApiKey: process.env.LANGSMITH_API_KEY || "",
});
const runtime = new CopilotRuntime({
// @ts-ignore -- see main route.ts
agents: { "declarative-hashbrown-demo": byocHashbrownAgent },
});
export const POST = async (req: NextRequest) => {
try {
const { handleRequest } = copilotRuntimeNextJSAppRouterEndpoint({
endpoint: "/api/copilotkit-declarative-hashbrown",
serviceAdapter: new ExperimentalEmptyAdapter(),
runtime,
});
return await handleRequest(req);
} catch (error: unknown) {
const e = error as { message?: string; stack?: string };
return NextResponse.json(
{ error: e.message, stack: e.stack },
{ status: 500 },
);
}
};