AiModelType
Contents
[
Hide
]AiModelType enumeration
Represents the types of AiModel
that can be integrated into the document processing workflow.
public enum AiModelType
Values
Name | Value | Description |
---|---|---|
Gpt4O | 0 | GPT-4o generative model type. |
Gpt4OMini | 1 | GPT-4o mini generative model type. |
Gpt4Turbo | 2 | GPT-4 Turbo generative model type. |
Gpt35Turbo | 3 | GPT-3.5 Turbo generative model type. |
Gemini15Flash | 4 | Gemini 1.5 Flash generative model type. |
Gemini15Flash8B | 5 | Gemini 1.5 Flash-8B generative model type. |
Gemini15Pro | 6 | Gemini 1.5 Pro generative model type. |
Remarks
This enumeration is used to define which large language model (LLM) should be utilized for tasks such as summarization, translation, and content generation.
Examples
Shows how to summarize text using OpenAI and Google models.
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");
See Also
- namespace Aspose.Words.AI
- assembly Aspose.Words