|
194 | 194 | "combine_under_n_chars": {
|
195 | 195 | "type": "integer",
|
196 | 196 | "title": "Combine Under N Chars",
|
197 |
| - "description": "If chunking strategy is set, combine elements until a section reaches a length of n chars. Default: 500", |
| 197 | + "description": "If chunking strategy is set, combine elements until a section reaches a length of n chars. Default: max_characters", |
198 | 198 | "example": 500
|
199 | 199 | },
|
200 | 200 | "max_characters": {
|
201 | 201 | "type": "integer",
|
202 | 202 | "title": "Max Characters",
|
203 |
| - "description": "If chunking strategy is set, cut off new sections after reaching a length of n chars (hard max). Default: 1500", |
| 203 | + "description": "If chunking strategy is set, cut off new sections after reaching a length of n chars (hard max). Default: 500", |
204 | 204 | "example": 1500
|
205 | 205 | },
|
206 | 206 | "multipage_sections": {
|
207 | 207 | "type": "boolean",
|
208 | 208 | "title": "Multipage Sections",
|
209 |
| - "description": "If chunking strategy is set, determines if sections can span multiple sections. Default: true" |
| 209 | + "description": "If chunking strategy is set, determines if sections can span multiple pages. Only applies to by_title chunking strategy.Default: true" |
210 | 210 | },
|
211 | 211 | "new_after_n_chars": {
|
212 | 212 | "type": "integer",
|
213 | 213 | "title": "New after n chars",
|
214 |
| - "description": "If chunking strategy is set, cut off new sections after reaching a length of n chars (soft max). Default: 1500", |
| 214 | + "description": "If chunking strategy is set, cut off new sections after reaching a length of n chars (soft max). Default: max_characters (off)", |
215 | 215 | "example": 1500
|
216 | 216 | },
|
217 | 217 | "overlap": {
|
218 | 218 | "type": "integer",
|
219 | 219 | "title": "Intra-chunk overlap",
|
220 |
| - "description": "A prefix of this many trailing characters from prior text-split chunk is applied to second and later chunks formed from oversized elements by text-splitting. Default: None", |
| 220 | + "description": "A prefix of this many trailing characters from the prior text-split chunk is applied to second and later chunks formed from oversized elements by text-splitting. Default: None", |
221 | 221 | "example": 25
|
222 | 222 | },
|
223 | 223 | "overlap_all": {
|
224 | 224 | "type": "boolean",
|
225 | 225 | "title": "Inter-chunk overlap",
|
226 |
| - "description": "When True, overlap is also applied to 'normal' chunks formed by combining whole elements. Use with caution as this can introduce noise into otherwise clean semantic units. Default: None", |
227 |
| - "example": 1500 |
| 226 | + "description": "When True, overlap is also applied to 'normal' chunks formed by combining whole elements. Use with caution as this can introduce noise into otherwise clean semantic units. Default: None" |
228 | 227 | },
|
229 | 228 | "extract_image_block_types": {
|
230 | 229 | "items": {
|
|
0 commit comments