mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-03-11 18:27:57 +08:00
### 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)
11 lines
184 B
TypeScript
11 lines
184 B
TypeScript
export interface IFeedbackRequestBody {
|
|
messageId?: string;
|
|
thumbup?: boolean;
|
|
feedback?: string;
|
|
}
|
|
|
|
export interface IAskRequestBody {
|
|
question: string;
|
|
kb_ids: string[];
|
|
}
|