From ca83cf1acc34dac3e8d7c318500c0ea2b694c619 Mon Sep 17 00:00:00 2001 From: ycl Date: Sun, 22 Jun 2025 10:59:17 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20llms-full.txt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- llms-full.txt | 73 ++++++++++++++++++++++----------------------------- 1 file changed, 32 insertions(+), 41 deletions(-) diff --git a/llms-full.txt b/llms-full.txt index 1b47eb5..f658cff 100644 --- a/llms-full.txt +++ b/llms-full.txt @@ -592,48 +592,39 @@ DateTime endTime; //会议结束时间 ```json { "type":"object", + "description":"描述了一个写方案", "properties":{ - "name":{"type":"string","description":"需求的意图描述;长度限制在32个字符之内"}, - "description":{"type":"string","description":"需求的概括性描述;长度限制在256个字符内"}, - "bo": {"type":"string","description":"聚合根的名称,确定了唯一聚合"}, - "operations": {"type":"array","description":"描述了对各个Bo的操作", - "items":{ - "type": "object", - "properties":{ - "bo":{"type":"string","description":"具体操作的实体"}, - "action":{"type":"string","description":"对前述实体的"}, - "unique_key": { - "type":"array", - "description":"唯一键包含的字段列表", - "items":{ - "type":"string", - "description":"字段名称,组成唯一键的字段" - } - }, - "fields":{ - "type":"array", - "items":{ - "type":"string", - "description":"字段名称,必须来自bo对象" - }, - "description":"对选定的Bo的操作的字段列表" - }, - "incrFields":{ - "type":"array", - "items":{ - "type":"string", - "description":"增量字段名称" - }, - "description":"选定的字段中进行增量操作的字段列表" - }, - "required":["bo","action","fields"] - }, - "description":"定义了对某个实体的操作,包括操作类型和相关字段" - } - } - }, - "required":["name","description","operations"], - "description":"描述了对一个聚合的变更操作" + "name":{"type":"string","description":"需求的意图描述;长度限制在32个字符之内"}, + "description":{"type":"string","description":"需求的概括性描述;长度限制在256个字符内"}, + "bo": {"type":"string","description":"聚合根的名称,确定了唯一聚合"}, + "operations": { + "type":"array","description":"定义了对某个实体的操作,包括操作类型和相关字段", + "items":{ + "type": "object", + "properties":{ + "bo":{"type":"string","description":"具体操作的实体"}, + "action":{"type":"string","description":"对前述实体的操作"}, + "unique_key": { + "type":"array", + "description":"唯一键包含的字段列表,该唯一键用于确定数据记录", + "items":{"type":"string","description":"字段名称,组成唯一键的字段名称"} + }, + "fields":{ + "type":"array", + "items":{"type":"string","description":"字段名称,必须来自bo对象"}, + "description":"对选定的Bo的操作的字段列表" + }, + "incrFields":{ + "type":"array", + "items":{ "type":"string", "description":"增量字段名称"}, + "description":"选定的字段中进行增量操作的字段列表" + }, + "required":["bo","action","fields"] + } + } + } + }, + "required":["name","description","operations","bo"] } ``` - **例子**