This commit is contained in:
2025-08-27 19:58:03 +08:00
parent 7ed2ddb03b
commit 3bf0ae1d2f

View File

@@ -0,0 +1,44 @@
package com.agentsflex.spring.boot.llm.deepseek;
import org.springframework.boot.context.properties.ConfigurationProperties;
@ConfigurationProperties(prefix = "agents-flex.llm.deepseek")
public class DeepSeekProperties {
private String model = "deepseek-chat";
private String endpoint = "https://api.deepseek.com";
private String apiKey;
private String apiSecret;
public String getModel() {
return model;
}
public void setModel(String model) {
this.model = model;
}
public String getEndpoint() {
return endpoint;
}
public void setEndpoint(String endpoint) {
this.endpoint = endpoint;
}
public String getApiKey() {
return apiKey;
}
public void setApiKey(String apiKey) {
this.apiKey = apiKey;
}
public String getApiSecret() {
return apiSecret;
}
public void setApiSecret(String apiSecret) {
this.apiSecret = apiSecret;
}
}