|
|
@@ -108,7 +108,8 @@ public class OpenAIUtils {
|
|
|
" 9.热点人物或事件:提及当前的热点人物或事件,利用热点效应吸引读者。\n" +
|
|
|
" 10.字数适中:保持标题在10-20个字之间,既不过长也不过短,确保信息的完整性和吸引力。\n" +
|
|
|
" 11.情感或价值诉求:使用如“感动”、“泪目”、“经典”等词汇,直接与读者的情感或价值观产生共鸣。\n" +
|
|
|
- " 避免误导:确保标题准确反映内容,避免夸大或误导读者。";
|
|
|
+ " 避免误导:确保标题准确反映内容,避免夸大或误导读者。" +
|
|
|
+ " 只返回标题不要其他任何内容,不要输出你的理由、分析等内容。";
|
|
|
String prompt = title + "\n" + single_title_prompt;
|
|
|
AIResult res = deepSeekApiService.request(prompt);
|
|
|
return res.getResponse().getChoices().get(0).getMessage().getContent();
|