Package com.google.genai.types
Class ToolParallelAiSearch
java.lang.Object
com.google.genai.JsonSerializable
com.google.genai.types.ToolParallelAiSearch
ParallelAiSearch tool type. A tool that uses the Parallel.ai search engine for grounding. This
data type is not supported in Gemini API.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classBuilder for ToolParallelAiSearch. -
Field Summary
Fields inherited from class com.google.genai.JsonSerializable
MAX_READ_LENGTH_PROPERTY -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionapiKey()Optional.static ToolParallelAiSearch.Builderbuilder()Instantiates a builder for ToolParallelAiSearch.Optional.static ToolParallelAiSearchDeserializes a JSON string to a ToolParallelAiSearch object.abstract ToolParallelAiSearch.BuilderCreates a builder with the same values as this instance.Methods inherited from class com.google.genai.JsonSerializable
fromJsonNode, fromJsonString, objectMapper, setMaxReadLength, stringToJsonNode, toJson, toJsonNode, toJsonString
-
Constructor Details
-
ToolParallelAiSearch
public ToolParallelAiSearch()
-
-
Method Details
-
apiKey
Optional. The API key for ParallelAiSearch. If an API key is not provided, the system will attempt to verify access by checking for an active Parallel.ai subscription through the Google Cloud Marketplace. See https://docs.parallel.ai/search/search-quickstart for more details. -
customConfigs
Optional. Custom configs for ParallelAiSearch. This field can be used to pass any parameter from the Parallel.ai Search API. See the Parallel.ai documentation for the full list of available parameters and their usage: https://docs.parallel.ai/api-reference/search-beta/search Currently only `source_policy`, `excerpts`, `max_results`, `mode`, `fetch_policy` can be set via this field. For example: { "source_policy": { "include_domains": ["google.com", "wikipedia.org"], "exclude_domains": ["example.com"] }, "fetch_policy": { "max_age_seconds": 3600 } } -
builder
Instantiates a builder for ToolParallelAiSearch. -
toBuilder
Creates a builder with the same values as this instance. -
fromJson
Deserializes a JSON string to a ToolParallelAiSearch object.
-