llm-gemini 0.6__tar.gz → 0.7__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.1
2
2
  Name: llm-gemini
3
- Version: 0.6
3
+ Version: 0.7
4
4
  Summary: LLM plugin to access Google's Gemini family of models
5
5
  Author: Simon Willison
6
6
  License: Apache-2.0
@@ -63,6 +63,7 @@ Other models are:
63
63
  - `gemini-exp-1114` - recent experimental #1
64
64
  - `gemini-exp-1121` - recent experimental #2
65
65
  - `gemini-exp-1206` - recent experimental #3
66
+ - `gemini-2.0-flash-exp` - [Gemini 2.0 Flash](https://blog.google/technology/google-deepmind/google-gemini-ai-update-december-2024/#gemini-2-0-flash)
66
67
 
67
68
  ### Images, audio and video
68
69
 
@@ -43,6 +43,7 @@ Other models are:
43
43
  - `gemini-exp-1114` - recent experimental #1
44
44
  - `gemini-exp-1121` - recent experimental #2
45
45
  - `gemini-exp-1206` - recent experimental #3
46
+ - `gemini-2.0-flash-exp` - [Gemini 2.0 Flash](https://blog.google/technology/google-deepmind/google-gemini-ai-update-december-2024/#gemini-2-0-flash)
46
47
 
47
48
  ### Images, audio and video
48
49
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: llm-gemini
3
- Version: 0.6
3
+ Version: 0.7
4
4
  Summary: LLM plugin to access Google's Gemini family of models
5
5
  Author: Simon Willison
6
6
  License: Apache-2.0
@@ -63,6 +63,7 @@ Other models are:
63
63
  - `gemini-exp-1114` - recent experimental #1
64
64
  - `gemini-exp-1121` - recent experimental #2
65
65
  - `gemini-exp-1206` - recent experimental #3
66
+ - `gemini-2.0-flash-exp` - [Gemini 2.0 Flash](https://blog.google/technology/google-deepmind/google-gemini-ai-update-december-2024/#gemini-2-0-flash)
66
67
 
67
68
  ### Images, audio and video
68
69
 
@@ -40,6 +40,7 @@ def register_models(register):
40
40
  "gemini-exp-1114",
41
41
  "gemini-exp-1121",
42
42
  "gemini-exp-1206",
43
+ "gemini-2.0-flash-exp",
43
44
  ]:
44
45
  register(GeminiPro(model_id), AsyncGeminiPro(model_id))
45
46
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "llm-gemini"
3
- version = "0.6"
3
+ version = "0.7"
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
File without changes