Skip to content

Commit 42f97ae

Browse files
nshkrdotcomclaude
andcommitted
Release v0.8.6: Update default models to Gemini 2.5
- Vertex AI default: gemini-2.0-flash-lite → gemini-2.5-flash-lite - Universal default: gemini-2.0-flash-lite → gemini-2.5-flash-lite - Updated all documentation, examples, and tests to use 2.5 models - Gemini 2.0 models remain available for backward compatibility 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 4d3bbf5 commit 42f97ae

File tree

3 files changed

+21
-2
lines changed

3 files changed

+21
-2
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,25 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.8.6] - 2025-12-20
9+
10+
### Changed
11+
- **Default models updated to Gemini 2.5**: All defaults now use current-generation models
12+
- Vertex AI default: `gemini-2.0-flash-lite``gemini-2.5-flash-lite`
13+
- Universal default: `gemini-2.0-flash-lite``gemini-2.5-flash-lite`
14+
- Updated all documentation examples to use `gemini-2.5-flash` instead of `gemini-2.0-flash-exp`
15+
- Updated test helpers (`universal_model`, `structured_output_model`) to use 2.5 models
16+
- Refreshed model comparison examples in `examples/07_model_info.exs`
17+
18+
### Fixed
19+
- Documentation consistency: All guides, examples, and docstrings now reference current-generation models
20+
- Test model references updated across live session, function calling, and system instruction tests
21+
22+
### Notes
23+
- Gemini 2.0 models remain fully supported and available via explicit model selection
24+
- All `gemini-2.0-*` model keys retained in manifest for backward compatibility
25+
- Context caching still supports both 2.0 and 2.5 model versions
26+
827
## [0.8.5] - 2025-12-18
928

1029
### Added

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Add `gemini` to your list of dependencies in `mix.exs`:
5858
```elixir
5959
def deps do
6060
[
61-
{:gemini_ex, "~> 0.8.5"}
61+
{:gemini_ex, "~> 0.8.6"}
6262
]
6363
end
6464
```

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule Gemini.MixProject do
22
use Mix.Project
33

4-
@version "0.8.5"
4+
@version "0.8.6"
55
@source_url "https://github.com/nshkrdotcom/gemini_ex"
66

77
def project do

0 commit comments

Comments
 (0)