fix:提示词修改

dev_na
chenhao 2026-07-07 15:47:25 +08:00
parent c0b4c0d319
commit 788a98f28f
1 changed files with 10 additions and 9 deletions

View File

@ -227,11 +227,12 @@ public class MeetingSummaryPromptAssembler {
private String buildSummaryOutputSchema() { private String buildSummaryOutputSchema() {
return """ return """
{ {
"summaryContent": "完整会议纪要正文,使用 markdown", "summaryContent": string,
"analysis": { "analysis": {
"keywords": ["关键词"] "keywords": array
} }
} }
summaryContent使 markdown,analysis.keywords
"""; """;
} }
@ -240,13 +241,13 @@ public class MeetingSummaryPromptAssembler {
{ {
"chapters": [ "chapters": [
{ {
"chapterNo": 1, "chapterNo": number,
"title": "章节标题", "title": string,
"summary": "章节摘要", "summary": string,
"keywords": ["关键词"], "keywords": array,
"startTranscriptId": 1, "startTranscriptId": number,
"endTranscriptId": 2, "endTranscriptId":number,
"confidence": 0.95 "confidence": number
} }
] ]
} }