mirror of
https://github.com/labring/FastGPT.git
synced 2026-02-28 01:02:28 +08:00
* feat: export all chunks in collection * perf: export collection api * doc --------- Co-authored-by: archer <545436317@qq.com>
9 lines
238 B
TypeScript
9 lines
238 B
TypeScript
import type { OpenAPIPath } from '../../type';
|
|
import { DatasetDataPath } from './data';
|
|
import { DatasetCollectionPath } from './collection';
|
|
|
|
export const DatasetPath: OpenAPIPath = {
|
|
...DatasetDataPath,
|
|
...DatasetCollectionPath
|
|
};
|