@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
19 lines (18 loc) • 542 B
TypeScript
import type { AvailableModel } from '../../execution/AvailableModel';
import type { number_usd } from '../../types/number_usd';
/**
* List of available Google models with descriptions
*
* Note: Synced with official API docs at 2026-03-22
*
* @see https://ai.google.dev/models/gemini
*
* @public exported from `@promptbook/google`
*/
export declare const GOOGLE_MODELS: ReadonlyArray<AvailableModel & {
modelDescription?: string;
pricing?: {
readonly prompt: number_usd;
readonly output: number_usd;
};
}>;