UNPKG

@assistant-ui/react

Version:

Typescript/React library for AI Chat

10 lines 310 B
import { ThreadMessage } from "../../../types/AssistantTypes"; type FeedbackAdapterFeedback = { message: ThreadMessage; type: "positive" | "negative"; }; export type FeedbackAdapter = { submit: (feedback: FeedbackAdapterFeedback) => void; }; export {}; //# sourceMappingURL=FeedbackAdapter.d.ts.map