QianFan Image Generation
Spring AI supports CogView, the Image generation model from QianFan.
Prerequisites
You will need to create an API with QianFan to access QianFan language models.
Create an account at QianFan registration page and generate the token on the API Keys page.
The Spring AI project defines a configuration property named spring.ai.qianfan.api-key
and spring.ai.qianfan.secret-key
.
you should set to the value of the API Key
and Secret Key
obtained from API Keys page.
Exporting an environment variable is one way to set that configuration property:
export SPRING_AI_QIANFAN_API_KEY=<INSERT API KEY HERE>
export SPRING_AI_QIANFAN_SECRET_KEY=<INSERT SECRET KEY HERE>
Add Repositories and BOM
Spring AI artifacts are published in Spring Milestone and Snapshot repositories. Refer to the Repositories section to add these repositories to your build system.
To help with dependency management, Spring AI provides a BOM (bill of materials) to ensure that a consistent version of Spring AI is used throughout the entire project. Refer to the Dependency Management section to add the Spring AI BOM to your build system.
Auto-configuration
Spring AI provides Spring Boot auto-configuration for the QianFan Chat Client.
To enable it add the following dependency to your project’s Maven pom.xml
file:
<dependency>
<groupId>org.springframework.ai</groupId>
<artifactId>spring-ai-qianfan-spring-boot-starter</artifactId>
</dependency>
or to your Gradle build.gradle
build file.
dependencies {
implementation 'org.springframework.ai:spring-ai-qianfan-spring-boot-starter'
}
Refer to the Dependency Management section to add the Spring AI BOM to your build file. |
Image Generation Properties
The prefix spring.ai.qianfan.image
is the property prefix that lets you configure the ImageModel
implementation for QianFan.
Property |
Description |
Default |
spring.ai.qianfan.image.enabled |
Enable QianFan image model. |
true |
spring.ai.qianfan.image.base-url |
Optional overrides the spring.ai.qianfan.base-url to provide chat specific url |
- |
spring.ai.qianfan.image.api-key |
Optional overrides the spring.ai.qianfan.api-key to provide chat specific api-key |
- |
spring.ai.qianfan.image.secret-key |
Optional overrides the spring.ai.qianfan.secret-key to provide chat specific secret-key |
- |
spring.ai.qianfan.image.options.model |
The model to use for image generation. |
sd_xl |
spring.ai.qianfan.image.options.user |
A unique identifier representing your end-user, which can help QianFan to monitor and detect abuse. |
- |
Connection Properties
The prefix spring.ai.qianfan
is used as the property prefix that lets you connect to QianFan.
Property |
Description |
Default |
spring.ai.qianfan.base-url |
The URL to connect to |
|
spring.ai.qianfan.api-key |
The API Key |
- |
spring.ai.qianfan.secret-key |
The Secret Key |
- |
Retry Properties
The prefix spring.ai.retry
is used as the property prefix that lets you configure the retry mechanism for the QianFan Image client.
Property | Description | Default |
---|---|---|
spring.ai.retry.max-attempts |
Maximum number of retry attempts. |
10 |
spring.ai.retry.backoff.initial-interval |
Initial sleep duration for the exponential backoff policy. |
2 sec. |
spring.ai.retry.backoff.multiplier |
Backoff interval multiplier. |
5 |
spring.ai.retry.backoff.max-interval |
Maximum backoff duration. |
3 min. |
spring.ai.retry.on-client-errors |
If false, throw a NonTransientAiException, and do not attempt retry for |
false |
spring.ai.retry.exclude-on-http-codes |
List of HTTP status codes that should not trigger a retry (e.g. to throw NonTransientAiException). |
empty |
spring.ai.retry.on-http-codes |
List of HTTP status codes that should trigger a retry (e.g. to throw TransientAiException). |
empty |
Runtime Options
The QianFanImageOptions.java provides model configurations, such as the model to use, the quality, the size, etc.
On start-up, the default options can be configured with the QianFanImageModel(QianFanImageApi qianFanImageApi)
constructor and the withDefaultOptions(QianFanImageOptions defaultOptions)
method. Alternatively, use the spring.ai.qianfan.image.options.*
properties described previously.
At runtime you can override the default options by adding new, request specific, options to the ImagePrompt
call.
For example to override the QianFan specific options such as quality and the number of images to create, use the following code example:
ImageResponse response = qianFanImageModel.call(
new ImagePrompt("A light cream colored mini golden doodle",
QianFanImageOptions.builder()
.withN(4)
.withHeight(1024)
.withWidth(1024).build())
);
In addition to the model specific QianFanImageOptions you can use a portable ImageOptions instance, created with the ImageOptionsBuilder#builder(). |