Files
FastGPT/packages/global/openapi/core/dataset/index.ts
Roy 5ff4cc11b0 feat: export all chunks in collection (#6163)
* feat: export all chunks in collection

* perf: export collection api

* doc

---------

Co-authored-by: archer <545436317@qq.com>
2025-12-30 10:57:22 +08:00

9 lines
238 B
TypeScript

import type { OpenAPIPath } from '../../type';
import { DatasetDataPath } from './data';
import { DatasetCollectionPath } from './collection';
export const DatasetPath: OpenAPIPath = {
...DatasetDataPath,
...DatasetCollectionPath
};