200ms 미만 지연의 Inworld 최고 품질 실시간 TTS입니다. SSML break 태그로 일시정지, [happy] 같은 감정 마크업, 15개 언어를 지원합니다.
콘솔의 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": "inworld/tts-1.5-max",
"input": {
"text": "[happy] Welcome back! <break time=\"0.5s\" /> Your order shipped this morning and arrives tomorrow.",
"voice_id": "Ashley"
}
}'| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
text | string | Yes | - | 변환할 텍스트 (최대 2,000자). SSML break(<break time="1s" />)와 [happy], [sad] 감정 마크업 지원 |
voice_id | string | No | Ashley | 프리셋 음성(Ashley, Dennis, Alex, Darlene) 또는 커스텀 복제 voice ID |
speaking_rate | number | No | 0 | 말하기 속도 배수 (0-1.5). 0이면 기본 속도(1.0) |
temperature | number | No | 0 | 무작위성 제어 (0-2). 0이면 모델 기본값 |
audio_format | string | No | mp3 | 출력 오디오 형식 mp3wavogg_opusflac |
sample_rate | integer | No | 48000 | 오디오 샘플레이트 (Hz) 8000160002205024000320004410048000 |
text_normalization | string | No | auto | 숫자·날짜·약어를 합성 전에 풀어 읽기 autoonoff |
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": "inworld/tts-1.5-max",
"input": {
"text": "[happy] Welcome back! <break time=\"0.5s\" /> Your order shipped this morning and arrives tomorrow.",
"voice_id": "Ashley"
}
}'