初始化

This commit is contained in:
2026-02-22 18:55:40 +08:00
commit 8392cdd861
496 changed files with 45020 additions and 0 deletions

View File

@@ -0,0 +1,78 @@
/*
* Copyright (c) 2023-2026, Easy-Agents (fuhai999@gmail.com).
* <p>
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.easyagents.image.stability;
import com.easyagents.core.model.client.HttpClient;
import com.easyagents.core.model.image.*;
import com.easyagents.core.util.Maps;
import okhttp3.Response;
import okhttp3.ResponseBody;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
public class StabilityImageModel implements ImageModel {
private static final Logger LOG = LoggerFactory.getLogger(StabilityImageModel.class);
private StabilityImageModelConfig config;
private HttpClient httpClient = new HttpClient();
public StabilityImageModel(StabilityImageModelConfig config) {
this.config = config;
}
@Override
public ImageResponse generate(GenerateImageRequest request) {
Map<String, String> headers = new HashMap<>();
headers.put("accept", "image/*");
headers.put("Authorization", "Bearer " + config.getApiKey());
Map<String, Object> payload = Maps.of("prompt", request.getPrompt())
.setIfNotNull("output_format", "jpeg");
String url = config.getEndpoint() + "/v2beta/stable-image/generate/sd3";
try (Response response = httpClient.multipart(url, headers, payload);
ResponseBody body = response.body()) {
if (response.isSuccessful() && body != null) {
ImageResponse imageResponse = new ImageResponse();
imageResponse.addImage(body.bytes());
return imageResponse;
}
} catch (IOException e) {
LOG.error(e.toString(), e);
}
return null;
}
@Override
public ImageResponse img2imggenerate(GenerateImageRequest request) {
return null;
}
@Override
public ImageResponse edit(EditImageRequest request) {
return null;
}
@Override
public ImageResponse vary(VaryImageRequest request) {
return null;
}
}

View File

@@ -0,0 +1,37 @@
/*
* Copyright (c) 2023-2026, Easy-Agents (fuhai999@gmail.com).
* <p>
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.easyagents.image.stability;
public class StabilityImageModelConfig {
private String endpoint = "https://api.stability.ai/";
private String apiKey;
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;
}
}

View File

@@ -0,0 +1,38 @@
/*
* Copyright (c) 2023-2026, Easy-Agents (fuhai999@gmail.com).
* <p>
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.easyagents.image.test;
import com.easyagents.core.model.image.GenerateImageRequest;
import com.easyagents.core.model.image.ImageResponse;
import com.easyagents.image.stability.StabilityImageModel;
import com.easyagents.image.stability.StabilityImageModelConfig;
import org.junit.Test;
public class StabilityImageModelTest {
@Test
public void testGenImage(){
StabilityImageModelConfig config = new StabilityImageModelConfig();
config.setApiKey("sk-5gqOcl*****");
StabilityImageModel imageModel = new StabilityImageModel(config);
GenerateImageRequest request = new GenerateImageRequest();
request.setPrompt("A cute little tiger standing in the high-speed train");
ImageResponse generate = imageModel.generate(request);
System.out.println(generate);
}
}