tencentcloud-sdk-aiart 3.0.967 → 3.0.969

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4d1c402ce1d9de1097148eee161670acfdf3c2a8
4
- data.tar.gz: 3e0f7ea68296bbee7062c409ceb67242b73f2bbe
3
+ metadata.gz: afa5226855693a278361fd94db024b6fcec7ae95
4
+ data.tar.gz: 0c41602d102dcddf62b0f4236c3589976d7d2367
5
5
  SHA512:
6
- metadata.gz: 882b182a1f35f2e2a7d7c604c2d0305563cd784bedbeafb39cbf716fa2af52b50d9896037c308f141beeae3143b00ce645dca110bbd8d3d030257b2899d32b1e
7
- data.tar.gz: c8119f75334c91a02f4e282996dc1e1e0a744522b79db830e33a274b90024d9f4507cb571939ff15b428d687f8f5bfbf984c92d368505f3677901a750817c61d
6
+ metadata.gz: 93ae6fc9fcf8611e0795e80f7fcd7e6a141875d6beef02d86b96b5f3740cbea027756df6872f53e24b4f77bc5f178b7588fd6e9f90ac419eb9ba7bb0ec4bd024
7
+ data.tar.gz: 49460782378c19b09207917f7091979c35c0e1c85d0cc4e1437b62e7c01ea190668599bf4dfc4ce99a03b86e28b179432e2222a2e846c260899a31ea3791f745
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.967
1
+ 3.0.969
@@ -713,6 +713,9 @@ module TencentCloud
713
713
  # @param Prompt: 对新背景的文本描述。
714
714
  # 最多支持256个 utf-8 字符,支持中、英文。
715
715
  # @type Prompt: String
716
+ # @param NegativePrompt: 反向提示词。
717
+ # 最多支持256个 utf-8 字符,支持中、英文。
718
+ # @type NegativePrompt: String
716
719
  # @param Product: 商品图中的商品主体名称。
717
720
  # 建议说明商品主体,否则影响生成效果。
718
721
  # @type Product: String
@@ -738,11 +741,12 @@ module TencentCloud
738
741
  # 生成图分辨率较大时建议选择 url,使用 base64 可能因图片过大导致返回失败。
739
742
  # @type RspImgType: String
740
743
 
741
- attr_accessor :ProductUrl, :Prompt, :Product, :MaskUrl, :Resolution, :LogoAdd, :LogoParam, :RspImgType
744
+ attr_accessor :ProductUrl, :Prompt, :NegativePrompt, :Product, :MaskUrl, :Resolution, :LogoAdd, :LogoParam, :RspImgType
742
745
 
743
- def initialize(producturl=nil, prompt=nil, product=nil, maskurl=nil, resolution=nil, logoadd=nil, logoparam=nil, rspimgtype=nil)
746
+ def initialize(producturl=nil, prompt=nil, negativeprompt=nil, product=nil, maskurl=nil, resolution=nil, logoadd=nil, logoparam=nil, rspimgtype=nil)
744
747
  @ProductUrl = producturl
745
748
  @Prompt = prompt
749
+ @NegativePrompt = negativeprompt
746
750
  @Product = product
747
751
  @MaskUrl = maskurl
748
752
  @Resolution = resolution
@@ -754,6 +758,7 @@ module TencentCloud
754
758
  def deserialize(params)
755
759
  @ProductUrl = params['ProductUrl']
756
760
  @Prompt = params['Prompt']
761
+ @NegativePrompt = params['NegativePrompt']
757
762
  @Product = params['Product']
758
763
  @MaskUrl = params['MaskUrl']
759
764
  @Resolution = params['Resolution']
@@ -1071,7 +1076,6 @@ module TencentCloud
1071
1076
  # 推荐使用且只使用一种风格。不传默认使用201(日系动漫风格)。
1072
1077
  # @type Styles: Array
1073
1078
  # @param ResultConfig: 生成图结果的配置,包括输出图片分辨率和尺寸等。
1074
-
1075
1079
  # 支持生成以下分辨率的图片:768:768(1:1)、768:1024(3:4)、1024:768(4:3)、1024:1024(1:1)、720:1280(9:16)、1280:720(16:9)、768:1280(3:5)、1280:768(5:3)、1080:1920(9:16)、1920:1080(16:9),不传默认使用768:768。
1076
1080
  # @type ResultConfig: :class:`Tencentcloud::Aiart.v20221229.models.ResultConfig`
1077
1081
  # @param LogoAdd: 为生成结果图添加标识的开关,默认为1。
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-aiart
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.967
4
+ version: 3.0.969
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-12-24 00:00:00.000000000 Z
11
+ date: 2024-12-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common