### 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)
11 lines
190 B
TypeScript
11 lines
190 B
TypeScript
export interface IFeedbackRequestBody {
|
|
messageId?: string;
|
|
thumbup?: boolean;
|
|
feedback?: string;
|
|
}
|
|
|
|
export interface IAskRequestBody {
|
|
questionkb_ids: string;
|
|
kb_ids: string[];
|
|
}
|