@adaline/google 1.3.3 → 1.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -3118,6 +3118,178 @@ declare class Gemini2_5ProPreview0325 extends BaseChatModel {
3118
3118
  constructor(options: Gemini2_5ProPreview0325OptionsType);
3119
3119
  }
3120
3120
 
3121
+ declare const Gemini2_5FlashLiteral = "gemini-2.5-flash";
3122
+ declare const Gemini2_5FlashSchema: {
3123
+ description: string;
3124
+ maxOutputTokens: number;
3125
+ name: string;
3126
+ roles: Partial<Record<"system" | "user" | "assistant" | "tool", string | undefined>>;
3127
+ modalities: ["text" | "image" | "tool-call" | "tool-response", ...("text" | "image" | "tool-call" | "tool-response")[]];
3128
+ maxInputTokens: number;
3129
+ config: {
3130
+ def: Record<string, {
3131
+ type: "multi-string";
3132
+ param: string;
3133
+ title: string;
3134
+ description: string;
3135
+ max: number;
3136
+ } | {
3137
+ type: "object-schema";
3138
+ param: string;
3139
+ title: string;
3140
+ description: string;
3141
+ objectSchema?: any;
3142
+ } | {
3143
+ type: "range";
3144
+ param: string;
3145
+ title: string;
3146
+ description: string;
3147
+ max: number;
3148
+ default: number;
3149
+ min: number;
3150
+ step: number;
3151
+ } | {
3152
+ type: "select-boolean";
3153
+ param: string;
3154
+ title: string;
3155
+ description: string;
3156
+ default: boolean | null;
3157
+ } | {
3158
+ type: "select-string";
3159
+ param: string;
3160
+ title: string;
3161
+ description: string;
3162
+ default: string;
3163
+ choices: string[];
3164
+ }>;
3165
+ schema: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, unknown, unknown>;
3166
+ };
3167
+ price: {
3168
+ modelName: string;
3169
+ currency: string;
3170
+ tokenRanges: {
3171
+ minTokens: number;
3172
+ prices: {
3173
+ base: {
3174
+ inputPricePerMillion: number;
3175
+ outputPricePerMillion: number;
3176
+ };
3177
+ };
3178
+ maxTokens?: number | null | undefined;
3179
+ }[];
3180
+ };
3181
+ maxReasoningTokens?: number | undefined;
3182
+ };
3183
+ declare const Gemini2_5FlashOptions: z.ZodObject<{
3184
+ modelName: z.ZodString;
3185
+ apiKey: z.ZodString;
3186
+ baseUrl: z.ZodOptional<z.ZodString>;
3187
+ completeChatUrl: z.ZodOptional<z.ZodString>;
3188
+ streamChatUrl: z.ZodOptional<z.ZodString>;
3189
+ }, "strip", z.ZodTypeAny, {
3190
+ modelName: string;
3191
+ apiKey: string;
3192
+ baseUrl?: string | undefined;
3193
+ completeChatUrl?: string | undefined;
3194
+ streamChatUrl?: string | undefined;
3195
+ }, {
3196
+ modelName: string;
3197
+ apiKey: string;
3198
+ baseUrl?: string | undefined;
3199
+ completeChatUrl?: string | undefined;
3200
+ streamChatUrl?: string | undefined;
3201
+ }>;
3202
+ type Gemini2_5FlashOptionsType = z.infer<typeof Gemini2_5FlashOptions>;
3203
+ declare class Gemini2_5Flash extends BaseChatModel {
3204
+ constructor(options: Gemini2_5FlashOptionsType);
3205
+ }
3206
+
3207
+ declare const Gemini2_5ProLiteral = "gemini-2.5-pro";
3208
+ declare const Gemini2_5ProSchema: {
3209
+ description: string;
3210
+ maxOutputTokens: number;
3211
+ name: string;
3212
+ roles: Partial<Record<"system" | "user" | "assistant" | "tool", string | undefined>>;
3213
+ modalities: ["text" | "image" | "tool-call" | "tool-response", ...("text" | "image" | "tool-call" | "tool-response")[]];
3214
+ maxInputTokens: number;
3215
+ config: {
3216
+ def: Record<string, {
3217
+ type: "multi-string";
3218
+ param: string;
3219
+ title: string;
3220
+ description: string;
3221
+ max: number;
3222
+ } | {
3223
+ type: "object-schema";
3224
+ param: string;
3225
+ title: string;
3226
+ description: string;
3227
+ objectSchema?: any;
3228
+ } | {
3229
+ type: "range";
3230
+ param: string;
3231
+ title: string;
3232
+ description: string;
3233
+ max: number;
3234
+ default: number;
3235
+ min: number;
3236
+ step: number;
3237
+ } | {
3238
+ type: "select-boolean";
3239
+ param: string;
3240
+ title: string;
3241
+ description: string;
3242
+ default: boolean | null;
3243
+ } | {
3244
+ type: "select-string";
3245
+ param: string;
3246
+ title: string;
3247
+ description: string;
3248
+ default: string;
3249
+ choices: string[];
3250
+ }>;
3251
+ schema: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, unknown, unknown>;
3252
+ };
3253
+ price: {
3254
+ modelName: string;
3255
+ currency: string;
3256
+ tokenRanges: {
3257
+ minTokens: number;
3258
+ prices: {
3259
+ base: {
3260
+ inputPricePerMillion: number;
3261
+ outputPricePerMillion: number;
3262
+ };
3263
+ };
3264
+ maxTokens?: number | null | undefined;
3265
+ }[];
3266
+ };
3267
+ maxReasoningTokens?: number | undefined;
3268
+ };
3269
+ declare const Gemini2_5ProOptions: z.ZodObject<{
3270
+ modelName: z.ZodString;
3271
+ apiKey: z.ZodString;
3272
+ baseUrl: z.ZodOptional<z.ZodString>;
3273
+ completeChatUrl: z.ZodOptional<z.ZodString>;
3274
+ streamChatUrl: z.ZodOptional<z.ZodString>;
3275
+ }, "strip", z.ZodTypeAny, {
3276
+ modelName: string;
3277
+ apiKey: string;
3278
+ baseUrl?: string | undefined;
3279
+ completeChatUrl?: string | undefined;
3280
+ streamChatUrl?: string | undefined;
3281
+ }, {
3282
+ modelName: string;
3283
+ apiKey: string;
3284
+ baseUrl?: string | undefined;
3285
+ completeChatUrl?: string | undefined;
3286
+ streamChatUrl?: string | undefined;
3287
+ }>;
3288
+ type Gemini2_5ProOptionsType = z.infer<typeof Gemini2_5ProOptions>;
3289
+ declare class Gemini2_5Pro extends BaseChatModel {
3290
+ constructor(options: Gemini2_5ProOptionsType);
3291
+ }
3292
+
3121
3293
  declare const GoogleEmbeddingModelModalities: EmbeddingModelSchemaType["modalities"];
