Files
ragflow_python/web/src/interfaces/request/chat.ts
balibabu 6ae0da92cb feat: send question with retrieval api #2247 (#2272)
### What problem does this PR solve?
feat: send question with retrieval api #2247

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
2024-09-05 19:32:55 +08:00

11 lines
190 B
TypeScript

export interface IFeedbackRequestBody {
messageId?: string;
thumbup?: boolean;
feedback?: string;
}
export interface IAskRequestBody {
questionkb_ids: string;
kb_ids: string[];
}