mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 21:13:50 +00:00

* fix: rerank auth token * feat: check null value * bind notify * perf: reasoning config * Adapt mongo 4.x index
52 lines
1.4 KiB
TypeScript
52 lines
1.4 KiB
TypeScript
import { connectionMongo, getMongoModel } from '../../../common/mongo';
|
|
const { Schema } = connectionMongo;
|
|
import { DatasetDataSchemaType } from '@fastgpt/global/core/dataset/type.d';
|
|
import { TeamCollectionName } from '@fastgpt/global/support/user/team/constant';
|
|
import { DatasetCollectionName } from '../schema';
|
|
import { DatasetColCollectionName } from '../collection/schema';
|
|
import { DatasetDataCollectionName } from './schema';
|
|
|
|
export const DatasetDataTextCollectionName = 'dataset_data_texts';
|
|
|
|
const DatasetDataTextSchema = new Schema({
|
|
teamId: {
|
|
type: Schema.Types.ObjectId,
|
|
ref: TeamCollectionName,
|
|
required: true
|
|
},
|
|
datasetId: {
|
|
type: Schema.Types.ObjectId,
|
|
ref: DatasetCollectionName,
|
|
required: true
|
|
},
|
|
collectionId: {
|
|
type: Schema.Types.ObjectId,
|
|
ref: DatasetColCollectionName,
|
|
required: true
|
|
},
|
|
dataId: {
|
|
type: Schema.Types.ObjectId,
|
|
ref: DatasetDataCollectionName,
|
|
required: true
|
|
},
|
|
fullTextToken: String
|
|
});
|
|
|
|
try {
|
|
DatasetDataTextSchema.index(
|
|
{ teamId: 1, datasetId: 1, fullTextToken: 'text' },
|
|
{
|
|
name: 'teamId_1_datasetId_1_fullTextToken_text',
|
|
default_language: 'none'
|
|
}
|
|
);
|
|
DatasetDataTextSchema.index({ dataId: 1 }, { unique: true });
|
|
} catch (error) {
|
|
console.log(error);
|
|
}
|
|
|
|
export const MongoDatasetDataText = getMongoModel<DatasetDataSchemaType>(
|
|
DatasetDataTextCollectionName,
|
|
DatasetDataTextSchema
|
|
);
|