From 88b45064ec21fdddb602e12020dc4bdedd71210e Mon Sep 17 00:00:00 2001 From: Apher Date: Thu, 23 Jul 2026 02:49:42 +0000 Subject: [PATCH] Add arguments to intent --- models/intent.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/models/intent.js b/models/intent.js index 507779b..1dbf4c8 100644 --- a/models/intent.js +++ b/models/intent.js @@ -13,6 +13,9 @@ module.exports = (sequelize, DataTypes) => { examples: { type: DataTypes.ARRAY(DataTypes.STRING), allowNull: true + }, + arguments: { + type: DataTypes.ARRAY(DataTypes.STRING), } }, { tableName: "intents",