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

GoogleCloudAiplatformV1FeatureViewVertexRagSource

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

A Vertex Rag source for features that need to be synced to Online Store.

interface GoogleCloudAiplatformV1FeatureViewVertexRagSource {
ragCorpusId?: bigint;
uri?: string;
}

§Properties

§
ragCorpusId?: bigint
[src]

Optional. The RAG corpus id corresponding to this FeatureView.

§
uri?: string
[src]

Required. The BigQuery view/table URI that will be materialized on each manual sync trigger. The table/view is expected to have the following columns and types at least: - corpus_id (STRING, NULLABLE/REQUIRED) - file_id (STRING, NULLABLE/REQUIRED) - chunk_id (STRING, NULLABLE/REQUIRED) - chunk_data_type (STRING, NULLABLE/REQUIRED) - chunk_data (STRING, NULLABLE/REQUIRED) - embeddings (FLOAT, REPEATED) - file_original_uri (STRING, NULLABLE/REQUIRED)