Package com.openai.models
Interface FileChunkingStrategyParam.Visitor
-
- All Implemented Interfaces:
public interface FileChunkingStrategyParam.Visitor<T extends Object>
-
-
Method Summary
Modifier and Type Method Description abstract T
visitAuto(AutoFileChunkingStrategyParam auto)
The default strategy. abstract T
visitStatic(StaticFileChunkingStrategyObjectParam static_)
T
unknown(JsonValue json)
-
-
Method Detail
-
visitAuto
abstract T visitAuto(AutoFileChunkingStrategyParam auto)
The default strategy. This strategy currently uses a
max_chunk_size_tokens
of800
andchunk_overlap_tokens
of400
.
-
visitStatic
abstract T visitStatic(StaticFileChunkingStrategyObjectParam static_)
-
-
-
-