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

15 lines
309 B
Markdown
Raw Permalink Normal View History

2026-06-01 23:40:55 +02:00
```csharp title="C#"
using Kreuzberg;
var config = new ExtractionConfig
{
TokenReduction = new TokenReductionConfig
{
Mode = "moderate", // "off", "moderate", or "aggressive"
PreserveMarkdown = true,
PreserveCode = true,
LanguageHint = "eng"
}
};
```