runapi-flux-2 0.2.6 → 0.2.7
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 +6 -6
- data/lib/runapi/flux_2/contract_gen.rb +68 -0
- data/lib/runapi/flux_2/resources/remix_image.rb +1 -23
- data/lib/runapi/flux_2/resources/text_to_image.rb +1 -16
- data/lib/runapi/flux_2/types.rb +1 -13
- data/lib/runapi/flux_2.rb +1 -0
- metadata +11 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0d2f7af4be782a923b65df9f4f52418b1afa976271cca57a99931c313040b1ce
|
|
4
|
+
data.tar.gz: 9f2e464857535f906008da2404a43c5183cc1c5e56cecf174eaedbeb54fff064
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3e4064be7f3a33af749e40c6ae7d0d3a0fadff165f50b97fa00e74f5122195a7f97fc8727a2f19896498c2502ab8ae9c8f3ce03ba23c381358c83f22f356a9c4
|
|
7
|
+
data.tar.gz: 2b0450f7cb1d201d8978a9bcc7f42e4ca3756a07f4e146c6cb563bc1d688e6e246b9ee1490c2843e8566135202ce7bffea63eccfb8f7b4bbe25504ef22352a20
|
data/README.md
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
# Flux API Ruby SDK for RunAPI
|
|
1
|
+
# Flux 2 API Ruby SDK for RunAPI
|
|
2
2
|
|
|
3
|
-
The
|
|
3
|
+
The Flux 2 Ruby SDK is the language-specific package for Flux 2 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
|
|
5
|
+
This README is the Ruby package guide inside the public `flux-2-sdk` repository. For the repository overview, start at `../README.md`; for model details, use https://runapi.ai/models/flux-2; for API reference, use https://runapi.ai/docs#flux-2; for SDK docs, use https://runapi.ai/docs#sdk-flux-2.
|
|
6
6
|
|
|
7
7
|
## Install
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
gem install runapi-
|
|
10
|
+
gem install runapi-flux-2
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
## Quick start
|
|
@@ -27,7 +27,7 @@ status = client.text_to_image.get(task.id)
|
|
|
27
27
|
remix = client.remix_image.create(
|
|
28
28
|
model: "flux-2-pro-remix-image",
|
|
29
29
|
prompt: "Turn this product shot into a warm editorial photo",
|
|
30
|
-
source_image_urls: ["https://
|
|
30
|
+
source_image_urls: ["https://cdn.runapi.ai/public/samples/image.jpg"],
|
|
31
31
|
aspect_ratio: "auto"
|
|
32
32
|
)
|
|
33
33
|
```
|
|
@@ -38,7 +38,7 @@ RunAPI-generated file URLs are temporary. Download and store generated images, v
|
|
|
38
38
|
|
|
39
39
|
## Language notes
|
|
40
40
|
|
|
41
|
-
Use Ruby keyword arguments and the `RunApi::Flux2` error classes when building image jobs, Rails workers, or scripts. The available resources
|
|
41
|
+
Use Ruby keyword arguments and the `RunApi::Flux2` error classes when building image jobs, Rails workers, or scripts. The available resources are `text_to_image` and `remix_image`. Keep `RUNAPI_API_KEY` in the environment or your secret manager; never commit API keys or callback secrets.
|
|
42
42
|
|
|
43
43
|
## Links
|
|
44
44
|
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module RunApi
|
|
4
|
+
module Flux2
|
|
5
|
+
CONTRACT = {
|
|
6
|
+
"remix-image" => {
|
|
7
|
+
"models" => ["flux-2-flex-remix-image", "flux-2-pro-remix-image"],
|
|
8
|
+
"fields_by_model" => {
|
|
9
|
+
"flux-2-flex-remix-image" => {
|
|
10
|
+
"aspect_ratio" => {
|
|
11
|
+
"enum" => ["1:1", "4:3", "3:4", "16:9", "9:16", "3:2", "2:3", "auto"]
|
|
12
|
+
},
|
|
13
|
+
"output_resolution" => {
|
|
14
|
+
"enum" => ["1k", "2k"]
|
|
15
|
+
},
|
|
16
|
+
"prompt" => {
|
|
17
|
+
"required" => true
|
|
18
|
+
},
|
|
19
|
+
"source_image_urls" => {
|
|
20
|
+
"required" => true
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"flux-2-pro-remix-image" => {
|
|
24
|
+
"aspect_ratio" => {
|
|
25
|
+
"enum" => ["1:1", "4:3", "3:4", "16:9", "9:16", "3:2", "2:3", "auto"]
|
|
26
|
+
},
|
|
27
|
+
"output_resolution" => {
|
|
28
|
+
"enum" => ["1k", "2k"]
|
|
29
|
+
},
|
|
30
|
+
"prompt" => {
|
|
31
|
+
"required" => true
|
|
32
|
+
},
|
|
33
|
+
"source_image_urls" => {
|
|
34
|
+
"required" => true
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"text-to-image" => {
|
|
40
|
+
"models" => ["flux-2-flex-text-to-image", "flux-2-pro-text-to-image"],
|
|
41
|
+
"fields_by_model" => {
|
|
42
|
+
"flux-2-flex-text-to-image" => {
|
|
43
|
+
"aspect_ratio" => {
|
|
44
|
+
"enum" => ["1:1", "4:3", "3:4", "16:9", "9:16", "3:2", "2:3"]
|
|
45
|
+
},
|
|
46
|
+
"output_resolution" => {
|
|
47
|
+
"enum" => ["1k", "2k"]
|
|
48
|
+
},
|
|
49
|
+
"prompt" => {
|
|
50
|
+
"required" => true
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"flux-2-pro-text-to-image" => {
|
|
54
|
+
"aspect_ratio" => {
|
|
55
|
+
"enum" => ["1:1", "4:3", "3:4", "16:9", "9:16", "3:2", "2:3"]
|
|
56
|
+
},
|
|
57
|
+
"output_resolution" => {
|
|
58
|
+
"enum" => ["1k", "2k"]
|
|
59
|
+
},
|
|
60
|
+
"prompt" => {
|
|
61
|
+
"required" => true
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
}.freeze
|
|
67
|
+
end
|
|
68
|
+
end
|
|
@@ -24,35 +24,13 @@ module RunApi
|
|
|
24
24
|
|
|
25
25
|
def create(**params)
|
|
26
26
|
params = compact_params(params)
|
|
27
|
-
|
|
27
|
+
validate_contract!(CONTRACT["remix-image"], params)
|
|
28
28
|
request(:post, ENDPOINT, body: params)
|
|
29
29
|
end
|
|
30
30
|
|
|
31
31
|
def get(id)
|
|
32
32
|
request(:get, "#{ENDPOINT}/#{id}")
|
|
33
33
|
end
|
|
34
|
-
|
|
35
|
-
private
|
|
36
|
-
|
|
37
|
-
def validate_params!(params)
|
|
38
|
-
model = param(params, :model)
|
|
39
|
-
raise Core::ValidationError, "model is required" unless model
|
|
40
|
-
unless Types::REMIX_MODELS.include?(model)
|
|
41
|
-
raise Core::ValidationError, "Invalid model: #{model}. Must be one of: #{Types::REMIX_MODELS.join(", ")}"
|
|
42
|
-
end
|
|
43
|
-
|
|
44
|
-
prompt = param(params, :prompt)
|
|
45
|
-
raise Core::ValidationError, "prompt is required" unless prompt
|
|
46
|
-
|
|
47
|
-
validate_optional!(params, :aspect_ratio, Types::REMIX_ASPECT_RATIOS)
|
|
48
|
-
validate_optional!(params, :output_resolution, Types::OUTPUT_RESOLUTIONS)
|
|
49
|
-
validate_source_image_urls!(params)
|
|
50
|
-
end
|
|
51
|
-
|
|
52
|
-
def validate_source_image_urls!(params)
|
|
53
|
-
urls = param(params, :source_image_urls)
|
|
54
|
-
raise Core::ValidationError, "source_image_urls is required" if urls.nil? || (urls.respond_to?(:empty?) && urls.empty?)
|
|
55
|
-
end
|
|
56
34
|
end
|
|
57
35
|
end
|
|
58
36
|
end
|
|
@@ -32,7 +32,7 @@ module RunApi
|
|
|
32
32
|
# @return [RunApi::Flux2::Types::TextToImageResponse] task creation result with id
|
|
33
33
|
def create(**params)
|
|
34
34
|
params = compact_params(params)
|
|
35
|
-
|
|
35
|
+
validate_contract!(CONTRACT["text-to-image"], params)
|
|
36
36
|
request(:post, ENDPOINT, body: params)
|
|
37
37
|
end
|
|
38
38
|
|
|
@@ -43,21 +43,6 @@ module RunApi
|
|
|
43
43
|
def get(id)
|
|
44
44
|
request(:get, "#{ENDPOINT}/#{id}")
|
|
45
45
|
end
|
|
46
|
-
|
|
47
|
-
private
|
|
48
|
-
|
|
49
|
-
def validate_params!(params)
|
|
50
|
-
raise Core::ValidationError, "model is required" unless param(params, :model)
|
|
51
|
-
raise Core::ValidationError, "prompt is required" unless param(params, :prompt)
|
|
52
|
-
|
|
53
|
-
model = param(params, :model)
|
|
54
|
-
unless Types::TEXT_TO_IMAGE_MODELS.include?(model)
|
|
55
|
-
raise Core::ValidationError, "Invalid model: #{model}. Must be one of: #{Types::TEXT_TO_IMAGE_MODELS.join(", ")}"
|
|
56
|
-
end
|
|
57
|
-
|
|
58
|
-
validate_optional!(params, :aspect_ratio, Types::ASPECT_RATIOS)
|
|
59
|
-
validate_optional!(params, :output_resolution, Types::OUTPUT_RESOLUTIONS)
|
|
60
|
-
end
|
|
61
46
|
end
|
|
62
47
|
end
|
|
63
48
|
end
|
data/lib/runapi/flux_2/types.rb
CHANGED
|
@@ -2,21 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
module RunApi
|
|
4
4
|
module Flux2
|
|
5
|
-
# Type definitions
|
|
5
|
+
# Type definitions for Flux 2.
|
|
6
6
|
# Each operation has pro (higher fidelity) and flex (faster, lower cost) tiers.
|
|
7
7
|
module Types
|
|
8
|
-
MODELS = %w[
|
|
9
|
-
flux-2-pro-text-to-image flux-2-pro-remix-image
|
|
10
|
-
flux-2-flex-text-to-image flux-2-flex-remix-image
|
|
11
|
-
].freeze
|
|
12
|
-
TEXT_TO_IMAGE_MODELS = %w[flux-2-pro-text-to-image flux-2-flex-text-to-image].freeze
|
|
13
|
-
REMIX_MODELS = %w[flux-2-pro-remix-image flux-2-flex-remix-image].freeze
|
|
14
|
-
|
|
15
|
-
ASPECT_RATIOS = %w[1:1 4:3 3:4 16:9 9:16 3:2 2:3].freeze
|
|
16
|
-
# Remix adds 'auto' to preserve the source image aspect ratio.
|
|
17
|
-
REMIX_ASPECT_RATIOS = %w[1:1 4:3 3:4 16:9 9:16 3:2 2:3 auto].freeze
|
|
18
|
-
OUTPUT_RESOLUTIONS = %w[1k 2k].freeze
|
|
19
|
-
|
|
20
8
|
# A single generated image with its CDN URL.
|
|
21
9
|
class Image < RunApi::Core::BaseModel
|
|
22
10
|
optional :url, String
|
data/lib/runapi/flux_2.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: runapi-flux-2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- RunAPI
|
|
@@ -15,18 +15,18 @@ dependencies:
|
|
|
15
15
|
requirements:
|
|
16
16
|
- - "~>"
|
|
17
17
|
- !ruby/object:Gem::Version
|
|
18
|
-
version: 0.2.
|
|
18
|
+
version: 0.2.7
|
|
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.2.
|
|
26
|
-
description: The
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
25
|
+
version: 0.2.7
|
|
26
|
+
description: The Flux 2 Ruby SDK is the language-specific package for Flux 2 on RunAPI.
|
|
27
|
+
Use this package for image generation, image editing, and creative production workflows
|
|
28
|
+
when your application needs request bodies, task status lookup, and consistent RunAPI
|
|
29
|
+
errors in Ruby.
|
|
30
30
|
email:
|
|
31
31
|
- contact@runapi.ai
|
|
32
32
|
executables: []
|
|
@@ -39,6 +39,7 @@ files:
|
|
|
39
39
|
- lib/runapi-flux_2.rb
|
|
40
40
|
- lib/runapi/flux_2.rb
|
|
41
41
|
- lib/runapi/flux_2/client.rb
|
|
42
|
+
- lib/runapi/flux_2/contract_gen.rb
|
|
42
43
|
- lib/runapi/flux_2/resources/remix_image.rb
|
|
43
44
|
- lib/runapi/flux_2/resources/text_to_image.rb
|
|
44
45
|
- lib/runapi/flux_2/types.rb
|
|
@@ -46,9 +47,11 @@ homepage: https://runapi.ai/models/flux-2
|
|
|
46
47
|
licenses:
|
|
47
48
|
- Apache-2.0
|
|
48
49
|
metadata:
|
|
50
|
+
runapi_slug: flux-2
|
|
49
51
|
homepage_uri: https://runapi.ai/models/flux-2
|
|
50
52
|
documentation_uri: https://github.com/runapi-ai/flux-2-sdk/blob/main/ruby/README.md
|
|
51
53
|
source_code_uri: https://github.com/runapi-ai/flux-2-sdk
|
|
54
|
+
bug_tracker_uri: https://github.com/runapi-ai/flux-2-sdk/issues
|
|
52
55
|
changelog_uri: https://github.com/runapi-ai/flux-2-sdk/blob/main/CHANGELOG.md
|
|
53
56
|
rdoc_options: []
|
|
54
57
|
require_paths:
|
|
@@ -66,5 +69,5 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
66
69
|
requirements: []
|
|
67
70
|
rubygems_version: 4.0.10
|
|
68
71
|
specification_version: 4
|
|
69
|
-
summary: Flux API Ruby SDK for RunAPI
|
|
72
|
+
summary: Flux 2 API Ruby SDK for RunAPI
|
|
70
73
|
test_files: []
|