20 lines
421 B
Markdown
20 lines
421 B
Markdown
```ruby title="Ruby"
|
|
require 'kreuzberg'
|
|
|
|
config = Kreuzberg::ExtractionConfig.new(
|
|
chunking: Kreuzberg::ChunkingConfig.new(
|
|
max_characters: 1024,
|
|
overlap: 100,
|
|
embedding: Kreuzberg::EmbeddingConfig.new(
|
|
model: Kreuzberg::EmbeddingModelType.new(
|
|
type: 'preset',
|
|
name: 'balanced'
|
|
),
|
|
normalize: true,
|
|
batch_size: 32,
|
|
show_download_progress: false
|
|
)
|
|
)
|
|
)
|
|
```
|