Skip to main content
ByteDance보통높음

FLUX PuLID

FLUX-dev 기반 PuLID 정체성 커스터마이징: 얼굴 사진 한 장으로 특정 인물의 포토리얼 인물 사진을 생성합니다. SDXL 계열 대비 눈에 띄게 높은 얼굴 재현도가 강점이며, id_weight와 start_step으로 유사도와 프롬프트 편집성의 균형을 조절합니다.

47 크레딧
46크레딧 x num_outputs (1-4장)
포토리얼·고재현도 인물 사진을 위한 FLUX-dev 백본
얼굴 사진 한 장으로 학습 없이 정체성 보존
id_weight(0-3)로 얼굴 보존 강도 제어
start_step으로 재현도(0)와 프롬프트 편집성(4) 사이 조절
실행당 1-4장, 최대 1536px 출력

지금 바로 실행해보세요

콘솔의 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/flux-pulid",
  "input": {
    "main_face_image": "https://example.com/woman.png",
    "prompt": "a woman holding sign with glowing green text \"PuLID for FLUX\"",
    "width": 896,
    "height": 1152,
    "start_step": 4,
    "num_outputs": 4
  }
}'

파라미터

파라미터타입필수기본값설명
promptstringNoportrait, color, cinematic이미지 생성을 이끄는 텍스트 프롬프트
main_face_imagestringYes-정체성 기준이 되는 얼굴 사진
negative_promptstringNobad quality, worst quality, text, signature, watermark, extra limbs, low resolution, partially rendered objects, deformed or partially rendered eyes, deformed, deformed eyeballs, cross-eyed, blurry이미지에서 피하고 싶은 요소를 지정하는 네거티브 프롬프트 입력
widthintegerNo896출력 가로 픽셀 (256-1536)
heightintegerNo1152출력 세로 픽셀 (256-1536)
num_stepsintegerNo20디노이징 스텝 수 (1-20)
start_stepintegerNo0정체성 주입 시작 스텝 (0-10). 0은 최고 재현도, 4는 편집성 우선
guidance_scalenumberNo4텍스트 프롬프트 영향력 (1.0-10.0)
id_weightnumberNo1얼굴 사진 영향력 가중치 (0.0-3.0)
seedintegerNo-랜덤 시드 (비우거나 -1이면 무작위)
true_cfgnumberNo1Classifier-Free Guidance(CFG) 스케일 설정. 1.0은 표준 CFG를 사용하고, 1.0보다 크면 True CFG가 활성화되어 생성을 더 정밀하게 제어할 수 있습니다. 값이 높을수록 프롬프트 반영도는 높아지지만 이미지 품질이 저하될 수 있습니다.
max_sequence_lengthintegerNo128프롬프트(T5)의 최대 시퀀스 길이 설정. 값이 작을수록 빠름 (128-512)
output_formatstringNowebp출력 이미지 포맷
pngjpgwebp
output_qualityintegerNo80jpg, webp 출력 이미지의 품질 설정 (1-100)
num_outputsintegerNo1생성할 이미지 수 (1-4). 이미지당 60크레딧 과금

파일 입력 방법

이 모델의 main_face_image 파라미터에 파일을 전달하는 방법은 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/flux-pulid" \
  -F 'input={"prompt":"your prompt here"}' \
  -F "file:main_face_image=@your_file.png"

이미지 URL 전달

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

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

공통 파라미터

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

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

예제

사인을 든 인물 사진

얼굴을 유지하면서 장면 속 텍스트까지 렌더링 — 한 번에 4장 생성

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/flux-pulid",
  "input": {
    "main_face_image": "https://example.com/woman.png",
    "prompt": "a woman holding sign with glowing green text \"PuLID for FLUX\"",
    "width": 896,
    "height": 1152,
    "start_step": 4,
    "num_outputs": 4
  }
}'

최고 재현도 인물 사진

start_step 0과 단일 출력으로 가장 닮은 결과 생성

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/flux-pulid",
  "input": {
    "main_face_image": "https://example.com/face.jpg",
    "prompt": "portrait, color, cinematic, studio lighting, detailed face",
    "start_step": 0,
    "id_weight": 1,
    "num_outputs": 1
  }
}'

팁 & 모범 사례

1핵심은 start_step입니다: 0은 가장 닮게, 4는 프롬프트가 장면을 더 자유롭게 바꿉니다
2얼굴이 레퍼런스와 달라지면 id_weight를 1보다 올리세요. start_step은 0-4 범위를 권장합니다
3num_outputs는 이미지당 과금(장당 60크레딧)입니다 — 1장으로 시안을 잡고 최종본만 4장 생성하세요
4저렴한 시안은 bytedance/pulid(장당 2크레딧)로, 최종 포토리얼 품질은 이 모델로 나누어 쓰면 효율적입니다
5실존 인물 사진은 반드시 본인 동의 하에만 사용하세요

사용 사례

포토리얼 퍼스널 브랜딩·인물 이미지
마케팅 캠페인 전반에서 정체성이 일관된 캐릭터
얼굴이 확실히 닮아야 하는 고재현도 아바타
인물을 새로운 장면에 배치하는 에디토리얼 스타일 사진
텍스트·소품이 들어간 프리미엄 프로필 사진