Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ To enable it, add the following dependency to your project's Maven `pom.xml` fil
----
<dependency>
<groupId>org.springframework.ai</groupId>
<artifactId>spring-ai-deepseek-spring-boot-starter</artifactId>
<artifactId>spring-ai-starter-model-deepseek</artifactId>
</dependency>
----

Expand All @@ -41,7 +41,7 @@ or to your Gradle `build.gradle` file.
[source,groovy]
----
dependencies {
implementation 'org.springframework.ai:spring-ai-deepseek-spring-boot-starter'
implementation 'org.springframework.ai:spring-ai-starter-model-deepseek'
}
----

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

== Sample Controller (Auto-configuration)

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.
https://start.spring.io/[Create] a new Spring Boot project and add the `spring-ai-starter-model-deepseek` to your pom (or gradle) dependencies.

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

Expand Down