llm-gemini 0.18.1__tar.gz → 0.19__tar.gz

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: llm-gemini
3
- Version: 0.18.1
3
+ Version: 0.19
4
4
  Summary: LLM plugin to access Google's Gemini family of models
5
5
  Author: Simon Willison
6
6
  License: Apache-2.0
@@ -66,6 +66,7 @@ llm "A joke about a pelican and a walrus"
66
66
 
67
67
  Other models are:
68
68
 
69
+ - `gemini-2.5-pro-preview-05-06` - latest paid Gemini 2.5 Pro preview
69
70
  - `gemini-2.5-flash-preview-04-17` - Gemini 2.5 Flash preview
70
71
  - `gemini-2.5-pro-exp-03-25` - free experimental release of Gemini 2.5 Pro
71
72
  - `gemini-2.5-pro-preview-03-25` - paid preview of Gemini 2.5 Pro
@@ -43,6 +43,7 @@ llm "A joke about a pelican and a walrus"
43
43
 
44
44
  Other models are:
45
45
 
46
+ - `gemini-2.5-pro-preview-05-06` - latest paid Gemini 2.5 Pro preview
46
47
  - `gemini-2.5-flash-preview-04-17` - Gemini 2.5 Flash preview
47
48
  - `gemini-2.5-pro-exp-03-25` - free experimental release of Gemini 2.5 Pro
48
49
  - `gemini-2.5-pro-preview-03-25` - paid preview of Gemini 2.5 Pro
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: llm-gemini
3
- Version: 0.18.1
3
+ Version: 0.19
4
4
  Summary: LLM plugin to access Google's Gemini family of models
5
5
  Author: Simon Willison
6
6
  License: Apache-2.0
@@ -66,6 +66,7 @@ llm "A joke about a pelican and a walrus"
66
66
 
67
67
  Other models are:
68
68
 
69
+ - `gemini-2.5-pro-preview-05-06` - latest paid Gemini 2.5 Pro preview
69
70
  - `gemini-2.5-flash-preview-04-17` - Gemini 2.5 Flash preview
70
71
  - `gemini-2.5-pro-exp-03-25` - free experimental release of Gemini 2.5 Pro
71
72
  - `gemini-2.5-pro-preview-03-25` - paid preview of Gemini 2.5 Pro
@@ -38,6 +38,8 @@ GOOGLE_SEARCH_MODELS = {
38
38
  "gemini-2.0-flash",
39
39
  "gemini-2.5-pro-preview-03-25",
40
40
  "gemini-2.5-pro-exp-03-25",
41
+ "gemini-2.5-flash-preview-04-17",
42
+ "gemini-2.5-pro-preview-05-06",
41
43
  }
42
44
 
43
45
  # Older Google models used google_search_retrieval instead of google_search
@@ -89,6 +91,8 @@ def register_models(register):
89
91
  "gemini-2.5-pro-preview-03-25",
90
92
  # 17th April 2025:
91
93
  "gemini-2.5-flash-preview-04-17",
94
+ # 6th May 2025:
95
+ "gemini-2.5-pro-preview-05-06",
92
96
  ]:
93
97
  can_google_search = model_id in GOOGLE_SEARCH_MODELS
94
98
  can_thinking_budget = model_id in THINKING_BUDGET_MODELS
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "llm-gemini"
3
- version = "0.18.1"
3
+ version = "0.19"
4
4
  description = "LLM plugin to access Google's Gemini family of models"
5
5
  readme = "README.md"
6
6
  authors = [{name = "Simon Willison"}]
File without changes
File without changes