출력 해상도
공개된 endpoint 스키마의 1k를 지원합니다.
curl -X POST https://runapi.ai/api/v1/flux_2/remix_image \
-H "Authorization: Bearer $RUNAPI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "flux-2-max-remix-image",
"prompt": "극적인 림 조명과 세밀한 디테일로 고양이를 안고 있는 우주비행사의 사실적인 스튜디오 초상 사진을 생성해 주세요."
}'
import { Flux2Client } from "@runapi.ai/flux-2";
const client = new Flux2Client();
const result = await client.remixImage.run({
model: "flux-2-max-remix-image",
prompt: "극적인 림 조명과 세밀한 디테일로 고양이를 안고 있는 우주비행사의 사실적인 스튜디오 초상 사진을 생성해 주세요.",
});
import os
import requests
response = requests.post(
"https://runapi.ai/api/v1/flux_2/remix_image",
headers={"Authorization": f"Bearer {os.environ['RUNAPI_API_KEY']}"},
json={"model":"flux-2-max-remix-image","prompt":"극적인 림 조명과 세밀한 디테일로 고양이를 안고 있는 우주비행사의 사실적인 스튜디오 초상 사진을 생성해 주세요."}
)
response.raise_for_status()
<?php
$client = curl_init("https://runapi.ai/api/v1/flux_2/remix_image");
curl_setopt_array($client, [
CURLOPT_HTTPHEADER => ["Authorization: Bearer " . getenv("RUNAPI_API_KEY"), "Content-Type: application/json"],
CURLOPT_POSTFIELDS => json_encode([
'model' => 'flux-2-max-remix-image',
'prompt' => '극적인 림 조명과 세밀한 디테일로 고양이를 안고 있는 우주비행사의 사실적인 스튜디오 초상 사진을 생성해 주세요.',
])
]);
$response = curl_exec($client);
RunApi client = new RunApi(System.getenv("RUNAPI_API_KEY"));
Task task = client.remixImage().run({"model":"flux-2-max-remix-image","prompt":"극적인 림 조명과 세밀한 디테일로 고양이를 안고 있는 우주비행사의 사실적인 스튜디오 초상 사진을 생성해 주세요."});
task.waitForResult();
require "runapi/flux_2"
client = RunApi::Flux2::Client.new
result = client.remix_image.run(
model: "flux-2-max-remix-image",
prompt: "극적인 림 조명과 세밀한 디테일로 고양이를 안고 있는 우주비행사의 사실적인 스튜디오 초상 사진을 생성해 주세요."
)
client := runapi.NewClient(os.Getenv("RUNAPI_API_KEY"))
task, err := client.remixImage.Run({"model":"flux-2-max-remix-image","prompt":"극적인 림 조명과 세밀한 디테일로 고양이를 안고 있는 우주비행사의 사실적인 스튜디오 초상 사진을 생성해 주세요."})
if err != nil { log.Fatal(err) }
task.Wait()
$ runapi generate \
--model flux-2-max-remix-image \
--endpoint remix_image \
--wait
사용 가능한 버전 6개
원하는 모델을 선택하고 몇 초 만에 생성해보세요.
원하는 모델을 선택하고 몇 초 만에 생성해보세요.
| 제공자 | Black Forest Labs |
| 모델 ID | flux-2-max-remix-image |
| 모달리티 | Image |
| 작업 유형 | Asynchronous |
| API 엔드포인트 | /api/v1/flux_2/remix_image |
| 청구 단위 | call |
| 입력 매개변수 | aspect_ratio, callback_url, model, output_count, output_resolution, prompt, source_image_urls |
| 최대 해상도 | 1k |
| 종횡비 | 1:1, 4:3, 3:4, 16:9, 9:16, 3:2, 2:3 |
| 카탈로그 상태 | 운영 중 |
무료로 가입하고 대시보드에서 flux-2-max-remix-image용 API 키를 만드세요.
/api/v1/flux_2/remix_image로 flux-2-max-remix-image 모델 ID와 매개변수를 포함한 POST 요청을 보내세요.
작업을 폴링하거나 콜백을 따라 완료된 flux-2-max-remix-image 결과를 가져오세요.
공개된 endpoint 스키마의 1k를 지원합니다.
aspect_ratio, output_count, output_resolution, prompt, source_image_urls 포함 5개 문서화된 파라미터를 설정할 수 있습니다.
1개의 공개 endpoint를 제공합니다: remix_image.
비동기 태스크는 완료 알림을 위한 콜백 URL을 수락합니다.
promptImage editing instruction.
aspect_ratioOutput aspect ratio. (1:1, 4:3, 3:4, 16:9, 9:16, 3:2, 2:3)
callback_urlWebhook URL for async notifications.
output_countNumber of images to generate. (1)
output_resolutionOutput resolution. (1k)
source_image_urlsExactly one public HTTP(S) source image URL.
텍스트 prompt에서 시각 asset을 만듭니다.
prompt 지시에 따라 기존 이미지를 변환합니다.
SDK로 반복 가능한 생성을 구현합니다.
quickstart에 표시된 모델 ID를 전달하세요.
네. 호출 또는 단위 기준으로 측정됩니다.