Package com.openai.models.vectorstores
Class AutoFileChunkingStrategyParam
-
- All Implemented Interfaces:
public final class AutoFileChunkingStrategyParam
The default strategy. This strategy currently uses a
max_chunk_size_tokens
of800
andchunk_overlap_tokens
of400
.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final class
AutoFileChunkingStrategyParam.Builder
A builder for AutoFileChunkingStrategyParam.
-
Method Summary
Modifier and Type Method Description final JsonValue
_type()
Always auto
.final Map<String, JsonValue>
_additionalProperties()
final AutoFileChunkingStrategyParam.Builder
toBuilder()
final AutoFileChunkingStrategyParam
validate()
final Boolean
isValid()
Boolean
equals(Object other)
Integer
hashCode()
String
toString()
final static AutoFileChunkingStrategyParam.Builder
builder()
Returns a mutable builder for constructing an instance of AutoFileChunkingStrategyParam. -
-
Method Detail
-
_type
final JsonValue _type()
Always
auto
.Expected to always return the following:
JsonValue.from("auto")
However, this method can be useful for debugging and logging (e.g. if the server responded with an unexpected value).
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final AutoFileChunkingStrategyParam.Builder toBuilder()
-
validate
final AutoFileChunkingStrategyParam validate()
-
builder
final static AutoFileChunkingStrategyParam.Builder builder()
Returns a mutable builder for constructing an instance of AutoFileChunkingStrategyParam.
-
-
-
-