Skip to content

Commit

Permalink
Updated docs to mention models other than Gemini 1.5 Pro
Browse files Browse the repository at this point in the history
  • Loading branch information
shermanhuman committed Jan 14, 2025
1 parent feee07e commit d88fe32
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions docs/docs/customize/model-providers/top-level/gemini.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,52 @@ We recommend configuring **Gemini 1.5 Pro** as your chat model.
}
```

### Other Available Models

- **Gemini 1.5 Flash** - Fast and versatile multimodal model with 1M token context length
```json title="config.json"
{
"title": "Gemini 1.5 Flash",
"provider": "gemini",
"model": "gemini-1.5-flash",
"apiKey": "[API_KEY]"
}
```

### Experimental Models

The following experimental models are also available:

- **Gemini 2.0 Flash Experimental** - Experimental version with 1M token context length
```json title="config.json"
{
"title": "Gemini 2.0 Flash Experimental",
"provider": "gemini",
"model": "gemini-2.0-flash-exp",
"apiKey": "[API_KEY]"
}
```

- **Gemini 2.0 Flash Thinking Experimental** - Optimized for reasoning tasks with 32K context
```json title="config.json"
{
"title": "Gemini 2.0 Flash Thinking Experimental",
"provider": "gemini",
"model": "gemini-2.0-flash-thinking-exp",
"apiKey": "[API_KEY]"
}
```

- **Gemini Experimental 1206** - Experimental release with 2M token context length
```json title="config.json"
{
"title": "Gemini Experimental 1206",
"provider": "gemini",
"model": "gemini-exp-1206",
"apiKey": "[API_KEY]"
}
```

## Autocomplete model

Gemini currently does not offer any autocomplete models.
Expand Down

0 comments on commit d88fe32

Please sign in to comment.