Package com.openai.models.vectorstores
Class VectorStoreSearchResponse.Content.Builder
-
- All Implemented Interfaces:
public final class VectorStoreSearchResponse.Content.Builder
A builder for Content.
-
-
Method Summary
-
-
Method Detail
-
text
final VectorStoreSearchResponse.Content.Builder text(String text)
The text content returned from search.
-
text
final VectorStoreSearchResponse.Content.Builder text(JsonField<String> text)
The text content returned from search.
-
type
final VectorStoreSearchResponse.Content.Builder type(VectorStoreSearchResponse.Content.Type type)
The type of content.
-
type
final VectorStoreSearchResponse.Content.Builder type(JsonField<VectorStoreSearchResponse.Content.Type> type)
The type of content.
-
additionalProperties
final VectorStoreSearchResponse.Content.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final VectorStoreSearchResponse.Content.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final VectorStoreSearchResponse.Content.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final VectorStoreSearchResponse.Content.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final VectorStoreSearchResponse.Content.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final VectorStoreSearchResponse.Content build()
-
-
-
-