mirror of
https://github.com/tencentmusic/supersonic.git
synced 2025-12-10 02:46:56 +00:00
22 lines
500 B
Java
22 lines
500 B
Java
package dev.langchain4j.qianfan.spring;
|
|
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
|
|
@Getter
|
|
@Setter
|
|
class ChatModelProperties {
|
|
private String baseUrl;
|
|
private String apiKey;
|
|
private String secretKey;
|
|
private Double temperature;
|
|
private Integer maxRetries;
|
|
private Double topP;
|
|
private String modelName;
|
|
private String endpoint;
|
|
private String responseFormat;
|
|
private Double penaltyScore;
|
|
private Boolean logRequests;
|
|
private Boolean logResponses;
|
|
}
|