Skip to main content
ByteDance보통울트라

Seedream 4.5

공간 이해력과 세계 지식이 강화된 ByteDance의 업그레이드 이미지 모델입니다. 단일/다중 참조 이미지 편집과 순차(다중 이미지) 생성을 지원합니다.

90 크레딧
이미지당 — 순차 생성 모드(auto)에서는 생성된 이미지 수(최대 15장)만큼 비례 과금
강력한 공간 이해력과 세계 지식
다중 참조 이미지-이미지 생성 (최대 14개 입력 이미지)
한 번의 호출로 최대 15개의 연관 이미지를 생성하는 순차 생성 모드
2K·4K 해상도 및 커스텀 너비/높이 지원
입력 이미지 비율 자동 매칭을 포함한 다양한 종횡비

지금 바로 실행해보세요

콘솔의 Playground에서 별도 코드 없이 이 모델을 즉시 테스트할 수 있어요

로그인 후 사용해보기

AI 어시스턴트에서 사용하기

이 모델의 사용법을 Claude, ChatGPT 등에 복사

빠른 시작

curl -X POST "https://api.core.today/v1/predictions" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: cdt_your_api_key" \
  -d '{
  "model": "bytedance/seedream-4.5",
  "input": {
    "prompt": "A warm, nostalgic film-style interior of a cozy café, shot on 35mm-inspired digital photography with soft afternoon sunlight filtering through the front windows.",
    "size": "4K",
    "aspect_ratio": "16:9",
    "sequential_image_generation": "disabled"
  }
}'

파라미터

파라미터타입필수기본값설명
promptstringYes-이미지 생성을 위한 텍스트 프롬프트 (최대 4000자)
image_inputarrayNo[]이미지-이미지 생성을 위한 입력 이미지 (단일/다중 참조용 1~14장)
sizestringNo2K이미지 해상도: 2K, 4K, 또는 custom (1K는 지원되지 않음)
2K4Kcustom
widthintegerNo2048커스텀 이미지 너비, 1024~4096 (size=custom일 때만 사용)
heightintegerNo2048커스텀 이미지 높이, 1024~4096 (size=custom일 때만 사용)
aspect_ratiostringNomatch_input_image이미지 종횡비. size=custom일 때는 무시됨
match_input_image1:14:33:44:55:416:99:163:22:321:99:21
sequential_image_generationstringNodisabled'disabled'는 이미지 1장 생성, 'auto'는 모델이 여러 연관 이미지를 생성하도록 허용
disabledauto
max_imagesintegerNo1sequential_image_generation=auto일 때 생성할 최대 이미지 수 (1~15). 생성된 이미지 수만큼 과금
disable_safety_checkerbooleanNofalse생성 이미지에 대한 안전 검사기 비활성화

파일 입력 방법

이 모델의 image_input 파라미터에 파일을 전달하는 방법은 3가지입니다.

추천

간편 업로드 (Multipart)

POST /v1/predictions/upload에 파일을 직접 첨부합니다. 별도 업로드 과정이 필요 없습니다.

curl -X POST "https://api.core.today/v1/predictions/upload" \
  -H "X-API-Key: cdt_your_api_key" \
  -F "model=bytedance/seedream-4.5" \
  -F 'input={"prompt":"your prompt here"}' \
  -F "file:image_input=@your_file.png"

이미지 URL 전달

공개 접근 가능한 URL을 직접 전달합니다. Storage API로 업로드한 파일의 file_url도 사용 가능합니다.

{
  "model": "bytedance/seedream-4.5",
  "input": {
    "prompt": "your prompt here",
    "image_input": ["https://example.com/image.jpg"]
  }
}
File Upload 문서에서 Presigned URL 방식 등 더 자세한 업로드 방법을 확인하세요.

공통 파라미터

POST /v1/predictions 요청 시 사용되는 공통 파라미터입니다.

파라미터타입필수기본값설명
modelstringYes-모델 식별자
inputobjectYes-위 테이블의 모델별 파라미터를 포함하는 객체
output_folderstringNo-결과물 저장 폴더 경로 (최대 256자, '..' 사용 불가)
webhook_urlstringNo-완료 시 호출할 Webhook URL
is_publicbooleanNofalsetrue 시 결과물을 영구 공개 URL로도 제공

예제

4K 인테리어 사진 (기본값)

4K 해상도로 생성하는 고해상도 단일 이미지

curl -X POST "https://api.core.today/v1/predictions" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: cdt_your_api_key" \
  -d '{
  "model": "bytedance/seedream-4.5",
  "input": {
    "prompt": "A warm, nostalgic film-style interior of a cozy café, shot on 35mm-inspired digital photography with soft afternoon sunlight filtering through the front windows.",
    "size": "4K",
    "aspect_ratio": "16:9",
    "sequential_image_generation": "disabled"
  }
}'

순차 스토리 장면 생성

한 번의 호출로 최대 15장의 연관 이미지(스토리 장면, 캐릭터 배리에이션 등) 생성

curl -X POST "https://api.core.today/v1/predictions" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: cdt_your_api_key" \
  -d '{
  "model": "bytedance/seedream-4.5",
  "input": {
    "prompt": "A children's book spread showing a fox exploring a forest across four consecutive scenes",
    "sequential_image_generation": "auto",
    "max_images": 4
  }
}'

팁 & 모범 사례

1sequential_image_generation=auto는 생성된 이미지 수(최대 max_images)만큼 과금되므로 비용 관리를 위해 max_images를 신중히 설정하세요
2최대 14장의 참조 이미지를 활용한 다중 참조 합성과 캐릭터 일관성 유지가 가능합니다
31K 해상도는 지원되지 않습니다 — 기본값 2K 또는 고화질 4K를 사용하세요
4size=custom일 때는 aspect_ratio가 무시되므로 width/height를 직접 지정하세요

사용 사례

한 번의 호출로 만드는 스토리 장면 세트·캐릭터 배리에이션 시트
다중 참조 이미지를 활용한 제품 사진 합성
참조 이미지 기반 스타일 전이 및 사진 편집
고해상도(4K) 마케팅·인쇄용 이미지