Fix: Add a no-data filter condition to MetaData (#12189)

### What problem does this PR solve?

Fix: Add a no-data filter condition to MetaData

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
chanx
2025-12-25 10:42:34 +08:00
committed by Jin Hai
parent 02b976ffa4
commit 89ea760e67
8 changed files with 126 additions and 58 deletions

View File

@ -33,5 +33,6 @@ export interface IFetchKnowledgeListRequestParams {
export interface IFetchDocumentListRequestBody {
suffix?: string[];
run_status?: string[];
return_empty_metadata?: boolean;
metadata?: Record<string, string[]>;
}