Aspose::Words::AI::IAiModelText::Summarize method

IAiModelText::Summarize(System::ArrayPtr<System::SharedPtr<Aspose::Words::Document>>, System::SharedPtr<Aspose::Words::AI::SummarizeOptions>) method

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.

virtual System::SharedPtr<Aspose::Words::Document> Aspose::Words::AI::IAiModelText::Summarize(System::ArrayPtr<System::SharedPtr<Aspose::Words::Document>> sourceDocuments, System::SharedPtr<Aspose::Words::AI::SummarizeOptions> options)=0
ParameterTypeDescription
sourceDocumentsSystem::ArrayPtr<System::SharedPtr<Aspose::Words::Document>>An array of documents to be summarized.
optionsSystem::SharedPtr<Aspose::Words::AI::SummarizeOptions>Optional settings to control the summary length and other parameters

ReturnValue

A summarized version of the document’s content.

See Also

IAiModelText::Summarize(System::SharedPtr<Aspose::Words::Document>, System::SharedPtr<Aspose::Words::AI::SummarizeOptions>) method

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.

virtual System::SharedPtr<Aspose::Words::Document> Aspose::Words::AI::IAiModelText::Summarize(System::SharedPtr<Aspose::Words::Document> sourceDocument, System::SharedPtr<Aspose::Words::AI::SummarizeOptions> options)=0
ParameterTypeDescription
sourceDocumentSystem::SharedPtr<Aspose::Words::Document>The document to be summarized.
optionsSystem::SharedPtr<Aspose::Words::AI::SummarizeOptions>Optional settings to control the summary length and other parameters.

ReturnValue

A summarized version of the document’s content.

See Also