SearchModelFactory.ContentUnderstandingSkillChunkingProperties Method

Definition

Controls the cardinality for chunking the content.

public static Azure.Search.Documents.Indexes.Models.ContentUnderstandingSkillChunkingProperties ContentUnderstandingSkillChunkingProperties(Azure.Search.Documents.Indexes.Models.ContentUnderstandingSkillChunkingUnit? unit = default, int? maximumLength = default, int? overlapLength = default);
static member ContentUnderstandingSkillChunkingProperties : Nullable<Azure.Search.Documents.Indexes.Models.ContentUnderstandingSkillChunkingUnit> * Nullable<int> * Nullable<int> -> Azure.Search.Documents.Indexes.Models.ContentUnderstandingSkillChunkingProperties
Public Shared Function ContentUnderstandingSkillChunkingProperties (Optional unit As Nullable(Of ContentUnderstandingSkillChunkingUnit) = Nothing, Optional maximumLength As Nullable(Of Integer) = Nothing, Optional overlapLength As Nullable(Of Integer) = Nothing) As ContentUnderstandingSkillChunkingProperties

Parameters

unit
Nullable<ContentUnderstandingSkillChunkingUnit>

The unit of the chunk.

maximumLength
Nullable<Int32>

The maximum chunk length in characters. Default is 500.

overlapLength
Nullable<Int32>

The length of overlap provided between two text chunks. Default is 0.

Returns

A new ContentUnderstandingSkillChunkingProperties instance for mocking.

Applies to