Seedream 5.0 lite는 논리 추론, 예시 기반 편집, 전문 도메인 지식을 갖춘 이미지 생성 모델입니다. 최대 14장의 멀티 레퍼런스 생성과 연속 배치 생성을 지원합니다.
콘솔의 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-5-lite",
"input": {
"prompt": "A Renaissance-style oil painting of a modern-day farmer's market. A woman in a hoodie examines heirloom tomatoes under a striped awning, lit like a Vermeer interior. Warm golden Dutch Golden Age light, every detail unmistakably contemporary",
"size": "2K",
"aspect_ratio": "16:9"
}
}'| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
prompt | string | Yes | - | 텍스트 프롬프트 (최대 4,000자). 영어 600단어 이하 권장. 이미지에 넣을 텍스트는 큰따옴표로 감싸기 |
image_input | array | No | [] | 단일·멀티 레퍼런스 생성용 입력 이미지 (1~14장) |
size | string | No | 2K | 이미지 해상도: 2K(2048px) 또는 3K(3072px) — 가격 동일 2K3K |
aspect_ratio | string | No | match_input_image | 화면 비율. 'match_input_image'는 입력 이미지 비율을 따름 match_input_image1:14:33:416:99:163:22:321:9 |
sequential_image_generation | string | No | disabled | 'disabled'는 1장 생성, 'auto'는 모델이 연관 이미지 여러 장을 생성 (장당 과금) disabledauto |
max_images | integer | No | 1 | sequential 'auto' 모드의 최대 생성 장수 (1~15). 입력+생성 합계 15장 이하 |
output_format | string | No | png | 출력 이미지 포맷 pngjpeg |
이 모델의 image_input 파라미터에 파일을 전달하는 방법은 3가지입니다.
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-5-lite" \
-F 'input={"prompt":"your prompt here"}' \
-F "file:image_input=@your_file.png"공개 접근 가능한 URL을 직접 전달합니다. Storage API로 업로드한 파일의 file_url도 사용 가능합니다.
{
"model": "bytedance/seedream-5-lite",
"input": {
"prompt": "your prompt here",
"image_input": ["https://example.com/image.jpg"]
}
}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-5-lite",
"input": {
"prompt": "A Renaissance-style oil painting of a modern-day farmer's market. A woman in a hoodie examines heirloom tomatoes under a striped awning, lit like a Vermeer interior. Warm golden Dutch Golden Age light, every detail unmistakably contemporary",
"size": "2K",
"aspect_ratio": "16:9"
}
}'정밀한 타이포그래피의 멀티라인 텍스트 렌더링
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-5-lite",
"input": {
"prompt": "A large-format typographic poster for a jazz festival. At the top in bold condensed sans-serif: \"BLUE NOTE SESSIONS\" in deep navy. Below in elegant script: \"Summer 2026 — Central Park, New York.\" A golden saxophone silhouette runs along the right edge",
"size": "2K",
"aspect_ratio": "2:3"
}
}'