SummaryLength

SummaryLength enumeration

Перечисляет возможные длины резюме.

public enum SummaryLength

Ценности

ИмяЦенностьОписание
VeryShort0Попробуйте составить 1-2 предложения.
Short1Попробуйте составить 3-4 предложения.
Medium2Попробуйте составить 5-6 предложений.
Long3Попробуйте составить 7-10 предложений.
VeryLong4Попробуйте составить 11-20 предложений.

Примеры

Показывает, как резюмировать текст с использованием моделей OpenAI и Google.

Document firstDoc = new Document(MyDir + "Big document.docx");
Document secondDoc = new Document(MyDir + "Document.docx");

string apiKey = Environment.GetEnvironmentVariable("API_KEY");
// Используйте модели генеративного языка OpenAI или Google.
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");

Смотрите также