뛰어난 프롬프트 이해력과 창의적 능력을 갖춘 ByteDance의 최신 이미지 생성 모델입니다.
콘솔의 Playground에서 별도 코드 없이 이 모델을 즉시 테스트할 수 있어요
이 모델의 사용법을 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",
"input": {
"prompt": "Modern coffee shop interior with text 'OPEN NOW' in neon sign style, cozy atmosphere, Instagram aesthetic",
"size": "1024x1024"
}
}'| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
prompt | string | Yes | - | 이미지 텍스트 설명 |
image_input | array | No | [] | 이미지-이미지 생성을 위한 입력 이미지. 단일 또는 다중 레퍼런스 생성을 위해 1~10장의 이미지 목록을 지원합니다. |
size | string | No | 2K | 출력 크기 1K2K4Kcustom |
aspect_ratio | string | No | match_input_image | 이미지 비율. size가 'custom'이 아닐 때만 사용됨. 'match_input_image'를 사용하면 입력 이미지의 비율을 자동으로 따릅니다. match_input_image1:14:33:416:99:163:22:321:9 |
width | integer | No | 2048 | 커스텀 이미지 너비 (size='custom'일 때만 사용됨). 범위: 1024-4096픽셀. |
height | integer | No | 2048 | 커스텀 이미지 높이 (size='custom'일 때만 사용됨). 범위: 1024-4096픽셀. |
sequential_image_generation | string | No | disabled | 그룹 이미지 생성 모드. 'disabled'는 단일 이미지를 생성하고, 'auto'는 모델이 연관된 여러 이미지(예: 스토리 장면, 캐릭터 변형)를 생성할지 스스로 판단하게 합니다. disabledauto |
max_images | integer | No | 1 | sequential_image_generation='auto'일 때 생성할 최대 이미지 수. 범위: 1-15. 전체 이미지 수(입력 + 생성)는 15장을 초과할 수 없습니다. |
enhance_prompt | boolean | No | true | 더 높은 품질의 결과를 위해 프롬프트 보강 활성화. 생성 시간이 길어집니다. |
POST /v1/predictions 요청 시 사용되는 공통 파라미터입니다.
| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
model | string | Yes | - | 모델 식별자 |
input | object | Yes | - | 위 테이블의 모델별 파라미터를 포함하는 객체 |
output_folder | string | No | - | 결과물 저장 폴더 경로 (최대 256자, '..' 사용 불가) |
webhook_url | string | No | - | 완료 시 호출할 Webhook URL |
is_public | boolean | No | false | true 시 결과물을 영구 공개 URL로도 제공 |
매력적인 소셜 콘텐츠 생성
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",
"input": {
"prompt": "Modern coffee shop interior with text 'OPEN NOW' in neon sign style, cozy atmosphere, Instagram aesthetic",
"size": "1024x1024"
}
}'