UNPKG

@genkit-ai/googleai

Version:

Genkit AI framework plugin for Google AI APIs, including Gemini APIs.

67 lines (63 loc) 2.62 kB
import { z, Genkit } from 'genkit'; import { ModelAction } from 'genkit/model'; /** * 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. */ /** * @deprecated */ type KNOWN_IMAGEN_MODELS = 'imagen-3.0-generate-002'; /** * See https://ai.google.dev/gemini-api/docs/image-generation#imagen-model * @deprecated */ declare const ImagenConfigSchema: z.ZodObject<{ numberOfImages: z.ZodOptional<z.ZodNumber>; aspectRatio: z.ZodOptional<z.ZodEnum<["1:1", "9:16", "16:9", "3:4", "4:3"]>>; personGeneration: z.ZodOptional<z.ZodEnum<["dont_allow", "allow_adult", "allow_all"]>>; }, "passthrough", z.ZodTypeAny, z.objectOutputType<{ numberOfImages: z.ZodOptional<z.ZodNumber>; aspectRatio: z.ZodOptional<z.ZodEnum<["1:1", "9:16", "16:9", "3:4", "4:3"]>>; personGeneration: z.ZodOptional<z.ZodEnum<["dont_allow", "allow_adult", "allow_all"]>>; }, z.ZodTypeAny, "passthrough">, z.objectInputType<{ numberOfImages: z.ZodOptional<z.ZodNumber>; aspectRatio: z.ZodOptional<z.ZodEnum<["1:1", "9:16", "16:9", "3:4", "4:3"]>>; personGeneration: z.ZodOptional<z.ZodEnum<["dont_allow", "allow_adult", "allow_all"]>>; }, z.ZodTypeAny, "passthrough">>; /** * @deprecated */ declare const GENERIC_IMAGEN_INFO: { label?: string | undefined; supports?: { media?: boolean | undefined; contentType?: string[] | undefined; output?: string[] | undefined; context?: boolean | undefined; multiturn?: boolean | undefined; tools?: boolean | undefined; systemRole?: boolean | undefined; constrained?: "none" | "all" | "no-tools" | undefined; toolChoice?: boolean | undefined; } | undefined; configSchema?: Record<string, any> | undefined; versions?: string[] | undefined; stage?: "featured" | "stable" | "unstable" | "legacy" | "deprecated" | undefined; }; /** * @deprecated */ declare function defineImagenModel(ai: Genkit, name: string, apiKey?: string | false): ModelAction; export { GENERIC_IMAGEN_INFO, ImagenConfigSchema, type KNOWN_IMAGEN_MODELS, defineImagenModel };