mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-27 16:33:49 +00:00

* perf: chunk index show * share response * perf: vector query * web printFinger * remove log * fix: bucket name * perf: training schema * perf: sort index
11 lines
214 B
TypeScript
11 lines
214 B
TypeScript
export enum BucketNameEnum {
|
|
dataset = 'dataset'
|
|
}
|
|
export const bucketNameMap = {
|
|
[BucketNameEnum.dataset]: {
|
|
label: 'common.file.bucket.dataset'
|
|
}
|
|
};
|
|
|
|
export const FileBaseUrl = '/api/common/file/read';
|