llm-gemini 0.11__tar.gz → 0.12__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.2
2
2
  Name: llm-gemini
3
- Version: 0.11
3
+ Version: 0.12
4
4
  Summary: LLM plugin to access Google's Gemini family of models
5
5
  Author: Simon Willison
6
6
  License: Apache-2.0
@@ -69,7 +69,7 @@ Other models are:
69
69
  - `gemini-2.0-flash-thinking-exp-1219` - experimental "thinking" model from December 2024
70
70
  - `gemini-2.0-flash-thinking-exp-01-21` - experimental "thinking" model from January 2025
71
71
  - `gemini-2.0-flash` - Gemini 2.0 Flash
72
- - `gemini-2.0-flash-lite-preview-02-05` - Gemini 2.0 Flash-Lite
72
+ - `gemini-2.0-flash-lite` - Gemini 2.0 Flash-Lite
73
73
  - `gemini-2.0-pro-exp-02-05` - experimental release of Gemini 2.0 Pro
74
74
 
75
75
  ### Images, audio and video
@@ -48,7 +48,7 @@ Other models are:
48
48
  - `gemini-2.0-flash-thinking-exp-1219` - experimental "thinking" model from December 2024
49
49
  - `gemini-2.0-flash-thinking-exp-01-21` - experimental "thinking" model from January 2025
50
50
  - `gemini-2.0-flash` - Gemini 2.0 Flash
51
- - `gemini-2.0-flash-lite-preview-02-05` - Gemini 2.0 Flash-Lite
51
+ - `gemini-2.0-flash-lite` - Gemini 2.0 Flash-Lite
52
52
  - `gemini-2.0-pro-exp-02-05` - experimental release of Gemini 2.0 Pro
53
53
 
54
54
  ### Images, audio and video
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: llm-gemini
3
- Version: 0.11
3
+ Version: 0.12
4
4
  Summary: LLM plugin to access Google's Gemini family of models
5
5
  Author: Simon Willison
6
6
  License: Apache-2.0
@@ -69,7 +69,7 @@ Other models are:
69
69
  - `gemini-2.0-flash-thinking-exp-1219` - experimental "thinking" model from December 2024
70
70
  - `gemini-2.0-flash-thinking-exp-01-21` - experimental "thinking" model from January 2025
71
71
  - `gemini-2.0-flash` - Gemini 2.0 Flash
72
- - `gemini-2.0-flash-lite-preview-02-05` - Gemini 2.0 Flash-Lite
72
+ - `gemini-2.0-flash-lite` - Gemini 2.0 Flash-Lite
73
73
  - `gemini-2.0-pro-exp-02-05` - experimental release of Gemini 2.0 Pro
74
74
 
75
75
  ### Images, audio and video
@@ -58,8 +58,9 @@ def register_models(register):
58
58
  "gemini-2.0-flash-thinking-exp-01-21",
59
59
  # Released 5th Feb 2025:
60
60
  "gemini-2.0-flash",
61
- "gemini-2.0-flash-lite-preview-02-05",
62
61
  "gemini-2.0-pro-exp-02-05",
62
+ # Released 25th Feb 2025:
63
+ "gemini-2.0-flash-lite",
63
64
  ]:
64
65
  can_google_search = model_id in GOOGLE_SEARCH_MODELS
65
66
  register(
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "llm-gemini"
3
- version = "0.11"
3
+ version = "0.12"
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