UNPKG

@promptbook/gemini

Version:

It's time for a paradigm shift. The future of software in plain English, French or Latin

21 lines (20 loc) 537 B
import type { ModelVariant } from '../types/ModelVariant'; import type { string_model_name } from '../types/typeAliases'; import type { string_title } from '../types/typeAliases'; /** * Represents a model that can be used for prompt execution */ export type AvailableModel = { /** * The model title */ readonly modelTitle: string_title; /** * The model name aviailable */ readonly modelName: string_model_name; /** * Variant of the model */ readonly modelVariant: ModelVariant; };