From 566fcb3e360cfc116d1fd5a4c7b41675ff8dfabd Mon Sep 17 00:00:00 2001 From: zhangzezhong Date: Sat, 7 Jun 2025 18:39:09 +0800 Subject: [PATCH] =?UTF-8?q?=E6=98=93=E7=94=A8=E6=80=A7result=20bugfix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: zhangzezhong --- compiler/src/userIntents_parser/parseUserIntents.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/compiler/src/userIntents_parser/parseUserIntents.ts b/compiler/src/userIntents_parser/parseUserIntents.ts index 1554f107e..572579f49 100644 --- a/compiler/src/userIntents_parser/parseUserIntents.ts +++ b/compiler/src/userIntents_parser/parseUserIntents.ts @@ -873,6 +873,8 @@ class ParseIntent { intentObj.llmDescription = schemaObj.llmDescription; intentObj.keywords = schemaObj.keywords; intentObj.intentName = schemaObj.intentName; + intentObj.result = schemaObj.result; + intentObj.example = schemaObj.example; } } } -- Gitee