Feat: Rendering a search test list with real data #3221 (#7138)

### What problem does this PR solve?

Feat: Rendering a search test list with real data #3221
### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2025-04-18 16:29:41 +08:00
committed by GitHub
parent 1b4016317e
commit 42e236f464
4 changed files with 60 additions and 31 deletions

View File

@ -137,6 +137,13 @@ export interface ITestingResult {
labels?: Record<string, number>;
}
export interface INextTestingResult {
chunks: ITestingChunk[];
doc_aggs: ITestingDocument[];
total: number;
labels?: Record<string, number>;
}
export type IRenameTag = { fromTag: string; toTag: string };
export interface IKnowledgeGraph {