### What problem does this PR solve? feat: Fetch mind map in search page #2247 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
10 lines
184 B
TypeScript
10 lines
184 B
TypeScript
export interface IFeedbackRequestBody {
|
|
messageId?: string;
|
|
thumbup?: boolean;
|
|
feedback?: string;
|
|
}
|
|
|
|
export interface IAskRequestBody {
|
|
question: string;
|
|
kb_ids: string[];
|
|
}
|