mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-09-29 01:58:47 +00:00
12 lines
256 B
TypeScript
12 lines
256 B
TypeScript
![]() |
export interface ICategorizeItem {
|
||
|
name: string;
|
||
|
description?: string;
|
||
|
examples?: { value: string }[];
|
||
|
index: number;
|
||
|
}
|
||
|
|
||
|
export type ICategorizeItemResult = Record<
|
||
|
string,
|
||
|
Omit<ICategorizeItem, 'name' | 'examples'> & { examples: string[] }
|
||
|
>;
|