OpenAiModel
Innehåll
[
Dölj
]OpenAiModel class
En abstrakt klass som representerar integrationen med OpenAI:s stora språkmodeller inom Aspose.Words.
public abstract class OpenAiModel : AiModel, IAiModelText
Metoder
namn | Beskrivning |
---|---|
WithApiKey(string) | Ställer in en specificerad API-nyckel för modellen. |
WithOrganization(string) | Ställer in en specificerad organisation för modellen. |
WithProject(string) | Ställer in ett angivet projekt till modellen. |
Exempel
Visar hur man sammanfattar text med hjälp av OpenAI och Google-modeller.
Document firstDoc = new Document(MyDir + "Big document.docx");
Document secondDoc = new Document(MyDir + "Document.docx");
string apiKey = Environment.GetEnvironmentVariable("API_KEY");
// Använd OpenAI eller Googles generativa språkmodeller.
IAiModelText model = ((OpenAiModel)AiModel.Create(AiModelType.Gpt4OMini).WithApiKey(apiKey)).WithOrganization("Organization").WithProject("Project");
SummarizeOptions options = new SummarizeOptions();
options.SummaryLength = SummaryLength.Short;
Document oneDocumentSummary = model.Summarize(firstDoc, options);
oneDocumentSummary.Save(ArtifactsDir + "AI.AiSummarize.One.docx");
options.SummaryLength = SummaryLength.Long;
Document multiDocumentSummary = model.Summarize(new Document[] { firstDoc, secondDoc }, options);
multiDocumentSummary.Save(ArtifactsDir + "AI.AiSummarize.Multi.docx");
Se även
- class AiModel
- interface IAiModelText
- namnutrymme Aspose.Words.AI
- hopsättning Aspose.Words