Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GoogleCloudAiplatformV1VertexAISearch

import type { GoogleCloudAiplatformV1VertexAISearch } from "https://googleapis.deno.dev/v1/aiplatform:v1.ts";

Retrieve from Vertex AI Search datastore or engine for grounding. datastore and engine are mutually exclusive. See https://cloud.google.com/products/agent-builder

interface GoogleCloudAiplatformV1VertexAISearch {
datastore?: string;
engine?: string;
filter?: string;
maxResults?: number;
}

§Properties

§
datastore?: string
[src]

Optional. Fully-qualified Vertex AI Search data store resource ID. Format: projects/{project}/locations/{location}/collections/{collection}/dataStores/{dataStore}

§

Specifications that define the specific DataStores to be searched, along with configurations for those data stores. This is only considered for Engines with multiple data stores. It should only be set if engine is used.

§
engine?: string
[src]

Optional. Fully-qualified Vertex AI Search engine resource ID. Format: projects/{project}/locations/{location}/collections/{collection}/engines/{engine}

§
filter?: string
[src]

Optional. Filter strings to be passed to the search API.

§
maxResults?: number
[src]

Optional. Number of search results to return per query. The default value is 10. The maximumm allowed value is 10.