io.github.robothy.sdwebui.sdk.models.SdWebuiOptions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdwebui-java-sdk Show documentation
Show all versions of sdwebui-java-sdk Show documentation
Stable Diffusion Web UI Java SDK
The newest version!
package io.github.robothy.sdwebui.sdk.models;
import lombok.Getter;
@Getter
public class SdWebuiOptions {
private final String endpoint;
public SdWebuiOptions(String endpoint) {
this.endpoint = endpoint;
}
}