mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-07-03 01:01:56 +08:00
### What problem does this PR solve? feat(search): Optimized search functionality and user interface #3221 ### Type of change - Added similarity threshold adjustment function - Optimized mind map display logic - Adjusted search settings interface layout - Fixed related search and document viewing functions - Optimized time display and node selection logic - [x] Bug Fix (non-breaking change which fixes an issue)
12 lines
206 B
TypeScript
12 lines
206 B
TypeScript
export interface IFeedbackRequestBody {
|
|
messageId?: string;
|
|
thumbup?: boolean;
|
|
feedback?: string;
|
|
}
|
|
|
|
export interface IAskRequestBody {
|
|
question: string;
|
|
kb_ids: string[];
|
|
search_id?: string;
|
|
}
|