Add File
This commit is contained in:
@@ -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;
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user