llm-gemini 0.9__tar.gz → 0.10__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.
- {llm_gemini-0.9 → llm_gemini-0.10}/PKG-INFO +4 -1
- {llm_gemini-0.9 → llm_gemini-0.10}/README.md +3 -0
- {llm_gemini-0.9 → llm_gemini-0.10}/llm_gemini.egg-info/PKG-INFO +4 -1
- {llm_gemini-0.9 → llm_gemini-0.10}/llm_gemini.py +4 -0
- {llm_gemini-0.9 → llm_gemini-0.10}/pyproject.toml +1 -1
- {llm_gemini-0.9 → llm_gemini-0.10}/LICENSE +0 -0
- {llm_gemini-0.9 → llm_gemini-0.10}/llm_gemini.egg-info/SOURCES.txt +0 -0
- {llm_gemini-0.9 → llm_gemini-0.10}/llm_gemini.egg-info/dependency_links.txt +0 -0
- {llm_gemini-0.9 → llm_gemini-0.10}/llm_gemini.egg-info/entry_points.txt +0 -0
- {llm_gemini-0.9 → llm_gemini-0.10}/llm_gemini.egg-info/requires.txt +0 -0
- {llm_gemini-0.9 → llm_gemini-0.10}/llm_gemini.egg-info/top_level.txt +0 -0
- {llm_gemini-0.9 → llm_gemini-0.10}/setup.cfg +0 -0
- {llm_gemini-0.9 → llm_gemini-0.10}/tests/test_gemini.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: llm-gemini
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.10
|
4
4
|
Summary: LLM plugin to access Google's Gemini family of models
|
5
5
|
Author: Simon Willison
|
6
6
|
License: Apache-2.0
|
@@ -67,6 +67,9 @@ Other models are:
|
|
67
67
|
- `learnlm-1.5-pro-experimental` - "an experimental task-specific model that has been trained to align with learning science principles" - [more details here](https://ai.google.dev/gemini-api/docs/learnlm).
|
68
68
|
- `gemini-2.0-flash-thinking-exp-1219` - experimental "thinking" model from December 2024
|
69
69
|
- `gemini-2.0-flash-thinking-exp-01-21` - experimental "thinking" model from January 2025
|
70
|
+
- `gemini-2.0-flash` - Gemini 2.0 Flash
|
71
|
+
- `gemini-2.0-flash-lite-preview-02-05` - Gemini 2.0 Flash-Lite
|
72
|
+
- `gemini-2.0-pro-exp-02-05` - experimental release of Gemini 2.0 Pro
|
70
73
|
|
71
74
|
### Images, audio and video
|
72
75
|
|
@@ -47,6 +47,9 @@ Other models are:
|
|
47
47
|
- `learnlm-1.5-pro-experimental` - "an experimental task-specific model that has been trained to align with learning science principles" - [more details here](https://ai.google.dev/gemini-api/docs/learnlm).
|
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
|
+
- `gemini-2.0-flash` - Gemini 2.0 Flash
|
51
|
+
- `gemini-2.0-flash-lite-preview-02-05` - Gemini 2.0 Flash-Lite
|
52
|
+
- `gemini-2.0-pro-exp-02-05` - experimental release of Gemini 2.0 Pro
|
50
53
|
|
51
54
|
### Images, audio and video
|
52
55
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: llm-gemini
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.10
|
4
4
|
Summary: LLM plugin to access Google's Gemini family of models
|
5
5
|
Author: Simon Willison
|
6
6
|
License: Apache-2.0
|
@@ -67,6 +67,9 @@ Other models are:
|
|
67
67
|
- `learnlm-1.5-pro-experimental` - "an experimental task-specific model that has been trained to align with learning science principles" - [more details here](https://ai.google.dev/gemini-api/docs/learnlm).
|
68
68
|
- `gemini-2.0-flash-thinking-exp-1219` - experimental "thinking" model from December 2024
|
69
69
|
- `gemini-2.0-flash-thinking-exp-01-21` - experimental "thinking" model from January 2025
|
70
|
+
- `gemini-2.0-flash` - Gemini 2.0 Flash
|
71
|
+
- `gemini-2.0-flash-lite-preview-02-05` - Gemini 2.0 Flash-Lite
|
72
|
+
- `gemini-2.0-pro-exp-02-05` - experimental release of Gemini 2.0 Pro
|
70
73
|
|
71
74
|
### Images, audio and video
|
72
75
|
|
@@ -55,6 +55,10 @@ def register_models(register):
|
|
55
55
|
"learnlm-1.5-pro-experimental",
|
56
56
|
"gemini-2.0-flash-thinking-exp-1219",
|
57
57
|
"gemini-2.0-flash-thinking-exp-01-21",
|
58
|
+
# Released 5th Feb 2025:
|
59
|
+
"gemini-2.0-flash",
|
60
|
+
"gemini-2.0-flash-lite-preview-02-05",
|
61
|
+
"gemini-2.0-pro-exp-02-05",
|
58
62
|
]:
|
59
63
|
can_google_search = model_id in GOOGLE_SEARCH_MODELS
|
60
64
|
register(
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|