We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8a1962 commit ecce71cCopy full SHA for ecce71c
packages/llm-info/src/providers/gemini.ts
@@ -3,11 +3,22 @@ import { AllMediaTypes, ModelProvider } from "../types.js";
3
// See https://ai.google.dev/gemini-api/docs/models
4
export const Gemini: ModelProvider = {
5
models: [
6
+ {
7
+ model: "gemini-3-pro-preview",
8
+ displayName: "Gemini 3 Pro Preview",
9
+ description:
10
+ "Google's flagship frontier model with high precision multimodal capabilities.",
11
+ contextLength: 1048576,
12
+ maxCompletionTokens: 65536,
13
+ mediaTypes: AllMediaTypes,
14
+ regex: /gemini-3-pro-preview/i,
15
+ recommendedFor: ["chat"],
16
+ },
17
{
18
model: "gemini-2.5-pro-preview-05-06",
19
displayName: "Gemini 2.5 Pro Preview",
20
description:
- "Google's most advanced model with strong reasoning, multimodal capabilities, and advanced coding skills",
21
+ "Google's advanced model with strong reasoning, multimodal capabilities, and advanced coding skills",
22
contextLength: 1048576,
23
maxCompletionTokens: 65536,
24
mediaTypes: AllMediaTypes,
0 commit comments