Package com.openai.models.vectorstores
Class OtherFileChunkingStrategyObject
-
- All Implemented Interfaces:
public final class OtherFileChunkingStrategyObject
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.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final class
OtherFileChunkingStrategyObject.Builder
A builder for OtherFileChunkingStrategyObject.
-
Method Summary
Modifier and Type Method Description final JsonValue
_type()
Always other
.final Map<String, JsonValue>
_additionalProperties()
final OtherFileChunkingStrategyObject.Builder
toBuilder()
final OtherFileChunkingStrategyObject
validate()
final Boolean
isValid()
Boolean
equals(Object other)
Integer
hashCode()
String
toString()
final static OtherFileChunkingStrategyObject.Builder
builder()
Returns a mutable builder for constructing an instance of OtherFileChunkingStrategyObject. -
-
Method Detail
-
_type
final JsonValue _type()
Always
other
.Expected to always return the following:
JsonValue.from("other")
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 OtherFileChunkingStrategyObject.Builder toBuilder()
-
validate
final OtherFileChunkingStrategyObject validate()
-
builder
final static OtherFileChunkingStrategyObject.Builder builder()
Returns a mutable builder for constructing an instance of OtherFileChunkingStrategyObject.
-
-
-
-