Fix get datasets owner retrieve the whole dataset (#17370)

This commit is contained in:
Wang Qi
2026-07-27 10:24:13 +08:00
committed by GitHub
parent f53518c110
commit 53afc32349
12 changed files with 137 additions and 4 deletions

View File

@@ -50,6 +50,14 @@ export interface IDataset {
connectors: IConnector[];
}
export type IDatasetFilter = {
owner: Array<{
id: string;
label: string;
count: number;
}>;
};
interface Parserconfig {
auto_keywords: number;
auto_questions: number;