3122
3294
  declare const GoogleEmbeddingModelModalitiesEnum: z.ZodEnum<["text"]>;
3123
3295
 
@@ -3432,4 +3604,4 @@ declare class Google<C extends BaseChatModelOptionsType, E extends BaseEmbedding
3432
3604
  embeddingModel(options: E): EmbeddingModelV1;
3433
3605
  }
3434
3606
 
3435
- export { BaseChatModel, BaseChatModelOptions, type BaseChatModelOptionsType, BaseEmbeddingModel, BaseEmbeddingModelOptions, type BaseEmbeddingModelOptionsType, ChatModelBaseConfigDef, ChatModelBaseConfigSchema, ChatModelReasoningConfigDef, ChatModelReasoningConfigSchema, EmbeddingModelBaseConfigDef, EmbeddingModelBaseConfigSchema, Gemini1_5Flash, Gemini1_5Flash001, Gemini1_5Flash001Literal, Gemini1_5Flash001Options, type Gemini1_5Flash001OptionsType, Gemini1_5Flash001Schema, Gemini1_5Flash002, Gemini1_5Flash002Literal, Gemini1_5Flash002Options, type Gemini1_5Flash002OptionsType, Gemini1_5Flash002Schema, Gemini1_5FlashLatest, Gemini1_5FlashLatestLiteral, Gemini1_5FlashLatestOptions, type Gemini1_5FlashLatestOptionsType, Gemini1_5FlashLatestSchema, Gemini1_5FlashLiteral, Gemini1_5FlashOptions, type Gemini1_5FlashOptionsType, Gemini1_5FlashSchema, Gemini1_5Pro, Gemini1_5Pro001, Gemini1_5Pro001Literal, Gemini1_5Pro001Options, type Gemini1_5Pro001OptionsType, Gemini1_5Pro001Schema, Gemini1_5Pro002, Gemini1_5Pro002Literal, Gemini1_5Pro002Options, type Gemini1_5Pro002OptionsType, Gemini1_5Pro002Schema, Gemini1_5ProLatest, Gemini1_5ProLatestLiteral, Gemini1_5ProLatestOptions, type Gemini1_5ProLatestOptionsType, Gemini1_5ProLatestSchema, Gemini1_5ProLiteral, Gemini1_5ProOptions, type Gemini1_5ProOptionsType, Gemini1_5ProSchema, Gemini2_0FlashExp, Gemini2_0FlashExpLiteral, Gemini2_0FlashExpOptions, type Gemini2_0FlashExpOptionsType, Gemini2_0FlashExpSchema, Gemini2_5FlashPreview0417, Gemini2_5FlashPreview0417Literal, Gemini2_5FlashPreview0417Options, type Gemini2_5FlashPreview0417OptionsType, Gemini2_5FlashPreview0417Schema, Gemini2_5ProPreview0325, Gemini2_5ProPreview0325Literal, Gemini2_5ProPreview0325Options, type Gemini2_5ProPreview0325OptionsType, Gemini2_5ProPreview0325Schema, Google, GoogleChatAssistantRoleLiteral, GoogleChatContent, GoogleChatContentPartFunctionCall, type GoogleChatContentPartFunctionCallType, GoogleChatContentPartFunctionResponse, type GoogleChatContentPartFunctionResponseType, GoogleChatContentPartInlineData, type GoogleChatContentPartInlineDataType, GoogleChatContentPartText, type GoogleChatContentPartTextType, type GoogleChatContentType, GoogleChatGenerationConfig, type GoogleChatGenerationConfigType, GoogleChatModelConfigs, GoogleChatModelModalities, GoogleChatModelModalitiesEnum, GoogleChatModelResponseSchemaConfigDef, GoogleChatModelResponseSchemaConfigSchema, GoogleChatModelRoles, GoogleChatModelRolesMap, GoogleChatModelTextModalities, GoogleChatModelTextModalitiesEnum, GoogleChatModelTextToolModalities, GoogleChatModelTextToolModalitiesEnum, GoogleChatModelTextVisionModalities, GoogleChatModelTextVisionModalitiesEnum, GoogleChatRequest, type GoogleChatRequestType, GoogleChatSafetySettings, type GoogleChatSafetySettingsType, GoogleChatSystemInstruction, type GoogleChatSystemInstructionType, GoogleChatTool, GoogleChatToolConfig, type GoogleChatToolConfigType, GoogleChatToolRoleLiteral, type GoogleChatToolType, GoogleCompleteChatResponse, type GoogleCompleteChatResponseType, GoogleCompleteChatTextResponse, GoogleCompleteChatToolResponse, GoogleEmbeddingModelConfigs, GoogleEmbeddingModelModalities, GoogleEmbeddingModelModalitiesEnum, GoogleEmbeddingRequest, GoogleEmbeddingRequestInput, type GoogleEmbeddingRequestInputType, type GoogleEmbeddingRequestType, GoogleGetEmbeddingsResponse, type GoogleGetEmbeddingsResponseType, GoogleStreamChatResponse, type GoogleStreamChatResponseType, GoogleStreamChatTextResponse, GoogleStreamChatToolResponse, ProviderLiteral, Text_Embedding_001, Text_Embedding_001Literal, Text_Embedding_001Options, type Text_Embedding_001OptionsType, Text_Embedding_001Schema, Text_Embedding_004, Text_Embedding_004Literal, Text_Embedding_004Options, type Text_Embedding_004OptionsType, Text_Embedding_004Schema, dimensions, frequencyPenalty, maxTokens, presencePenalty, reasoningEnabled, safetySettings, seed, stop, temperature, toolChoice, topK, topP };
3607
+ export { BaseChatModel, BaseChatModelOptions, type BaseChatModelOptionsType, BaseEmbeddingModel, BaseEmbeddingModelOptions, type BaseEmbeddingModelOptionsType, ChatModelBaseConfigDef, ChatModelBaseConfigSchema, ChatModelReasoningConfigDef, ChatModelReasoningConfigSchema, EmbeddingModelBaseConfigDef, EmbeddingModelBaseConfigSchema, Gemini1_5Flash, Gemini1_5Flash001, Gemini1_5Flash001Literal, Gemini1_5Flash001Options, type Gemini1_5Flash001OptionsType, Gemini1_5Flash001Schema, Gemini1_5Flash002, Gemini1_5Flash002Literal, Gemini1_5Flash002Options, type Gemini1_5Flash002OptionsType, Gemini1_5Flash002Schema, Gemini1_5FlashLatest, Gemini1_5FlashLatestLiteral, Gemini1_5FlashLatestOptions, type Gemini1_5FlashLatestOptionsType, Gemini1_5FlashLatestSchema, Gemini1_5FlashLiteral, Gemini1_5FlashOptions, type Gemini1_5FlashOptionsType, Gemini1_5FlashSchema, Gemini1_5Pro, Gemini1_5Pro001, Gemini1_5Pro001Literal, Gemini1_5Pro001Options, type Gemini1_5Pro001OptionsType, Gemini1_5Pro001Schema, Gemini1_5Pro002, Gemini1_5Pro002Literal, Gemini1_5Pro002Options, type Gemini1_5Pro002OptionsType, Gemini1_5Pro002Schema, Gemini1_5ProLatest, Gemini1_5ProLatestLiteral, Gemini1_5ProLatestOptions, type Gemini1_5ProLatestOptionsType, Gemini1_5ProLatestSchema, Gemini1_5ProLiteral, Gemini1_5ProOptions, type Gemini1_5ProOptionsType, Gemini1_5ProSchema, Gemini2_0FlashExp, Gemini2_0FlashExpLiteral, Gemini2_0FlashExpOptions, type Gemini2_0FlashExpOptionsType, Gemini2_0FlashExpSchema, Gemini2_5Flash, Gemini2_5FlashLiteral, Gemini2_5FlashOptions, type Gemini2_5FlashOptionsType, Gemini2_5FlashPreview0417, Gemini2_5FlashPreview0417Literal, Gemini2_5FlashPreview0417Options, type Gemini2_5FlashPreview0417OptionsType, Gemini2_5FlashPreview0417Schema, Gemini2_5FlashSchema, Gemini2_5Pro, Gemini2_5ProLiteral, Gemini2_5ProOptions, type Gemini2_5ProOptionsType, Gemini2_5ProPreview0325, Gemini2_5ProPreview0325Literal, Gemini2_5ProPreview0325Options, type Gemini2_5ProPreview0325OptionsType, Gemini2_5ProPreview0325Schema, Gemini2_5ProSchema, Google, GoogleChatAssistantRoleLiteral, GoogleChatContent, GoogleChatContentPartFunctionCall, type GoogleChatContentPartFunctionCallType, GoogleChatContentPartFunctionResponse, type GoogleChatContentPartFunctionResponseType, GoogleChatContentPartInlineData, type GoogleChatContentPartInlineDataType, GoogleChatContentPartText, type GoogleChatContentPartTextType, type GoogleChatContentType, GoogleChatGenerationConfig, type GoogleChatGenerationConfigType, GoogleChatModelConfigs, GoogleChatModelModalities, GoogleChatModelModalitiesEnum, GoogleChatModelResponseSchemaConfigDef, GoogleChatModelResponseSchemaConfigSchema, GoogleChatModelRoles, GoogleChatModelRolesMap, GoogleChatModelTextModalities, GoogleChatModelTextModalitiesEnum, GoogleChatModelTextToolModalities, GoogleChatModelTextToolModalitiesEnum, GoogleChatModelTextVisionModalities, GoogleChatModelTextVisionModalitiesEnum, GoogleChatRequest, type GoogleChatRequestType, GoogleChatSafetySettings, type GoogleChatSafetySettingsType, GoogleChatSystemInstruction, type GoogleChatSystemInstructionType, GoogleChatTool, GoogleChatToolConfig, type GoogleChatToolConfigType, GoogleChatToolRoleLiteral, type GoogleChatToolType, GoogleCompleteChatResponse, type GoogleCompleteChatResponseType, GoogleCompleteChatTextResponse, GoogleCompleteChatToolResponse, GoogleEmbeddingModelConfigs, GoogleEmbeddingModelModalities, GoogleEmbeddingModelModalitiesEnum, GoogleEmbeddingRequest, GoogleEmbeddingRequestInput, type GoogleEmbeddingRequestInputType, type GoogleEmbeddingRequestType, GoogleGetEmbeddingsResponse, type GoogleGetEmbeddingsResponseType, GoogleStreamChatResponse, type GoogleStreamChatResponseType, GoogleStreamChatTextResponse, GoogleStreamChatToolResponse, ProviderLiteral, Text_Embedding_001, Text_Embedding_001Literal, Text_Embedding_001Options, type Text_Embedding_001OptionsType, Text_Embedding_001Schema, Text_Embedding_004, Text_Embedding_004Literal, Text_Embedding_004Options, type Text_Embedding_004OptionsType, Text_Embedding_004Schema, dimensions, frequencyPenalty, maxTokens, presencePenalty, reasoningEnabled, safetySettings, seed, stop, temperature, toolChoice, topK, topP };
package/dist/index.d.ts CHANGED
@@ -3118,6 +3118,178 @@ declare class Gemini2_5ProPreview0325 extends BaseChatModel {
3118
3118
  constructor(options: Gemini2_5ProPreview0325OptionsType);
3119
3119
  }
