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