인기 애니메이션 특화 이미지 모델입니다 (1,200만+ 실행). 고품질 애니메·일러스트 스타일과 img2img·인페인팅을 지원합니다. 애니메 아바타·웹툰풍 아트의 대표 선택지입니다.
콘솔의 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": "datacte/proteus-v0.2",
"input": {
"prompt": "anime girl with silver hair, cherry blossom background, soft lighting, best quality, highly detailed",
"width": 1024,
"height": 1024
}
}'| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
prompt | string | No | black fluffy gorgeous dangerous cat animal creature, large orange eyes, big fluffy ears, piercing gaze, full moon, dark ambiance, best quality, extremely detailed | 이미지 설명 (애니메 태그 스타일이 잘 통합니다) |
negative_prompt | string | No | worst quality, low quality | 피할 요소 |
image | string | No | - | img2img용 입력 이미지 |
mask | string | No | - | 인페인팅 마스크 |
width | integer | No | 1024 | 출력 가로 |
height | integer | No | 1024 | 출력 세로 |
num_outputs | integer | No | 1 | 생성할 이미지 수 (1-4). 이미지 수만큼 과금 |
scheduler | string | No | KarrasDPM | 스케줄러 DDIMDPMSolverMultistepHeunDiscreteKarrasDPMK_EULER_ANCESTRALK_EULERPNDM |
num_inference_steps | integer | No | 20 | 디노이징 스텝 수. 디테일을 높이려면 20~35스텝, 빠른 결과를 원하면 20스텝을 사용하세요. |
guidance_scale | number | No | 7.5 | CFG 스케일 (1-50) |
prompt_strength | number | No | 0.8 | img2img / inpaint 사용 시 프롬프트 강도. 1.0이면 원본 이미지 정보가 완전히 사라짐 |
seed | integer | No | - | 시드 |
apply_watermark | boolean | No | true | 다운스트림 애플리케이션에서 생성 이미지 여부를 판별할 수 있도록 워터마크를 적용합니다. 안전한 생성/배포를 위한 별도 장치가 있다면 이 옵션으로 워터마크를 비활성화할 수 있습니다. |
disable_safety_checker | boolean | No | false | 생성된 이미지의 안전성 검사기 비활성화. 이 기능은 API를 통해서만 사용할 수 있습니다. https://replicate.com/docs/how-does-replicate-work#safety 참고 |
이 모델의 imagemask 파라미터에 파일을 전달하는 방법은 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=datacte/proteus-v0.2" \
-F 'input={"prompt":"your prompt here"}' \
-F "file:image=@your_file.png"공개 접근 가능한 URL을 직접 전달합니다. Storage API로 업로드한 파일의 file_url도 사용 가능합니다.
{
"model": "datacte/proteus-v0.2",
"input": {
"prompt": "your prompt here",
"image": "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": "datacte/proteus-v0.2",
"input": {
"prompt": "anime girl with silver hair, cherry blossom background, soft lighting, best quality, highly detailed",
"width": 1024,
"height": 1024
}
}'