add baidu keywords (#3127)

This commit is contained in:
heheer
2024-11-12 16:44:09 +08:00
committed by shilin66
parent 3ddc4917a5
commit 43ac14d09f
7 changed files with 35 additions and 6 deletions

View File

@@ -18,6 +18,9 @@ export type UserModelSchema = {
key: string;
baseUrl: string;
};
fastgpt_sem?: {
keyword: string;
};
};
export type UserType = {

View File

@@ -70,6 +70,9 @@ const UserSchema = new Schema({
},
lastLoginTmbId: {
type: Schema.Types.ObjectId
},
fastgpt_sem: {
type: Object
}
});