Starowo's picture
Upload 1411 files
b9fe2b4 verified
raw
history blame contribute delete
184 Bytes
export interface IFeedbackRequestBody {
messageId?: string;
thumbup?: boolean;
feedback?: string;
}
export interface IAskRequestBody {
question: string;
kb_ids: string[];
}