Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release firestore-vector-search, firestore-genai-chatbot, firestore-multimodel-genai,storage-reverse-image-search,firestore-semantic-search #540

Merged
merged 5 commits into from
Oct 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions firestore-genai-chatbot/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## Version 0.0.11

fix - update default Gemini models

## Version 0.0.10

- Add docs on regional support for Gemini APIs
Expand Down
2 changes: 1 addition & 1 deletion firestore-genai-chatbot/POSTINSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ The extension gives you a choice of what provider to use for the available model
## About the models

For Google AI the list of supported models is [here](https://ai.google.dev/models/gemini), and this parameter should be set to the model name, the second segment of the model code (for
example models/gemini-pro should be chosen as gemini-pro).
example `models/gemini-1.0-pro` should be chosen as `gemini-1.0-pro`).

For Vertex AI, the list of models is [here](https://cloud.google.com/vertex-ai/docs/generative-ai/learn/models).

Expand Down
4 changes: 2 additions & 2 deletions firestore-genai-chatbot/extension.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: firestore-genai-chatbot
version: 0.0.10
version: 0.0.11
specVersion: v1beta

icon: icon.png
Expand Down Expand Up @@ -108,7 +108,7 @@ params:
[Google AI Gemini models](https://ai.google.dev/models/gemini)
type: string
required: true
default: gemini-pro
default: gemini-1.0-pro
immutable: false

- param: COLLECTION_NAME
Expand Down
4 changes: 4 additions & 0 deletions firestore-multimodal-genai/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## Version 1.0.1

fix - update default Gemini models

## Version 1.0.0

- **Breaking**: made whether IMAGE_FIELDS parameter is defined determine whether the extension calls Gemini with an image.
Expand Down
2 changes: 1 addition & 1 deletion firestore-multimodal-genai/POSTINSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ The extension gives you a choice of what provider to use for the available model
## About the models

For Google AI the list of supported models is [here](https://ai.google.dev/models/gemini), and this parameter should be set to the model name, the second segment of the model code (for
example models/gemini-pro should be chosen as gemini-pro).
example `models/gemini-1.0-pro` should be chosen as `gemini-1.0-pro`).

For Vertex AI, the list of models is [here](https://cloud.google.com/vertex-ai/docs/generative-ai/learn/models).

Expand Down
2 changes: 1 addition & 1 deletion firestore-multimodal-genai/PREINSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ In this case, `review_text`` is a field of the Firestore document and will be su
When installing this extension you will be prompted to pick a Gemini model.

For Google AI the list of supported models is [here](https://ai.google.dev/models/gemini), and this parameter should be set to the model name, the second segment of the model code (for
example models/gemini-pro should be chosen as gemini-pro).
example `models/gemini-1.0-pro` should be chosen as `gemini-1.0-pro`).

For Vertex AI, the list of models is [here](https://cloud.google.com/vertex-ai/docs/generative-ai/learn/models).

Expand Down
2 changes: 1 addition & 1 deletion firestore-multimodal-genai/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ In this case, `review_text`` is a field of the Firestore document and will be su
When installing this extension you will be prompted to pick a Gemini model.

For Google AI the list of supported models is [here](https://ai.google.dev/models/gemini), and this parameter should be set to the model name, the second segment of the model code (for
example models/gemini-pro should be chosen as gemini-pro).
example `models/gemini-1.0-pro` should be chosen as `gemini-1.0-pro`).

For Vertex AI, the list of models is [here](https://cloud.google.com/vertex-ai/docs/generative-ai/learn/models).

Expand Down
4 changes: 2 additions & 2 deletions firestore-multimodal-genai/extension.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: firestore-multimodal-genai
version: 1.0.0
version: 1.0.1
specVersion: v1beta

icon: icon.png
Expand Down Expand Up @@ -113,7 +113,7 @@ params:
[Google AI Gemini models](https://ai.google.dev/models/gemini)
type: string
required: true
default: gemini-pro
default: gemini-1.0-pro
immutable: false

- param: API_KEY
Expand Down
4 changes: 4 additions & 0 deletions firestore-semantic-search/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## Version 0.1.9

fix - update asia-southeast (Singapore) location value

## Version 0.1.8

docs - updates to POSTINSTALL
Expand Down
4 changes: 2 additions & 2 deletions firestore-semantic-search/extension.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: firestore-semantic-search
version: 0.1.8
version: 0.1.9
specVersion: v1beta

icon: icon.png
Expand Down Expand Up @@ -646,7 +646,7 @@ params:
- label: Mumbai (asia-south1)
value: asia-south1
- label: Singapore (asia-southeast1)
value: asia-south1
value: asia-southeast1
- label: Sydney (australia-southeast1)
value: australia-southeast1
required: true
Expand Down
4 changes: 4 additions & 0 deletions firestore-vector-search/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## Version 0.0.5

fix - fix backfill and fix npm audit

## Version 0.0.4

fix - correct Vertex AI embedding dimension
Expand Down
2 changes: 1 addition & 1 deletion firestore-vector-search/extension.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.

name: firestore-vector-search
version: 0.0.4
version: 0.0.5
specVersion: v1beta

tags:
Expand Down
Loading
Loading