Files
ragflow/web/src/interfaces/request/chat.ts
chanx 2b9ed935f3 feat(search): Optimized search functionality and user interface #3221 (#9535)
### 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)
2025-08-19 09:39:48 +08:00

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;
}