SummaryLength

SummaryLength enumeration

Listet mögliche Längen der Zusammenfassung auf.

public enum SummaryLength

Werte

NameWertBeschreibung
VeryShort0Versuchen Sie, 1-2 Sätze zu bilden.
Short1Versuchen Sie, 3-4 Sätze zu bilden.
Medium2Versuchen Sie, 5-6 Sätze zu bilden.
Long3Versuchen Sie, 7-10 Sätze zu bilden.
VeryLong4Versuchen Sie, 11–20 Sätze zu bilden.

Beispiele

Zeigt, wie Text mithilfe von OpenAI- und Google-Modellen zusammengefasst wird.

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

string apiKey = Environment.GetEnvironmentVariable("API_KEY");
// Verwenden Sie generative Sprachmodelle von OpenAI oder 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");

Siehe auch