@assistant-ui/react
Version:
React components for AI chat.
10 lines • 307 B
TypeScript
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