Share via


VectorStoreStaticChunkingStrategyOptions Class

Definition

Options to configure a vector store static chunking strategy.

public class VectorStoreStaticChunkingStrategyOptions : System.ClientModel.Primitives.IJsonModel<Azure.AI.Agents.Persistent.VectorStoreStaticChunkingStrategyOptions>, System.ClientModel.Primitives.IPersistableModel<Azure.AI.Agents.Persistent.VectorStoreStaticChunkingStrategyOptions>
type VectorStoreStaticChunkingStrategyOptions = class
    interface IJsonModel<VectorStoreStaticChunkingStrategyOptions>
    interface IPersistableModel<VectorStoreStaticChunkingStrategyOptions>
Public Class VectorStoreStaticChunkingStrategyOptions
Implements IJsonModel(Of VectorStoreStaticChunkingStrategyOptions), IPersistableModel(Of VectorStoreStaticChunkingStrategyOptions)
Inheritance
VectorStoreStaticChunkingStrategyOptions
Implements

Constructors

Name Description
VectorStoreStaticChunkingStrategyOptions(Int32, Int32)

Initializes a new instance of VectorStoreStaticChunkingStrategyOptions.

Properties

Name Description
ChunkOverlapTokens

The number of tokens that overlap between chunks. The default value is 400. Note that the overlap must not exceed half of max_chunk_size_tokens.

MaxChunkSizeTokens

The maximum number of tokens in each chunk. The default value is 800. The minimum value is 100 and the maximum value is 4096.

Methods

Name Description
JsonModelWriteCore(Utf8JsonWriter, ModelReaderWriterOptions)

Explicit Interface Implementations

Name Description
IJsonModel<VectorStoreStaticChunkingStrategyOptions>.Create(Utf8JsonReader, ModelReaderWriterOptions)

Reads one JSON value (including objects or arrays) from the provided reader and converts it to a model.

IJsonModel<VectorStoreStaticChunkingStrategyOptions>.Write(Utf8JsonWriter, ModelReaderWriterOptions)

Writes the model to the provided Utf8JsonWriter.

IPersistableModel<VectorStoreStaticChunkingStrategyOptions>.Create(BinaryData, ModelReaderWriterOptions)

Converts the provided BinaryData into a model.

IPersistableModel<VectorStoreStaticChunkingStrategyOptions>.GetFormatFromOptions(ModelReaderWriterOptions)

Gets the data interchange format (JSON, Xml, etc) that the model uses when communicating with the service.

IPersistableModel<VectorStoreStaticChunkingStrategyOptions>.Write(ModelReaderWriterOptions)

Writes the model into a BinaryData.

Applies to