UNPKG

@genkit-ai/vertexai

Version:

Genkit AI framework plugin for Google Cloud Vertex AI APIs including Gemini APIs, Imagen, and more.

49 lines (45 loc) 2.62 kB
import { z, ModelReference, EmbedderReference } from 'genkit'; import { GenkitPlugin } from 'genkit/plugin'; import { P as PluginOptions, S as SUPPORTED_GEMINI_MODELS, G as GeminiConfigSchema } from './types-C9MotdXn.js'; export { n as GeminiConfig, o as GeminiVersionString, a as SafetySettingsSchema, g as gemini, b as gemini10Pro, c as gemini15Flash, d as gemini15Pro, e as gemini20Flash, f as gemini20Flash001, h as gemini20FlashLite, i as gemini20FlashLitePreview0205, j as gemini20ProExp0205, k as gemini25FlashPreview0417, l as gemini25ProExp0325, m as gemini25ProPreview0325 } from './types-C9MotdXn.js'; import { VertexEmbeddingConfig, VertexEmbeddingConfigSchema } from './embedder.js'; export { multimodalEmbedding001, textEmbedding004, textEmbedding005, textEmbeddingGecko003, textEmbeddingGeckoMultilingual001, textMultilingualEmbedding002 } from './embedder.js'; import { ACTUAL_IMAGEN_MODELS, ImagenConfigSchema } from './imagen.js'; export { imagen2, imagen3, imagen3Fast } from './imagen.js'; import 'google-auth-library'; import '@google-cloud/vertexai'; import 'genkit/model'; import 'genkit/embedder'; /** * @license * * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /** * @module / */ type VertexAIPlugin = { (params?: PluginOptions): GenkitPlugin; model(name: keyof typeof SUPPORTED_GEMINI_MODELS | (`gemini-${string}` & {}), config?: z.infer<typeof GeminiConfigSchema>): ModelReference<typeof GeminiConfigSchema>; model(name: keyof typeof ACTUAL_IMAGEN_MODELS | (`imagen${string}` & {}), config?: z.infer<typeof ImagenConfigSchema>): ModelReference<typeof ImagenConfigSchema>; model(name: string, config?: any): ModelReference<z.ZodTypeAny>; embedder(name: string, config?: VertexEmbeddingConfig): EmbedderReference<typeof VertexEmbeddingConfigSchema>; }; /** * Google Cloud Vertex AI plugin for Genkit. * Includes Gemini and Imagen models and text embedder. */ declare const vertexAI: VertexAIPlugin; export { GeminiConfigSchema, ImagenConfigSchema, PluginOptions, type VertexAIPlugin, vertexAI as default, vertexAI };