summarize method
Contents
[
Hide
]summarize(source_document, options)
Generates a summary of the specified document, with options to adjust the length of the summary. This operation leverages the connected AI model for content processing.
def summarize(self, source_document: aspose.words.Document, options: aspose.words.ai.SummarizeOptions):
...
Parameter | Type | Description |
---|---|---|
source_document | Document | The document to be summarized. |
options | SummarizeOptions | Optional settings to control the summary length and other parameters. |
Returns
A summarized version of the document’s content.
summarize(source_documents, options)
Generates summaries for an array of documents, with options to control the summary length and other settings. This method utilizes the connected AI model for processing each document in the array.
def summarize(self, source_documents: List[aspose.words.Document], options: aspose.words.ai.SummarizeOptions):
...
Parameter | Type | Description |
---|---|---|
source_documents | List[Document] | An array of documents to be summarized. |
options | SummarizeOptions | Optional settings to control the summary length and other parameters |
Returns
A summarized version of the document’s content.
See Also
- module aspose.words.ai
- class OpenAiModel