Package com.openai.models
Class BetaVectorStoreFileBatchCreateParams.Body
-
- All Implemented Interfaces:
public final class BetaVectorStoreFileBatchCreateParams.Body
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final class
BetaVectorStoreFileBatchCreateParams.Body.Builder
A builder for Body.
-
Method Summary
Modifier and Type Method Description final List<String>
fileIds()
A list of File IDs that the vector store should use. final Optional<FileChunkingStrategyParam>
chunkingStrategy()
The chunking strategy used to chunk the file(s). final JsonField<List<String>>
_fileIds()
A list of File IDs that the vector store should use. final JsonField<FileChunkingStrategyParam>
_chunkingStrategy()
The chunking strategy used to chunk the file(s). final Map<String, JsonValue>
_additionalProperties()
final BetaVectorStoreFileBatchCreateParams.Body
validate()
final BetaVectorStoreFileBatchCreateParams.Body.Builder
toBuilder()
Boolean
equals(Object other)
Integer
hashCode()
String
toString()
final static BetaVectorStoreFileBatchCreateParams.Body.Builder
builder()
-
-
Method Detail
-
fileIds
final List<String> fileIds()
A list of File IDs that the vector store should use. Useful for tools like
file_search
that can access files.
-
chunkingStrategy
final Optional<FileChunkingStrategyParam> chunkingStrategy()
The chunking strategy used to chunk the file(s). If not set, will use the
auto
strategy. Only applicable iffile_ids
is non-empty.
-
_fileIds
final JsonField<List<String>> _fileIds()
A list of File IDs that the vector store should use. Useful for tools like
file_search
that can access files.
-
_chunkingStrategy
final JsonField<FileChunkingStrategyParam> _chunkingStrategy()
The chunking strategy used to chunk the file(s). If not set, will use the
auto
strategy. Only applicable iffile_ids
is non-empty.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
validate
final BetaVectorStoreFileBatchCreateParams.Body validate()
-
toBuilder
final BetaVectorStoreFileBatchCreateParams.Body.Builder toBuilder()
-
builder
final static BetaVectorStoreFileBatchCreateParams.Body.Builder builder()
-
-
-
-