This commit is contained in:
15
docs/snippets/csharp/advanced/keyword_extraction_config.md
Normal file
15
docs/snippets/csharp/advanced/keyword_extraction_config.md
Normal file
@@ -0,0 +1,15 @@
|
||||
```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"
|
||||
}
|
||||
};
|
||||
```
|
||||
Reference in New Issue
Block a user