mirror of
https://gitee.com/huangge1199_admin/vue-pro.git
synced 2024-11-23 07:41:53 +08:00
【优化】解决调用openai image 生成,user不能为空情况,固定设置UID 客户端
This commit is contained in:
parent
2cbb6ac8d5
commit
067fc58147
@ -42,11 +42,11 @@ public class OpenAiImageOptions implements ImageOptions {
|
||||
|
||||
// 可选字段,默认为vivid
|
||||
// 图像生成的风格。可为vivid(生动)或natural(自然)。vivid会使模型偏向生成超现实和戏剧性的图像,而natural则会让模型产出更自然、不那么超现实的图像。该参数仅对dall-e-3模型有效。
|
||||
private String style = "vivid";
|
||||
private OpenAiImageStyleEnum style = OpenAiImageStyleEnum.VIVID;
|
||||
|
||||
// 可选字段
|
||||
// 代表您的终端用户的唯一标识符,有助于OpenAI监控并检测滥用行为。了解更多信息请参考官方文档。
|
||||
private String endUserId;
|
||||
private String endUserId = "UID123456";
|
||||
|
||||
@Getter
|
||||
public enum ResponseFormatEnum {
|
||||
|
@ -43,7 +43,7 @@ public class OpenAiImageRequest {
|
||||
// 可选字段,默认为1024x1024
|
||||
// 生成图像的尺寸大小。对于dall-e-2模型,尺寸可为256x256, 512x512, 或 1024x1024。对于dall-e-3模型,尺寸可为1024x1024, 1792x1024, 或 1024x1792。
|
||||
@JsonProperty("size")
|
||||
private String imageSize = "1024x1024";
|
||||
private String size = "1024x1024";
|
||||
|
||||
// 可选字段,默认为vivid
|
||||
// 图像生成的风格。可为vivid(生动)或natural(自然)。vivid会使模型偏向生成超现实和戏剧性的图像,而natural则会让模型产出更自然、不那么超现实的图像。该参数仅对dall-e-3模型有效。
|
||||
@ -53,6 +53,6 @@ public class OpenAiImageRequest {
|
||||
// 可选字段
|
||||
// 代表您的终端用户的唯一标识符,有助于OpenAI监控并检测滥用行为。了解更多信息请参考官方文档。
|
||||
@JsonProperty("user")
|
||||
private String endUserId;
|
||||
private String endUserId = "UID123123";
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user