forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ts
More file actions
28 lines (23 loc) · 1011 Bytes
/
Copy pathindex.ts
File metadata and controls
28 lines (23 loc) · 1011 Bytes
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
"use client";
import "./index.css";
// Re-export core (still a separate package)
export * from "@copilotkit/core";
// Re-export AG-UI client types (was done by V2 react's index.ts)
export * from "@ag-ui/client";
// Local V2 react code (absorbed into @copilotkit/react-core)
export * from "./components";
export * from "./hooks";
export * from "./providers";
export * from "./types";
export * from "./lib/react-core";
export { createA2UIMessageRenderer } from "./a2ui/A2UIMessageRenderer";
export type {
A2UIMessageRendererOptions,
A2UIUserAction,
} from "./a2ui/A2UIMessageRenderer";
export type { A2UIRecoveryRendererOptions } from "./a2ui/A2UIRecoveryStates";
export type { Theme as A2UITheme } from "@copilotkit/a2ui-renderer";
export { defaultTheme as a2uiDefaultTheme } from "@copilotkit/a2ui-renderer";
// V1 backward-compat re-exports
export { CopilotKit } from "../components/copilot-provider/copilotkit";
export type { CopilotKitProps } from "../components/copilot-provider/copilotkit-props";