feat: change agent and container add tags

This commit is contained in:
2024-09-28 03:01:10 +08:00
parent 718322ae47
commit 1505c25166
7 changed files with 32 additions and 25 deletions

View File

@@ -2,17 +2,18 @@ import { sequelize } from '@/modules/sequelize.ts';
import { DataTypes, Model } from 'sequelize';
export class AiAgent extends Model {
id: string;
type: string;
model: string;
baseUrl: string;
apiKey: string;
temperature: number;
cache: string;
cacheName: string;
status: string;
data: any;
key: string;
declare id: string;
declare type: string;
declare model: string;
declare baseUrl: string;
declare apiKey: string;
declare temperature: number;
declare cache: string;
declare cacheName: string;
declare status: string;
declare data: any;
declare description: string;
declare key: string;
}
// 获取AIAgent的属性
@@ -26,6 +27,7 @@ export type AiProperties = {
cache?: string;
cacheName?: string;
data?: any;
description?: string;
};
AiAgent.init(
{
@@ -38,6 +40,10 @@ AiAgent.init(
type: DataTypes.STRING,
allowNull: false,
},
description: {
type: DataTypes.TEXT,
allowNull: true,
},
status: {
type: DataTypes.STRING,
defaultValue: 'open',
@@ -56,6 +62,8 @@ AiAgent.init(
},
key: {
type: DataTypes.STRING,
allowNull: false,
unique: true,
},
temperature: {
type: DataTypes.FLOAT,