llm-gemini 0.1a4__tar.gz → 0.2__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.1a4
3
+ Version: 0.2
4
4
  Summary: LLM plugin to access Google's Gemini family of models
5
5
  Author: Simon Willison
6
6
  License: Apache-2.0
@@ -34,7 +34,7 @@ llm install llm-gemini
34
34
  ```
35
35
  ## Usage
36
36
 
37
- Configure the model by setting a key called "gemini" to your [API key](https://ai.google.dev/):
37
+ Configure the model by setting a key called "gemini" to your [API key](https://aistudio.google.com/app/apikey):
38
38
 
39
39
  ```bash
40
40
  llm keys set gemini
@@ -15,7 +15,7 @@ llm install llm-gemini
15
15
  ```
16
16
  ## Usage
17
17
 
18
- Configure the model by setting a key called "gemini" to your [API key](https://ai.google.dev/):
18
+ Configure the model by setting a key called "gemini" to your [API key](https://aistudio.google.com/app/apikey):
19
19
 
20
20
  ```bash
21
21
  llm keys set gemini
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: llm-gemini
3
- Version: 0.1a4
3
+ Version: 0.2
4
4
  Summary: LLM plugin to access Google's Gemini family of models
5
5
  Author: Simon Willison
6
6
  License: Apache-2.0
@@ -34,7 +34,7 @@ llm install llm-gemini
34
34
  ```
35
35
  ## Usage
36
36
 
37
- Configure the model by setting a key called "gemini" to your [API key](https://ai.google.dev/):
37
+ Configure the model by setting a key called "gemini" to your [API key](https://aistudio.google.com/app/apikey):
38
38
 
39
39
  ```bash
40
40
  llm keys set gemini
@@ -29,6 +29,12 @@ def register_models(register):
29
29
  register(GeminiPro("gemini-pro"))
30
30
  register(GeminiPro("gemini-1.5-pro-latest"))
31
31
  register(GeminiPro("gemini-1.5-flash-latest"))
32
+ register(GeminiPro("gemini-1.5-pro-001"))
33
+ register(GeminiPro("gemini-1.5-flash-001"))
34
+ register(GeminiPro("gemini-1.5-pro-002"))
35
+ register(GeminiPro("gemini-1.5-flash-002"))
36
+ register(GeminiPro("gemini-1.5-flash-8b-latest"))
37
+ register(GeminiPro("gemini-1.5-flash-8b-001"))
32
38
 
33
39
 
34
40
  class GeminiPro(llm.Model):
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "llm-gemini"
3
- version = "0.1a4"
3
+ version = "0.2"
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