Table of Contents

Enum ChunkingStrategyType

Namespace
OpenAI.VectorStores
Assembly
OpenAI-DotNet.dll
public enum ChunkingStrategyType

Fields

[EnumMember(Value = "auto")] Auto = 0

The default strategy. This strategy currently uses a 'max_chunk_size_tokens' of '800' and 'chunk_overlap_tokens' of '400'.

[EnumMember(Value = "other")] Other = 1

This is returned when the chunking strategy is unknown. Typically, this is because the file was indexed before the 'chunking_strategy' concept was introduced in the API.

[EnumMember(Value = "static")] Static = 2