runapi-seedream 0.2.9 → 0.2.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +3 -3
- data/lib/runapi/seedream/contract_gen.rb +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c18b722373785d38b9f50012f72d631079cb7e6969a5fcbe2478f540db2ef985
|
|
4
|
+
data.tar.gz: 8da8e9cc24e5aef92bd396a29aa52d1eb2d79d96d24ecd073fd82c534ec45f0d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 989112c12aec51764f7c222088112d6f72847c9d0ebd75fc86a9c0c5ffebe7ebe1d7fef3727e3ad11dcb3824b55271431581f983e93ec4658162d2dc5a5a9aae
|
|
7
|
+
data.tar.gz: 95a1ce3e40e62ea60daffd99569b57daaddc9561015a910a67b67e7446d8746247e415f6d88640c9960c2252acbb82f8fe5e2d4110a2aa580039e4a187c22e3e
|
data/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
The Seedream Ruby SDK is the language-specific package for Seedream on RunAPI. Use this package for image generation, image editing, and creative production workflows when your application needs request bodies, task status lookup, and consistent RunAPI errors in Ruby.
|
|
4
4
|
|
|
5
|
-
This README is the Ruby package guide inside the public `seedream-sdk` repository. For the repository overview, start at `../README.md`; for model details, use https://runapi.ai/models/seedream; for API reference, use https://runapi.ai/docs
|
|
5
|
+
This README is the Ruby package guide inside the public `seedream-sdk` repository. For the repository overview, start at `../README.md`; for model details, use https://runapi.ai/models/seedream; for API reference, use https://runapi.ai/docs/api/seedream/text-to-image; for SDK docs, use https://runapi.ai/docs/resources/sdks.
|
|
6
6
|
|
|
7
7
|
## Install
|
|
8
8
|
|
|
@@ -41,8 +41,8 @@ Use Ruby keyword arguments and the `RunApi::Seedream` error classes when buildin
|
|
|
41
41
|
## Links
|
|
42
42
|
|
|
43
43
|
- Model page: https://runapi.ai/models/seedream
|
|
44
|
-
- SDK docs: https://runapi.ai/docs
|
|
45
|
-
- Product docs: https://runapi.ai/docs
|
|
44
|
+
- SDK docs: https://runapi.ai/docs/resources/sdks
|
|
45
|
+
- Product docs: https://runapi.ai/docs/api/seedream/text-to-image
|
|
46
46
|
- Pricing and rate limits: https://runapi.ai/models/seedream/v4-text-to-image
|
|
47
47
|
- Full catalog: https://runapi.ai/models
|
|
48
48
|
- Repository: https://github.com/runapi-ai/seedream-sdk
|
|
@@ -39,7 +39,7 @@ module RunApi
|
|
|
39
39
|
"enum" => ["png", "jpeg"]
|
|
40
40
|
},
|
|
41
41
|
"output_quality" => {
|
|
42
|
-
"enum" => ["basic", "high"],
|
|
42
|
+
"enum" => ["basic", "high", "ultra"],
|
|
43
43
|
"required" => true
|
|
44
44
|
},
|
|
45
45
|
"seed" => {
|
|
@@ -144,7 +144,7 @@ module RunApi
|
|
|
144
144
|
"enum" => ["png", "jpeg"]
|
|
145
145
|
},
|
|
146
146
|
"output_quality" => {
|
|
147
|
-
"enum" => ["basic", "high"],
|
|
147
|
+
"enum" => ["basic", "high", "ultra"],
|
|
148
148
|
"required" => true
|
|
149
149
|
},
|
|
150
150
|
"seed" => {
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: runapi-seedream
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.11
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- RunAPI
|
|
@@ -15,14 +15,14 @@ dependencies:
|
|
|
15
15
|
requirements:
|
|
16
16
|
- - "~>"
|
|
17
17
|
- !ruby/object:Gem::Version
|
|
18
|
-
version: 0.
|
|
18
|
+
version: 0.3.4
|
|
19
19
|
type: :runtime
|
|
20
20
|
prerelease: false
|
|
21
21
|
version_requirements: !ruby/object:Gem::Requirement
|
|
22
22
|
requirements:
|
|
23
23
|
- - "~>"
|
|
24
24
|
- !ruby/object:Gem::Version
|
|
25
|
-
version: 0.
|
|
25
|
+
version: 0.3.4
|
|
26
26
|
description: The Seedream Ruby SDK is the language-specific package for Seedream on
|
|
27
27
|
RunAPI. Use this package for image generation, image editing, and creative production
|
|
28
28
|
workflows when your application needs request bodies, task status lookup, and consistent
|