103 lines
1.8 KiB
JSON
103 lines
1.8 KiB
JSON
{
|
|
"summary": [
|
|
{
|
|
"name": "pipeline_user_memory",
|
|
"title": "用户记忆",
|
|
"primary": [
|
|
"id"
|
|
],
|
|
"catelog": "entity"
|
|
}
|
|
],
|
|
"fields": [
|
|
{
|
|
"name": "id",
|
|
"title": "主键ID",
|
|
"type": "str",
|
|
"length": 32,
|
|
"nullable": "no"
|
|
},
|
|
{
|
|
"name": "memory_key",
|
|
"title": "记忆键",
|
|
"type": "str",
|
|
"length": 64,
|
|
"nullable": "no"
|
|
},
|
|
{
|
|
"name": "content",
|
|
"title": "记忆内容",
|
|
"type": "text",
|
|
"nullable": "no"
|
|
},
|
|
{
|
|
"name": "category",
|
|
"title": "分类",
|
|
"type": "str",
|
|
"length": 32,
|
|
"nullable": "no",
|
|
"default": "memory"
|
|
},
|
|
{
|
|
"name": "scope",
|
|
"title": "作用域",
|
|
"type": "str",
|
|
"length": 32,
|
|
"nullable": "no",
|
|
"default": "global"
|
|
},
|
|
{
|
|
"name": "scope_id",
|
|
"title": "作用域ID",
|
|
"type": "str",
|
|
"length": 64,
|
|
"nullable": "no",
|
|
"default": ""
|
|
},
|
|
{
|
|
"name": "priority",
|
|
"title": "优先级",
|
|
"type": "int",
|
|
"nullable": "no",
|
|
"default": "0"
|
|
},
|
|
{
|
|
"name": "access_count",
|
|
"title": "访问次数",
|
|
"type": "int",
|
|
"nullable": "no",
|
|
"default": "0"
|
|
},
|
|
{
|
|
"name": "created_at",
|
|
"title": "创建时间",
|
|
"type": "timestamp",
|
|
"nullable": "no"
|
|
},
|
|
{
|
|
"name": "updated_at",
|
|
"title": "更新时间",
|
|
"type": "timestamp",
|
|
"nullable": "no"
|
|
}
|
|
],
|
|
"indexes": [
|
|
{
|
|
"name": "uk_memory",
|
|
"idxtype": "unique",
|
|
"idxfields": [
|
|
"memory_key",
|
|
"category"
|
|
]
|
|
},
|
|
{
|
|
"name": "idx_category_priority",
|
|
"idxtype": "index",
|
|
"idxfields": [
|
|
"category",
|
|
"priority"
|
|
]
|
|
}
|
|
]
|
|
}
|