ソースを参照

Add script changes for VertexAI (#12930)

Morgan Chen 1 年間 前
コミット
e690fcd9ad
3 ファイル変更12 行追加1 行削除
  1. 4 1
      Dangerfile
  2. 7 0
      FirebaseVertexAI/CHANGELOG.md
  3. 1 0
      scripts/make_release_notes.py

+ 4 - 1
Dangerfile

@@ -64,6 +64,7 @@ def labelsForModifiedFiles()
   labels.push("api: performance") if @has_performance_changes
   labels.push("api: remoteconfig") if @has_remoteconfig_changes
   labels.push("api: storage") if @has_storage_changes
+  labels.push("api: vertexai") if @has_vertexai_changes
   labels.push("release-tooling") if @has_releasetooling_changes
   labels.push("public-api-change") if @has_api_changes
   return labels
@@ -100,7 +101,8 @@ has_license_changes = didModify(["LICENSE"])
   "Messaging",
   "Performance",
   "RemoteConfig",
-  "Storage"
+  "Storage",
+  "VertexAI"
 ]
 
 ## Product directories
@@ -149,6 +151,7 @@ has_license_changes = didModify(["LICENSE"])
 @has_remoteconfig_changes = hasChangesIn("FirebaseRemoteConfig")
 @has_remoteconfig_api_changes = hasChangesIn("FirebaseRemoteConfig/Sources/Public/")
 @has_storage_changes = hasChangesIn("FirebaseStorage")
+@has_vertexai_changes = hasChangesIn("FirebaseVertexAI")
 
 @has_releasetooling_changes = hasChangesIn("ReleaseTooling/")
 @has_public_additions = hasAdditionsIn("Public/")

+ 7 - 0
FirebaseVertexAI/CHANGELOG.md

@@ -0,0 +1,7 @@
+# 10.26.0
+
+- [added] Public Preview release of the Vertex AI for Firebase SDK - build
+  AI-powered mobile apps and features with the Gemini API using this new SDK.
+  See the
+  [docs](https://firebase.google.com/docs/vertex-ai/get-started?platform=ios)
+  for instructions on how to get started.

+ 1 - 0
scripts/make_release_notes.py

@@ -42,6 +42,7 @@ PRODUCTS = {
     'FirebaseFunctions/CHANGELOG.md': '{{cloud_functions}}',
     'FirebaseRemoteConfig/CHANGELOG.md': '{{remote_config}}',
     'FirebasePerformance/CHANGELOG.md': '{{perfmon}}',
+    'FirebaseVertexAI/CHANGELOG.md': '{{vertexai}}',
 }