3120
3120
 
3121
+ declare const Gemini2_5FlashLiteral = "gemini-2.5-flash";
3122
+ declare const Gemini2_5FlashSchema: {
3123
+ description: string;
3124
+ maxOutputTokens: number;
3125
+ name: string;
3126
+ roles: Partial<Record<"system" | "user" | "assistant" | "tool", string | undefined>>;
3127
+ modalities: ["text" | "image" | "tool-call" | "tool-response", ...("text" | "image" | "tool-call" | "tool-response")[]];
3128
+ maxInputTokens: number;
3129
+ config: {
3130
+ def: Record<string, {
3131
+ type: "multi-string";
3132
+ param: string;
3133
+ title: string;
3134
+ description: string;
3135
+ max: number;
3136
+ } | {
3137
+ type: "object-schema";
3138
+ param: string;
3139
+ title: string;
3140
+ description: string;
3141
+ objectSchema?: any;
3142
+ } | {
3143
+ type: "range";
3144
+ param: string;
3145
+ title: string;
3146
+ description: string;
3147
+ max: number;
3148
+ default: number;
3149
+ min: number;
3150
+ step: number;
3151
+ } | {
3152
+ type: "select-boolean";
3153
+ param: string;
3154
+ title: string;
3155
+ description: string;
3156
+ default: boolean | null;
3157
+ } | {
3158
+ type: "select-string";
3159
+ param: string;
3160
+ title: string;
3161
+ description: string;
3162
+ default: string;
3163
+ choices: string[];
3164
+ }>;
3165
+ schema: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, unknown, unknown>;
3166
+ };
3167
+ price: {
3168
+ modelName: string;
3169
+ currency: string;
3170
+ tokenRanges: {
3171
+ minTokens: number;
3172
+ prices: {
3173
+ base: {
3174
+ inputPricePerMillion: number;
3175
+ outputPricePerMillion: number;
3176
+ };
3177
+ };
3178
+ maxTokens?: number | null | undefined;
3179
+ }[];
3180
+ };
3181
+ maxReasoningTokens?: number | undefined;
3182
+ };
3183
+ declare const Gemini2_5FlashOptions: z.ZodObject<{
3184
+ modelName: z.ZodString;
3185
+ apiKey: z.ZodString;
3186
+ baseUrl: z.ZodOptional<z.ZodString>;
3187
+ completeChatUrl: z.ZodOptional<z.ZodString>;
3188
+ streamChatUrl: z.ZodOptional<z.ZodString>;
3189
+ }, "strip", z.ZodTypeAny, {
3190
+ modelName: string;
3191
+ apiKey: string;
3192
+ baseUrl?: string | undefined;
3193
+ completeChatUrl?: string | undefined;
3194
+ streamChatUrl?: string | undefined;
3195
+ }, {
3196
+ modelName: string;
3197
+ apiKey: string;
3198
+ baseUrl?: string | undefined;
3199
+ completeChatUrl?: string | undefined;
3200
+ streamChatUrl?: string | undefined;
3201
+ }>;
3202
+ type Gemini2_5FlashOptionsType = z.infer<typeof Gemini2_5FlashOptions>;
3203
+ declare class Gemini2_5Flash extends BaseChatModel {
3204
+ constructor(options: Gemini2_5FlashOptionsType);
3205
+ }
3206
+
3207
+ declare const Gemini2_5ProLiteral = "gemini-2.5-pro";
3208
+ declare const Gemini2_5ProSchema: {
3209
+ description: string;
3210
+ maxOutputTokens: number;
3211
+ name: string;
3212
+ roles: Partial<Record<"system" | "user" | "assistant" | "tool", string | undefined>>;
3213
+ modalities: ["text" | "image" | "tool-call" | "tool-response", ...("text" | "image" | "tool-call" | "tool-response")[]];
3214
+ maxInputTokens: number;
3215
+ config: {
3216
+ def: Record<string, {
3217
+ type: "multi-string";
3218
+ param: string;
3219
+ title: string;
3220
+ description: string;
3221
+ max: number;
3222
+ } | {
3223
+ type: "object-schema";
3224
+ param: string;
3225
+ title: string;
3226
+ description: string;
3227
+ objectSchema?: any;
3228
+ } | {
3229
+ type: "range";
3230
+ param: string;
3231
+ title: string;
3232
+ description: string;
3233
+ max: number;
3234
+ default: number;
3235
+ min: number;
3236
+ step: number;
3237
+ } | {
3238
+ type: "select-boolean";
3239
+ param: string;
3240
+ title: string;
3241
+ description: string;
3242
+ default: boolean | null;
3243
+ } | {
3244
+ type: "select-string";
3245
+ param: string;
3246
+ title: string;
3247
+ description: string;
3248
+ default: string;
3249
+ choices: string[];
3250
+ }>;
3251
+ schema: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, unknown, unknown>;
3252
+ };
3253
+ price: {
3254
+ modelName: string;
3255
+ currency: string;
3256
+ tokenRanges: {
3257
+ minTokens: number;
3258
+ prices: {
3259
+ base: {
3260
+ inputPricePerMillion: number;
3261
+ outputPricePerMillion: number;
3262
+ };
3263
+ };
3264
+ maxTokens?: number | null | undefined;
3265
+ }[];
3266
+ };
3267
+ maxReasoningTokens?: number | undefined;
3268
+ };
3269
+ declare const Gemini2_5ProOptions: z.ZodObject<{
3270
+ modelName: z.ZodString;
3271
+ apiKey: z.ZodString;
3272
+ baseUrl: z.ZodOptional<z.ZodString>;
3273
+ completeChatUrl: z.ZodOptional<z.ZodString>;
3274
+ streamChatUrl: z.ZodOptional<z.ZodString>;
3275
+ }, "strip", z.ZodTypeAny, {
3276
+ modelName: string;
3277
+ apiKey: string;
3278
+ baseUrl?: string | undefined;
3279
+ completeChatUrl?: string | undefined;
3280
+ streamChatUrl?: string | undefined;
3281
+ }, {
3282
+ modelName: string;
3283
+ apiKey: string;
3284
+ baseUrl?: string | undefined;
3285
+ completeChatUrl?: string | undefined;
3286
+ streamChatUrl?: string | undefined;
3287
+ }>;
3288
+ type Gemini2_5ProOptionsType = z.infer<typeof Gemini2_5ProOptions>;
3289
+ declare class Gemini2_5Pro extends BaseChatModel {
3290
+ constructor(options: Gemini2_5ProOptionsType);
3291
+ }
3292
+
3121
3293
  declare const GoogleEmbeddingModelModalities: EmbeddingModelSchemaType["modalities"];
