From 59c6aaa290725488a98106e67a5b849fcdd058e1 Mon Sep 17 00:00:00 2001 From: russellwheatley Date: Mon, 20 Jan 2025 14:42:16 +0000 Subject: [PATCH] chore: make note on API versions --- packages/vertexai/lib/constants.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/vertexai/lib/constants.ts b/packages/vertexai/lib/constants.ts index 50acc705a8..f333ada893 100644 --- a/packages/vertexai/lib/constants.ts +++ b/packages/vertexai/lib/constants.ts @@ -23,6 +23,8 @@ export const DEFAULT_LOCATION = 'us-central1'; export const DEFAULT_BASE_URL = 'https://firebasevertexai.googleapis.com'; +// This is the default API version for the VertexAI API. At some point, should be able to change when the feature becomes available. +// `v1beta` & `stable` available: https://cloud.google.com/vertex-ai/docs/reference#versions export const DEFAULT_API_VERSION = 'v1beta'; export const PACKAGE_VERSION = version;