总结文档
Contents
[
Hide
]
摘要文档是内容审查,快速见解或准备摘要的宝贵工具。 Aspose.Words支持使用AI支持的模型进行文档摘要,从而更容易处理长文本。 此功能在Aspose.Words.AI命名空间中可用,集成了OpenAI和Google中的高级生成语言模型。
您可以指定用于汇总文档内容的各种选项。 使用Summarize方法生成文档摘要。 您还可以使用SummaryLength属性设置摘要长度。
使用Aspose.Words,实现文档摘要非常简单。 下面的代码示例显示了使用GPT-4o模型对文档集进行汇总的热:
Document firstDoc = new Document(MyDir + "Big document.docx");
Document secondDoc = new Document(MyDir + "Document.docx");
string apiKey = Environment.GetEnvironmentVariable("API_KEY");
// Use OpenAI or Google generative language models.
IAiModelText model = (IAiModelText)AiModel.Create(AiModelType.Gpt4OMini).WithApiKey(apiKey);
Document oneDocumentSummary = model.Summarize(firstDoc, new SummarizeOptions() { SummaryLength = SummaryLength.Short });
oneDocumentSummary.Save(ArtifactsDir + "AI.AiSummarize.One.docx");
Document multiDocumentSummary = model.Summarize(new Document[] { firstDoc, secondDoc }, new SummarizeOptions() { SummaryLength = SummaryLength.Long });
multiDocumentSummary.Save(ArtifactsDir + "AI.AiSummarize.Multi.docx");
使用Aspose.Words汇总文档可以节省时间并帮助您专注于基本信息。 有关更多信息,请查看Aspose.Words.AIAPI文档。