고유한 감정 과장(exaggeration) 제어와 짧은 레퍼런스 오디오 기반 즉시 음성 복제를 갖춘 Resemble AI의 프로덕션급 오픈소스 TTS입니다. MIT 라이선스로 주요 상용 시스템과 비교 벤치마크된 모델입니다.
콘솔의 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": "resemble-ai/chatterbox",
"input": {
"prompt": "We're excited to introduce Chatterbox, our first production-grade open source TTS model!",
"exaggeration": 0.8,
"cfg_weight": 0.5
}
}'| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
prompt | string | Yes | - | 합성할 텍스트 |
audio_prompt | string | No | - | 음성 복제용 레퍼런스 오디오 파일 (선택) |
exaggeration | number | No | 0.5 | 감정 과장 정도 (0.25-2.0). 0.5가 중립, 극단값은 불안정할 수 있음 |
cfg_weight | number | No | 0.5 | CFG/페이스 가중치 (0.2-1.0) |
temperature | number | No | 0.8 | 무작위성 제어 (0.05-5.0) |
seed | integer | No | 0 | 시드 (0이면 랜덤) |
이 모델의 audio_prompt 파라미터에 파일을 전달하는 방법은 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=resemble-ai/chatterbox" \
-F 'input={"prompt":"your prompt here"}' \
-F "file:audio_prompt=@your_file.png"공개 접근 가능한 URL을 직접 전달합니다. Storage API로 업로드한 파일의 file_url도 사용 가능합니다.
{
"model": "resemble-ai/chatterbox",
"input": {
"prompt": "your prompt here",
"audio_prompt": "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": "resemble-ai/chatterbox",
"input": {
"prompt": "We're excited to introduce Chatterbox, our first production-grade open source TTS model!",
"exaggeration": 0.8,
"cfg_weight": 0.5
}
}'