MCPcopy
hub / github.com/midday-ai/midday / ChatFeedback

Interface ChatFeedback

packages/cache/src/chat-feedback-cache.ts:6–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4const feedbackCache = new RedisCache("chat:feedback", 0);
5
6export interface ChatFeedback {
7 type: "positive" | "negative" | "other";
8 comment?: string;
9 createdAt: string;
10 userId: string;
11 teamId: string;
12 chatId: string;
13 messageId: string;
14}
15
16export const chatFeedbackCache = {
17 set: (

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected