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
This commit is contained in:
Christian Tzolov
2024-02-28 18:05:27 +01:00
parent d8c69e8efc
commit e1462b86e3
5 changed files with 9 additions and 9 deletions

View File

@@ -261,7 +261,7 @@
<dependency>
<groupId>org.springframework.ai</groupId>
<artifactId>spring-ai-vertex-ai-plam2-spring-boot-starter</artifactId>
<artifactId>spring-ai-vertex-ai-palm2-spring-boot-starter</artifactId>
<version>${project.version}</version>
</dependency>

View File

@@ -110,7 +110,7 @@ Read more about xref:api/clients/functions/vertexai-gemini-chat-functions.adoc[V
=== Sample Controller (Auto-configuration)
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.
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.
Add a `application.properties` file, under the `src/main/resources` directory, to enable and configure the VertexAi Chat client:

View File

@@ -34,7 +34,7 @@ To enable it add the following dependency to your project's Maven `pom.xml` file
----
<dependency>
<groupId>org.springframework.ai</groupId>
<artifactId>spring-ai-vertex-ai-plam2-spring-boot-starter</artifactId>
<artifactId>spring-ai-vertex-ai-palm2-spring-boot-starter</artifactId>
</dependency>
----
@@ -43,7 +43,7 @@ or to your Gradle `build.gradle` build file.
[source,groovy]
----
dependencies {
implementation 'org.springframework.ai:spring-ai-vertex-ai-plam2-spring-boot-starter'
implementation 'org.springframework.ai:spring-ai-vertex-ai-palm2-spring-boot-starter'
}
----
@@ -101,7 +101,7 @@ TIP: In addition to the model specific `VertexAiChatOptions` you can use a porta
=== Sample Controller (Auto-configuration)
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.
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.
Add a `application.properties` file, under the `src/main/resources` directory, to enable and configure the VertexAi Chat client:

View File

@@ -34,7 +34,7 @@ To enable it add the following dependency to your project's Maven `pom.xml` file
----
<dependency>
<groupId>org.springframework.ai</groupId>
<artifactId>spring-ai-vertex-ai-plam2-spring-boot-starter</artifactId>
<artifactId>spring-ai-vertex-ai-palm2-spring-boot-starter</artifactId>
</dependency>
----
@@ -43,7 +43,7 @@ or to your Gradle `build.gradle` build file.
[source,groovy]
----
dependencies {
implementation 'org.springframework.ai:spring-ai-vertex-ai-plam2-spring-boot-starter'
implementation 'org.springframework.ai:spring-ai-vertex-ai-palm2-spring-boot-starter'
}
----
@@ -74,7 +74,7 @@ The prefix `spring.ai.vertex.ai.embedding` is the property prefix that lets you
=== Sample Controller (Auto-configuration)
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.
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.
Add a `application.properties` file, under the `src/main/resources` directory, to enable and configure the VertexAi Chat client:

View File

@@ -7,7 +7,7 @@
<version>0.8.1-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>spring-ai-vertex-ai-plam2-spring-boot-starter</artifactId>
<artifactId>spring-ai-vertex-ai-palm2-spring-boot-starter</artifactId>
<packaging>jar</packaging>
<name>Spring AI Starter - VertexAI PaLM2</name>
<description>Spring AI VertexAI PaLM2 Auto Configuration</description>