3122
3294
  declare const GoogleEmbeddingModelModalitiesEnum: z.ZodEnum<["text"]>;
3123
3295
 
@@ -3432,4 +3604,4 @@ declare class Google<C extends BaseChatModelOptionsType, E extends BaseEmbedding
3432
3604
  embeddingModel(options: E): EmbeddingModelV1;
3433
3605
  }
3434
3606
 
3435
- export { BaseChatModel, BaseChatModelOptions, type BaseChatModelOptionsType, BaseEmbeddingModel, BaseEmbeddingModelOptions, type BaseEmbeddingModelOptionsType, ChatModelBaseConfigDef, ChatModelBaseConfigSchema, ChatModelReasoningConfigDef, ChatModelReasoningConfigSchema, EmbeddingModelBaseConfigDef, EmbeddingModelBaseConfigSchema, Gemini1_5Flash, Gemini1_5Flash001, Gemini1_5Flash001Literal, Gemini1_5Flash001Options, type Gemini1_5Flash001OptionsType, Gemini1_5Flash001Schema, Gemini1_5Flash002, Gemini1_5Flash002Literal, Gemini1_5Flash002Options, type Gemini1_5Flash002OptionsType, Gemini1_5Flash002Schema, Gemini1_5FlashLatest, Gemini1_5FlashLatestLiteral, Gemini1_5FlashLatestOptions, type Gemini1_5FlashLatestOptionsType, Gemini1_5FlashLatestSchema, Gemini1_5FlashLiteral, Gemini1_5FlashOptions, type Gemini1_5FlashOptionsType, Gemini1_5FlashSchema, Gemini1_5Pro, Gemini1_5Pro001, Gemini1_5Pro001Literal, Gemini1_5Pro001Options, type Gemini1_5Pro001OptionsType, Gemini1_5Pro001Schema, Gemini1_5Pro002, Gemini1_5Pro002Literal, Gemini1_5Pro002Options, type Gemini1_5Pro002OptionsType, Gemini1_5Pro002Schema, Gemini1_5ProLatest, Gemini1_5ProLatestLiteral, Gemini1_5ProLatestOptions, type Gemini1_5ProLatestOptionsType, Gemini1_5ProLatestSchema, Gemini1_5ProLiteral, Gemini1_5ProOptions, type Gemini1_5ProOptionsType, Gemini1_5ProSchema, Gemini2_0FlashExp, Gemini2_0FlashExpLiteral, Gemini2_0FlashExpOptions, type Gemini2_0FlashExpOptionsType, Gemini2_0FlashExpSchema, Gemini2_5FlashPreview0417, Gemini2_5FlashPreview0417Literal, Gemini2_5FlashPreview0417Options, type Gemini2_5FlashPreview0417OptionsType, Gemini2_5FlashPreview0417Schema, Gemini2_5ProPreview0325, Gemini2_5ProPreview0325Literal, Gemini2_5ProPreview0325Options, type Gemini2_5ProPreview0325OptionsType, Gemini2_5ProPreview0325Schema, Google, GoogleChatAssistantRoleLiteral, GoogleChatContent, GoogleChatContentPartFunctionCall, type GoogleChatContentPartFunctionCallType, GoogleChatContentPartFunctionResponse, type GoogleChatContentPartFunctionResponseType, GoogleChatContentPartInlineData, type GoogleChatContentPartInlineDataType, GoogleChatContentPartText, type GoogleChatContentPartTextType, type GoogleChatContentType, GoogleChatGenerationConfig, type GoogleChatGenerationConfigType, GoogleChatModelConfigs, GoogleChatModelModalities, GoogleChatModelModalitiesEnum, GoogleChatModelResponseSchemaConfigDef, GoogleChatModelResponseSchemaConfigSchema, GoogleChatModelRoles, GoogleChatModelRolesMap, GoogleChatModelTextModalities, GoogleChatModelTextModalitiesEnum, GoogleChatModelTextToolModalities, GoogleChatModelTextToolModalitiesEnum, GoogleChatModelTextVisionModalities, GoogleChatModelTextVisionModalitiesEnum, GoogleChatRequest, type GoogleChatRequestType, GoogleChatSafetySettings, type GoogleChatSafetySettingsType, GoogleChatSystemInstruction, type GoogleChatSystemInstructionType, GoogleChatTool, GoogleChatToolConfig, type GoogleChatToolConfigType, GoogleChatToolRoleLiteral, type GoogleChatToolType, GoogleCompleteChatResponse, type GoogleCompleteChatResponseType, GoogleCompleteChatTextResponse, GoogleCompleteChatToolResponse, GoogleEmbeddingModelConfigs, GoogleEmbeddingModelModalities, GoogleEmbeddingModelModalitiesEnum, GoogleEmbeddingRequest, GoogleEmbeddingRequestInput, type GoogleEmbeddingRequestInputType, type GoogleEmbeddingRequestType, GoogleGetEmbeddingsResponse, type GoogleGetEmbeddingsResponseType, GoogleStreamChatResponse, type GoogleStreamChatResponseType, GoogleStreamChatTextResponse, GoogleStreamChatToolResponse, ProviderLiteral, Text_Embedding_001, Text_Embedding_001Literal, Text_Embedding_001Options, type Text_Embedding_001OptionsType, Text_Embedding_001Schema, Text_Embedding_004, Text_Embedding_004Literal, Text_Embedding_004Options, type Text_Embedding_004OptionsType, Text_Embedding_004Schema, dimensions, frequencyPenalty, maxTokens, presencePenalty, reasoningEnabled, safetySettings, seed, stop, temperature, toolChoice, topK, topP };
3607
+ export { BaseChatModel, BaseChatModelOptions, type BaseChatModelOptionsType, BaseEmbeddingModel, BaseEmbeddingModelOptions, type BaseEmbeddingModelOptionsType, ChatModelBaseConfigDef, ChatModelBaseConfigSchema, ChatModelReasoningConfigDef, ChatModelReasoningConfigSchema, EmbeddingModelBaseConfigDef, EmbeddingModelBaseConfigSchema, Gemini1_5Flash, Gemini1_5Flash001, Gemini1_5Flash001Literal, Gemini1_5Flash001Options, type Gemini1_5Flash001OptionsType, Gemini1_5Flash001Schema, Gemini1_5Flash002, Gemini1_5Flash002Literal, Gemini1_5Flash002Options, type Gemini1_5Flash002OptionsType, Gemini1_5Flash002Schema, Gemini1_5FlashLatest, Gemini1_5FlashLatestLiteral, Gemini1_5FlashLatestOptions, type Gemini1_5FlashLatestOptionsType, Gemini1_5FlashLatestSchema, Gemini1_5FlashLiteral, Gemini1_5FlashOptions, type Gemini1_5FlashOptionsType, Gemini1_5FlashSchema, Gemini1_5Pro, Gemini1_5Pro001, Gemini1_5Pro001Literal, Gemini1_5Pro001Options, type Gemini1_5Pro001OptionsType, Gemini1_5Pro001Schema, Gemini1_5Pro002, Gemini1_5Pro002Literal, Gemini1_5Pro002Options, type Gemini1_5Pro002OptionsType, Gemini1_5Pro002Schema, Gemini1_5ProLatest, Gemini1_5ProLatestLiteral, Gemini1_5ProLatestOptions, type Gemini1_5ProLatestOptionsType, Gemini1_5ProLatestSchema, Gemini1_5ProLiteral, Gemini1_5ProOptions, type Gemini1_5ProOptionsType, Gemini1_5ProSchema, Gemini2_0FlashExp, Gemini2_0FlashExpLiteral, Gemini2_0FlashExpOptions, type Gemini2_0FlashExpOptionsType, Gemini2_0FlashExpSchema, Gemini2_5Flash, Gemini2_5FlashLiteral, Gemini2_5FlashOptions, type Gemini2_5FlashOptionsType, Gemini2_5FlashPreview0417, Gemini2_5FlashPreview0417Literal, Gemini2_5FlashPreview0417Options, type Gemini2_5FlashPreview0417OptionsType, Gemini2_5FlashPreview0417Schema, Gemini2_5FlashSchema, Gemini2_5Pro, Gemini2_5ProLiteral, Gemini2_5ProOptions, type Gemini2_5ProOptionsType, Gemini2_5ProPreview0325, Gemini2_5ProPreview0325Literal, Gemini2_5ProPreview0325Options, type Gemini2_5ProPreview0325OptionsType, Gemini2_5ProPreview0325Schema, Gemini2_5ProSchema, Google, GoogleChatAssistantRoleLiteral, GoogleChatContent, GoogleChatContentPartFunctionCall, type GoogleChatContentPartFunctionCallType, GoogleChatContentPartFunctionResponse, type GoogleChatContentPartFunctionResponseType, GoogleChatContentPartInlineData, type GoogleChatContentPartInlineDataType, GoogleChatContentPartText, type GoogleChatContentPartTextType, type GoogleChatContentType, GoogleChatGenerationConfig, type GoogleChatGenerationConfigType, GoogleChatModelConfigs, GoogleChatModelModalities, GoogleChatModelModalitiesEnum, GoogleChatModelResponseSchemaConfigDef, GoogleChatModelResponseSchemaConfigSchema, GoogleChatModelRoles, GoogleChatModelRolesMap, GoogleChatModelTextModalities, GoogleChatModelTextModalitiesEnum, GoogleChatModelTextToolModalities, GoogleChatModelTextToolModalitiesEnum, GoogleChatModelTextVisionModalities, GoogleChatModelTextVisionModalitiesEnum, GoogleChatRequest, type GoogleChatRequestType, GoogleChatSafetySettings, type GoogleChatSafetySettingsType, GoogleChatSystemInstruction, type GoogleChatSystemInstructionType, GoogleChatTool, GoogleChatToolConfig, type GoogleChatToolConfigType, GoogleChatToolRoleLiteral, type GoogleChatToolType, GoogleCompleteChatResponse, type GoogleCompleteChatResponseType, GoogleCompleteChatTextResponse, GoogleCompleteChatToolResponse, GoogleEmbeddingModelConfigs, GoogleEmbeddingModelModalities, GoogleEmbeddingModelModalitiesEnum, GoogleEmbeddingRequest, GoogleEmbeddingRequestInput, type GoogleEmbeddingRequestInputType, type GoogleEmbeddingRequestType, GoogleGetEmbeddingsResponse, type GoogleGetEmbeddingsResponseType, GoogleStreamChatResponse, type GoogleStreamChatResponseType, GoogleStreamChatTextResponse, GoogleStreamChatToolResponse, ProviderLiteral, Text_Embedding_001, Text_Embedding_001Literal, Text_Embedding_001Options, type Text_Embedding_001OptionsType, Text_Embedding_001Schema, Text_Embedding_004, Text_Embedding_004Literal, Text_Embedding_004Options, type Text_Embedding_004OptionsType, Text_Embedding_004Schema, dimensions, frequencyPenalty, maxTokens, presencePenalty, reasoningEnabled, safetySettings, seed, stop, temperature, toolChoice, topK, topP };