Aspose::Words::AI::AnthropicAiModel::Summarize method

AnthropicAiModel::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.

System::SharedPtr<Aspose::Words::Document> Aspose::Words::AI::AnthropicAiModel::Summarize(System::ArrayPtr<System::SharedPtr<Aspose::Words::Document>> sourceDocuments, System::SharedPtr<Aspose::Words::AI::SummarizeOptions> options=nullptr) override
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

AnthropicAiModel::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.

System::SharedPtr<Aspose::Words::Document> Aspose::Words::AI::AnthropicAiModel::Summarize(System::SharedPtr<Aspose::Words::Document> sourceDocument, System::SharedPtr<Aspose::Words::AI::SummarizeOptions> options=nullptr) override
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