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