@nyrra/foundry-ai
Version:
Thin Palantir Foundry provider adapters and model catalog for the Vercel AI SDK.
16 lines (13 loc) • 670 B
text/typescript
import { M as ModelMetadata } from './types-q41cp7rO.cjs';
declare const GOOGLE_MODELS: {
readonly 'gemini-2.5-pro': ModelMetadata;
readonly 'gemini-2.5-flash': ModelMetadata;
readonly 'gemini-2.5-flash-lite': ModelMetadata;
readonly 'gemini-3-flash': ModelMetadata;
readonly 'gemini-3.1-pro': ModelMetadata;
readonly 'gemini-3.1-flash-lite': ModelMetadata;
};
type KnownGoogleModelId = keyof typeof GOOGLE_MODELS;
type GoogleModelId = KnownGoogleModelId | (string & {});
declare const GOOGLE_MODEL_IDS: readonly KnownGoogleModelId[];
export { GOOGLE_MODELS as G, type KnownGoogleModelId as K, GOOGLE_MODEL_IDS as a, type GoogleModelId as b };