Add arguments to intent

This commit is contained in:
Apher 2026-07-23 02:49:42 +00:00
parent cba2de6d1c
commit 88b45064ec

View File

@ -13,6 +13,9 @@ module.exports = (sequelize, DataTypes) => {
examples: { examples: {
type: DataTypes.ARRAY(DataTypes.STRING), type: DataTypes.ARRAY(DataTypes.STRING),
allowNull: true allowNull: true
},
arguments: {
type: DataTypes.ARRAY(DataTypes.STRING),
} }
}, { }, {
tableName: "intents", tableName: "intents",