mirror of
https://gitee.com/agents-flex/agents-flex.git
synced 2024-11-29 18:38:17 +08:00
feat: ChatOptions add "send" property
This commit is contained in:
parent
ce6e030834
commit
3859fc15fe
@ -36,12 +36,21 @@ public class ChatOptions {
|
||||
};
|
||||
|
||||
|
||||
private String seed;
|
||||
private Float temperature = 0.8f;
|
||||
private Float topP;
|
||||
private Integer topK;
|
||||
private Integer maxTokens;
|
||||
private List<String> stop;
|
||||
|
||||
public String getSeed() {
|
||||
return seed;
|
||||
}
|
||||
|
||||
public void setSeed(String seed) {
|
||||
this.seed = seed;
|
||||
}
|
||||
|
||||
public Float getTemperature() {
|
||||
return temperature;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user