Skip to content

Commit 4d7059c

Browse files
authored
Merge pull request #14 from arey/feature/spring-ai-1.0.0-M7
Update Spring AI to 1.0.0-M7
2 parents f5103e1 + af4fed7 commit 4d7059c

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

build.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,14 @@ ext.webjarsLocatorLiteVersion = "1.0.1"
3232
ext.webjarsFontawesomeVersion = "4.7.0"
3333
ext.webjarsBootstrapVersion = "5.3.3"
3434
ext.webjarsMarkedVersion = "14.1.2"
35-
ext.springAiVersion = "1.0.0-M6"
35+
ext.springAiVersion = "1.0.0-M7"
3636

3737
dependencies {
3838
// Workaround for AOT issue (https://github.com/spring-projects/spring-framework/pull/33949) -->
3939
implementation 'io.projectreactor:reactor-core'
4040

41-
implementation 'org.springframework.ai:spring-ai-openai-spring-boot-starter'
41+
implementation 'org.springframework.ai:spring-ai-starter-model-openai'
42+
implementation 'org.springframework.ai:spring-ai-vector-store'
4243
implementation 'org.springframework.boot:spring-boot-starter-cache'
4344
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
4445
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'

pom.xml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,19 @@
3838
<maven-checkstyle.version>3.6.0</maven-checkstyle.version>
3939
<nohttp-checkstyle.version>0.0.11</nohttp-checkstyle.version>
4040
<spring-format.version>0.0.43</spring-format.version>
41-
<spring-ai.version>1.0.0-M6</spring-ai.version>
41+
<spring-ai.version>1.0.0-M7</spring-ai.version>
4242
</properties>
4343

4444
<dependencies>
4545
<!-- Spring and Spring Boot dependencies -->
4646
<dependency>
4747
<groupId>org.springframework.ai</groupId>
48-
<!-- <artifactId>spring-ai-azure-openai-spring-boot-starter</artifactId>-->
49-
<artifactId>spring-ai-openai-spring-boot-starter</artifactId>
48+
<!-- <artifactId>spring-ai-starter-model-azure-openai</artifactId>-->
49+
<artifactId>spring-ai-starter-model-openai</artifactId>
50+
</dependency>
51+
<dependency>
52+
<groupId>org.springframework.ai</groupId>
53+
<artifactId>spring-ai-vector-store</artifactId>
5054
</dependency>
5155
<dependency>
5256
<groupId>org.springframework.boot</groupId>

0 commit comments

Comments
 (0)