Files
fil/docs/snippets/csharp/advanced/keyword_extraction_config.md

16 lines
273 B
Markdown
Raw Normal View History

2026-06-01 23:40:55 +02:00
```csharp title="C#"
using Kreuzberg;
var config = new ExtractionConfig
{
Keywords = new KeywordConfig
{
Algorithm = KeywordAlgorithm.Yake,
MaxKeywords = 10,
MinScore = 0.3,
NgramRange = (1, 3),
Language = "en"
}
};
```