io.github.sinri.AiOnHttpMix.dashscope.wanx.ImageSynthesis.request.WanxImageSynthesisInputImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of AiOnHttpMix Show documentation
Show all versions of AiOnHttpMix Show documentation
A library to handle LLM APIs over HTTP service.
The newest version!
package io.github.sinri.AiOnHttpMix.dashscope.wanx.ImageSynthesis.request;
import io.vertx.core.json.JsonObject;
import org.jetbrains.annotations.NotNull;
class WanxImageSynthesisInputImpl implements WanxImageSynthesisInput {
private JsonObject jsonObject = new JsonObject();
@Override
public @NotNull JsonObject toJsonObject() {
return jsonObject;
}
@Override
public @NotNull WanxImageSynthesisInput reloadDataFromJsonObject(@NotNull JsonObject jsonObject) {
this.jsonObject = jsonObject;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy