feat: 删除冗余接口
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
package com.klp.common.config;
|
||||
|
||||
import lombok.Data;
|
||||
import org.springframework.boot.context.properties.ConfigurationProperties;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
@Data
|
||||
@Component
|
||||
@ConfigurationProperties(prefix = "sales.script.ai")
|
||||
public class DeepseekConfig {
|
||||
|
||||
private String apiKey;
|
||||
|
||||
private String baseUrl;
|
||||
|
||||
private String modelName;
|
||||
|
||||
private Integer maxRetries;
|
||||
|
||||
private Double temperature;
|
||||
}
|
||||
Reference in New Issue
Block a user