Skip to content

Commit e1462b8

Browse files
committed
Fix Vertex AI PaLM2 Boot Starter name typo
Rename spring-ai-vertex-ai-plam2-spring-boot-starter into spring-ai-vertex-ai-palm2-spring-boot-starter
1 parent d8c69e8 commit e1462b8

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

spring-ai-bom/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@
261261

262262
<dependency>
263263
<groupId>org.springframework.ai</groupId>
264-
<artifactId>spring-ai-vertex-ai-plam2-spring-boot-starter</artifactId>
264+
<artifactId>spring-ai-vertex-ai-palm2-spring-boot-starter</artifactId>
265265
<version>${project.version}</version>
266266
</dependency>
267267

spring-ai-docs/src/main/antora/modules/ROOT/pages/api/clients/vertexai-gemini-chat.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ Read more about xref:api/clients/functions/vertexai-gemini-chat-functions.adoc[V
110110

111111
=== Sample Controller (Auto-configuration)
112112

113-
https://start.spring.io/[Create] a new Spring Boot project and add the `spring-ai-vertex-ai-plam2-spring-boot-starter` to your pom (or gradle) dependencies.
113+
https://start.spring.io/[Create] a new Spring Boot project and add the `spring-ai-vertex-ai-palm2-spring-boot-starter` to your pom (or gradle) dependencies.
114114

115115
Add a `application.properties` file, under the `src/main/resources` directory, to enable and configure the VertexAi Chat client:
116116

spring-ai-docs/src/main/antora/modules/ROOT/pages/api/clients/vertexai-palm2-chat.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ To enable it add the following dependency to your project's Maven `pom.xml` file
3434
----
3535
<dependency>
3636
<groupId>org.springframework.ai</groupId>
37-
<artifactId>spring-ai-vertex-ai-plam2-spring-boot-starter</artifactId>
37+
<artifactId>spring-ai-vertex-ai-palm2-spring-boot-starter</artifactId>
3838
</dependency>
3939
----
4040

@@ -43,7 +43,7 @@ or to your Gradle `build.gradle` build file.
4343
[source,groovy]
4444
----
4545
dependencies {
46-
implementation 'org.springframework.ai:spring-ai-vertex-ai-plam2-spring-boot-starter'
46+
implementation 'org.springframework.ai:spring-ai-vertex-ai-palm2-spring-boot-starter'
4747
}
4848
----
4949

@@ -101,7 +101,7 @@ TIP: In addition to the model specific `VertexAiChatOptions` you can use a porta
101101

102102
=== Sample Controller (Auto-configuration)
103103

104-
https://start.spring.io/[Create] a new Spring Boot project and add the `spring-ai-vertex-ai-plam2-spring-boot-starter` to your pom (or gradle) dependencies.
104+
https://start.spring.io/[Create] a new Spring Boot project and add the `spring-ai-vertex-ai-palm2-spring-boot-starter` to your pom (or gradle) dependencies.
105105

106106
Add a `application.properties` file, under the `src/main/resources` directory, to enable and configure the VertexAi Chat client:
107107

spring-ai-docs/src/main/antora/modules/ROOT/pages/api/embeddings/vertexai-embeddings.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ To enable it add the following dependency to your project's Maven `pom.xml` file
3434
----
3535
<dependency>
3636
<groupId>org.springframework.ai</groupId>
37-
<artifactId>spring-ai-vertex-ai-plam2-spring-boot-starter</artifactId>
37+
<artifactId>spring-ai-vertex-ai-palm2-spring-boot-starter</artifactId>
3838
</dependency>
3939
----
4040

@@ -43,7 +43,7 @@ or to your Gradle `build.gradle` build file.
4343
[source,groovy]
4444
----
4545
dependencies {
46-
implementation 'org.springframework.ai:spring-ai-vertex-ai-plam2-spring-boot-starter'
46+
implementation 'org.springframework.ai:spring-ai-vertex-ai-palm2-spring-boot-starter'
4747
}
4848
----
4949

@@ -74,7 +74,7 @@ The prefix `spring.ai.vertex.ai.embedding` is the property prefix that lets you
7474

7575
=== Sample Controller (Auto-configuration)
7676

77-
https://start.spring.io/[Create] a new Spring Boot project and add the `spring-ai-vertex-ai-plam2-spring-boot-starter` to your pom (or gradle) dependencies.
77+
https://start.spring.io/[Create] a new Spring Boot project and add the `spring-ai-vertex-ai-palm2-spring-boot-starter` to your pom (or gradle) dependencies.
7878

7979
Add a `application.properties` file, under the `src/main/resources` directory, to enable and configure the VertexAi Chat client:
8080

spring-ai-spring-boot-starters/spring-ai-starter-vertex-ai-palm2/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<version>0.8.1-SNAPSHOT</version>
88
<relativePath>../../pom.xml</relativePath>
99
</parent>
10-
<artifactId>spring-ai-vertex-ai-plam2-spring-boot-starter</artifactId>
10+
<artifactId>spring-ai-vertex-ai-palm2-spring-boot-starter</artifactId>
1111
<packaging>jar</packaging>
1212
<name>Spring AI Starter - VertexAI PaLM2</name>
1313
<description>Spring AI VertexAI PaLM2 Auto Configuration</description>

0 commit comments

Comments
 (0)