Skip to content
This repository has been archived by the owner on Sep 12, 2024. It is now read-only.

Commit

Permalink
Fixed sm/smea functionality
Browse files Browse the repository at this point in the history
# TODO
- details for request specific requests
- Builder for requests

Signed-off-by: zhaoxinn <[email protected]>
  • Loading branch information
zxzinn committed Aug 1, 2024
1 parent 819221d commit bc2494d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/java/com/zxzinn/novelai/gui/MainGUI.java
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,8 @@ private NAIGenerate createNAIGenerateRequest() {
.seed(Long.parseLong(parametersPanel.getSeedField().getText()))
.n_samples(Integer.parseInt(parametersPanel.getNSamplesField().getText()))
.negative_prompt(negativePrompt)
.sm(parametersPanel.getSmeaCheckbox().isSelected())
.sm_dyn(parametersPanel.getSmeaDynCheckbox().isSelected())
.build();
}

Expand Down

0 comments on commit bc2494d

Please sign in to comment.