fix:提示词修改
parent
c0b4c0d319
commit
788a98f28f
|
|
@ -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
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue