Package com.openai.models
Class FileSearchToolCall.Builder
-
- All Implemented Interfaces:
public final class FileSearchToolCall.Builder
A builder for FileSearchToolCall.
-
-
Method Summary
-
-
Method Detail
-
id
final FileSearchToolCall.Builder id(String id)
The ID of the tool call object.
-
id
final FileSearchToolCall.Builder id(JsonField<String> id)
The ID of the tool call object.
-
fileSearch
final FileSearchToolCall.Builder fileSearch(FileSearchToolCall.FileSearch fileSearch)
For now, this is always going to be an empty object.
-
fileSearch
final FileSearchToolCall.Builder fileSearch(JsonField<FileSearchToolCall.FileSearch> fileSearch)
For now, this is always going to be an empty object.
-
type
final FileSearchToolCall.Builder type(JsonValue type)
The type of tool call. This is always going to be
file_search
for this type of tool call.
-
additionalProperties
final FileSearchToolCall.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final FileSearchToolCall.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final FileSearchToolCall.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final FileSearchToolCall.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final FileSearchToolCall.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final FileSearchToolCall build()
-
-
-
-