Skip to content

Commit 2201622

Browse files
authored
Fix wrong artifactId in DeepSeek document (#3105)
Signed-off-by: Yanming Zhou <[email protected]>
1 parent 7739e1e commit 2201622

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

spring-ai-docs/src/main/antora/modules/ROOT/pages/api/chat/deepseek-chat.adoc

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ To enable it, add the following dependency to your project's Maven `pom.xml` fil
3232
----
3333
<dependency>
3434
<groupId>org.springframework.ai</groupId>
35-
<artifactId>spring-ai-deepseek-spring-boot-starter</artifactId>
35+
<artifactId>spring-ai-starter-model-deepseek</artifactId>
3636
</dependency>
3737
----
3838

@@ -41,7 +41,7 @@ or to your Gradle `build.gradle` file.
4141
[source,groovy]
4242
----
4343
dependencies {
44-
implementation 'org.springframework.ai:spring-ai-deepseek-spring-boot-starter'
44+
implementation 'org.springframework.ai:spring-ai-starter-model-deepseek'
4545
}
4646
----
4747

@@ -133,7 +133,7 @@ TIP: In addition to the model-specific link:https://github.com/spring-projects/s
133133

134134
== Sample Controller (Auto-configuration)
135135

136-
https://start.spring.io/[Create] a new Spring Boot project and add the `spring-ai-deepseek-spring-boot-starter` to your pom (or gradle) dependencies.
136+
https://start.spring.io/[Create] a new Spring Boot project and add the `spring-ai-starter-model-deepseek` to your pom (or gradle) dependencies.
137137

138138
Add an `application.properties` file under the `src/main/resources` directory to enable and configure the DeepSeek Chat model:
139139

0 commit comments

Comments
 (0)