Loading...
Loading...
Create and manage Tavus replicas (AI digital twins). Use when training custom replicas from video, listing stock replicas, or managing replica assets. Covers training video requirements, consent statements, and the Phoenix-3 model.
npx skill4agent add tavus-engineering/tavus-skills tavus-replicarfe12d8b9597re8e740a42"I, [full name], consent to the creation of a digital replica of my likeness for use with Tavus technology."
curl -X POST https://tavusapi.com/v2/replicas \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-d '{
"replica_name": "My Avatar",
"train_video_url": "https://s3.../train.mp4",
"consent_video_url": "https://s3.../consent.mp4",
"callback_url": "https://your-webhook.com/tavus"
}'{
"replica_id": "r783537ef5",
"status": "training",
"training_progress": "0/100"
}curl https://tavusapi.com/v2/replicas/{replica_id} \
-H "x-api-key: YOUR_API_KEY"trainingcompletederrorcurl https://tavusapi.com/v2/replicas \
-H "x-api-key: YOUR_API_KEY"curl -X DELETE https://tavusapi.com/v2/replicas/{replica_id} \
-H "x-api-key: YOUR_API_KEY"