swk23 / cw-obiwan-live
- Public
- 16 runs
-
H100
Prediction
swk23/cw-obiwan-live:996e1e3e4d771ed51a1906a9de007dc583e7014db47f9c480fe2f6f2110b32e8ID3fdh71azpnrm80cnwfs8hcxf20StatusSucceededSourceWebHardwareH100Total durationCreatedInput
- model
- dev
- prompt
- **Prompt:** A close-up cinematic shot of Obi-Wan Kenobi standing in a quiet chamber of the Jedi Temple during sunset, wearing his white Clone Wars-era Jedi armor. The golden-orange sunlight streams through tall arched windows, casting a warm glow across the room and illuminating the polished surface of his chestplate. Subtle scratches and scuffs on the armor hint at recent battles, while his face remains calm and introspective. The light highlights the contours of his beard and the determined look in his eyes. Behind him, the blurred architecture of the Jedi Temple—stone columns and sacred carvings—adds to the solemn, reflective mood of this quiet moment between wars.
- go_fast
- lora_scale
- 1
- megapixels
- 1
- num_outputs
- 1
- aspect_ratio
- 21:9
- output_format
- jpg
- guidance_scale
- 3
- output_quality
- 80
- prompt_strength
- 0.8
- extra_lora_scale
- 1
- num_inference_steps
- 28
{ "model": "dev", "prompt": "**Prompt:** \nA close-up cinematic shot of Obi-Wan Kenobi standing in a quiet chamber of the Jedi Temple during sunset, wearing his white Clone Wars-era Jedi armor. The golden-orange sunlight streams through tall arched windows, casting a warm glow across the room and illuminating the polished surface of his chestplate. Subtle scratches and scuffs on the armor hint at recent battles, while his face remains calm and introspective. The light highlights the contours of his beard and the determined look in his eyes. Behind him, the blurred architecture of the Jedi Temple—stone columns and sacred carvings—adds to the solemn, reflective mood of this quiet moment between wars.", "go_fast": false, "lora_scale": 1, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "21:9", "output_format": "jpg", "guidance_scale": 3, "output_quality": 80, "prompt_strength": 0.8, "extra_lora_scale": 1, "num_inference_steps": 28 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; import fs from "node:fs"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run swk23/cw-obiwan-live using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "swk23/cw-obiwan-live:996e1e3e4d771ed51a1906a9de007dc583e7014db47f9c480fe2f6f2110b32e8", { input: { model: "dev", prompt: "**Prompt:** \nA close-up cinematic shot of Obi-Wan Kenobi standing in a quiet chamber of the Jedi Temple during sunset, wearing his white Clone Wars-era Jedi armor. The golden-orange sunlight streams through tall arched windows, casting a warm glow across the room and illuminating the polished surface of his chestplate. Subtle scratches and scuffs on the armor hint at recent battles, while his face remains calm and introspective. The light highlights the contours of his beard and the determined look in his eyes. Behind him, the blurred architecture of the Jedi Temple—stone columns and sacred carvings—adds to the solemn, reflective mood of this quiet moment between wars.", go_fast: false, lora_scale: 1, megapixels: "1", num_outputs: 1, aspect_ratio: "21:9", output_format: "jpg", guidance_scale: 3, output_quality: 80, prompt_strength: 0.8, extra_lora_scale: 1, num_inference_steps: 28 } } ); // To access the file URL: console.log(output[0].url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output[0]);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run swk23/cw-obiwan-live using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "swk23/cw-obiwan-live:996e1e3e4d771ed51a1906a9de007dc583e7014db47f9c480fe2f6f2110b32e8", input={ "model": "dev", "prompt": "**Prompt:** \nA close-up cinematic shot of Obi-Wan Kenobi standing in a quiet chamber of the Jedi Temple during sunset, wearing his white Clone Wars-era Jedi armor. The golden-orange sunlight streams through tall arched windows, casting a warm glow across the room and illuminating the polished surface of his chestplate. Subtle scratches and scuffs on the armor hint at recent battles, while his face remains calm and introspective. The light highlights the contours of his beard and the determined look in his eyes. Behind him, the blurred architecture of the Jedi Temple—stone columns and sacred carvings—adds to the solemn, reflective mood of this quiet moment between wars.", "go_fast": False, "lora_scale": 1, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "21:9", "output_format": "jpg", "guidance_scale": 3, "output_quality": 80, "prompt_strength": 0.8, "extra_lora_scale": 1, "num_inference_steps": 28 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run swk23/cw-obiwan-live using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \ -H "Authorization: Bearer $REPLICATE_API_TOKEN" \ -H "Content-Type: application/json" \ -H "Prefer: wait" \ -d $'{ "version": "swk23/cw-obiwan-live:996e1e3e4d771ed51a1906a9de007dc583e7014db47f9c480fe2f6f2110b32e8", "input": { "model": "dev", "prompt": "**Prompt:** \\nA close-up cinematic shot of Obi-Wan Kenobi standing in a quiet chamber of the Jedi Temple during sunset, wearing his white Clone Wars-era Jedi armor. The golden-orange sunlight streams through tall arched windows, casting a warm glow across the room and illuminating the polished surface of his chestplate. Subtle scratches and scuffs on the armor hint at recent battles, while his face remains calm and introspective. The light highlights the contours of his beard and the determined look in his eyes. Behind him, the blurred architecture of the Jedi Temple—stone columns and sacred carvings—adds to the solemn, reflective mood of this quiet moment between wars.", "go_fast": false, "lora_scale": 1, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "21:9", "output_format": "jpg", "guidance_scale": 3, "output_quality": 80, "prompt_strength": 0.8, "extra_lora_scale": 1, "num_inference_steps": 28 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2025-03-29T22:07:57.464889Z", "created_at": "2025-03-29T22:07:47.125000Z", "data_removed": false, "error": null, "id": "3fdh71azpnrm80cnwfs8hcxf20", "input": { "model": "dev", "prompt": "**Prompt:** \nA close-up cinematic shot of Obi-Wan Kenobi standing in a quiet chamber of the Jedi Temple during sunset, wearing his white Clone Wars-era Jedi armor. The golden-orange sunlight streams through tall arched windows, casting a warm glow across the room and illuminating the polished surface of his chestplate. Subtle scratches and scuffs on the armor hint at recent battles, while his face remains calm and introspective. The light highlights the contours of his beard and the determined look in his eyes. Behind him, the blurred architecture of the Jedi Temple—stone columns and sacred carvings—adds to the solemn, reflective mood of this quiet moment between wars.", "go_fast": false, "lora_scale": 1, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "21:9", "output_format": "jpg", "guidance_scale": 3, "output_quality": 80, "prompt_strength": 0.8, "extra_lora_scale": 1, "num_inference_steps": 28 }, "logs": "free=26526793318400\nDownloading weights\n2025-03-29T22:07:47Z | INFO | [ Initiating ] chunk_size=150M dest=/tmp/tmpjnt4cll8/weights url=https://replicate.delivery/xezq/LYAfd4OorKVcLKjecilFXZFZIeSRaQg8e2Br7uYmWthmqH2RB/trained_model.tar\n2025-03-29T22:07:49Z | INFO | [ Complete ] dest=/tmp/tmpjnt4cll8/weights size=\"172 MB\" total_elapsed=2.587s url=https://replicate.delivery/xezq/LYAfd4OorKVcLKjecilFXZFZIeSRaQg8e2Br7uYmWthmqH2RB/trained_model.tar\nDownloaded weights in 2.61s\nLoaded LoRAs in 3.17s\nUsing seed: 17591\nPrompt: **Prompt:**\nA close-up cinematic shot of Obi-Wan Kenobi standing in a quiet chamber of the Jedi Temple during sunset, wearing his white Clone Wars-era Jedi armor. The golden-orange sunlight streams through tall arched windows, casting a warm glow across the room and illuminating the polished surface of his chestplate. Subtle scratches and scuffs on the armor hint at recent battles, while his face remains calm and introspective. The light highlights the contours of his beard and the determined look in his eyes. Behind him, the blurred architecture of the Jedi Temple—stone columns and sacred carvings—adds to the solemn, reflective mood of this quiet moment between wars.\n[!] txt2img mode\n 0%| | 0/28 [00:00<?, ?it/s]\n 4%|▎ | 1/28 [00:00<00:06, 4.03it/s]\n 7%|▋ | 2/28 [00:00<00:05, 4.56it/s]\n 11%|█ | 3/28 [00:00<00:05, 4.30it/s]\n 14%|█▍ | 4/28 [00:00<00:05, 4.19it/s]\n 18%|█▊ | 5/28 [00:01<00:05, 4.13it/s]\n 21%|██▏ | 6/28 [00:01<00:05, 4.10it/s]\n 25%|██▌ | 7/28 [00:01<00:05, 4.08it/s]\n 29%|██▊ | 8/28 [00:01<00:04, 4.06it/s]\n 32%|███▏ | 9/28 [00:02<00:04, 4.05it/s]\n 36%|███▌ | 10/28 [00:02<00:04, 4.04it/s]\n 39%|███▉ | 11/28 [00:02<00:04, 4.04it/s]\n 43%|████▎ | 12/28 [00:02<00:03, 4.04it/s]\n 46%|████▋ | 13/28 [00:03<00:03, 4.04it/s]\n 50%|█████ | 14/28 [00:03<00:03, 4.03it/s]\n 54%|█████▎ | 15/28 [00:03<00:03, 4.03it/s]\n 57%|█████▋ | 16/28 [00:03<00:02, 4.03it/s]\n 61%|██████ | 17/28 [00:04<00:02, 4.03it/s]\n 64%|██████▍ | 18/28 [00:04<00:02, 4.03it/s]\n 68%|██████▊ | 19/28 [00:04<00:02, 4.03it/s]\n 71%|███████▏ | 20/28 [00:04<00:01, 4.03it/s]\n 75%|███████▌ | 21/28 [00:05<00:01, 4.03it/s]\n 79%|███████▊ | 22/28 [00:05<00:01, 4.03it/s]\n 82%|████████▏ | 23/28 [00:05<00:01, 4.03it/s]\n 86%|████████▌ | 24/28 [00:05<00:00, 4.02it/s]\n 89%|████████▉ | 25/28 [00:06<00:00, 4.03it/s]\n 93%|█████████▎| 26/28 [00:06<00:00, 4.03it/s]\n 96%|█████████▋| 27/28 [00:06<00:00, 4.03it/s]\n100%|██████████| 28/28 [00:06<00:00, 4.03it/s]\n100%|██████████| 28/28 [00:06<00:00, 4.06it/s]\nTotal safe images: 1 out of 1", "metrics": { "predict_time": 10.276680524, "total_time": 10.339889 }, "output": [ "https://replicate.delivery/xezq/AJE8K20Cb9IpIxXLUYKAOql6gEcnziM7ljpfksIJS6ieEidUA/out-0.jpg" ], "started_at": "2025-03-29T22:07:47.188208Z", "status": "succeeded", "urls": { "stream": "https://stream.replicate.com/v1/files/bcwr-ykqa7y63bqhjpl674ghc7shljth7sji6xftamcklunwskgcuyqla", "get": "https://api.replicate.com/v1/predictions/3fdh71azpnrm80cnwfs8hcxf20", "cancel": "https://api.replicate.com/v1/predictions/3fdh71azpnrm80cnwfs8hcxf20/cancel" }, "version": "996e1e3e4d771ed51a1906a9de007dc583e7014db47f9c480fe2f6f2110b32e8" }
Generated infree=26526793318400 Downloading weights 2025-03-29T22:07:47Z | INFO | [ Initiating ] chunk_size=150M dest=/tmp/tmpjnt4cll8/weights url=https://replicate.delivery/xezq/LYAfd4OorKVcLKjecilFXZFZIeSRaQg8e2Br7uYmWthmqH2RB/trained_model.tar 2025-03-29T22:07:49Z | INFO | [ Complete ] dest=/tmp/tmpjnt4cll8/weights size="172 MB" total_elapsed=2.587s url=https://replicate.delivery/xezq/LYAfd4OorKVcLKjecilFXZFZIeSRaQg8e2Br7uYmWthmqH2RB/trained_model.tar Downloaded weights in 2.61s Loaded LoRAs in 3.17s Using seed: 17591 Prompt: **Prompt:** A close-up cinematic shot of Obi-Wan Kenobi standing in a quiet chamber of the Jedi Temple during sunset, wearing his white Clone Wars-era Jedi armor. The golden-orange sunlight streams through tall arched windows, casting a warm glow across the room and illuminating the polished surface of his chestplate. Subtle scratches and scuffs on the armor hint at recent battles, while his face remains calm and introspective. The light highlights the contours of his beard and the determined look in his eyes. Behind him, the blurred architecture of the Jedi Temple—stone columns and sacred carvings—adds to the solemn, reflective mood of this quiet moment between wars. [!] txt2img mode 0%| | 0/28 [00:00<?, ?it/s] 4%|▎ | 1/28 [00:00<00:06, 4.03it/s] 7%|▋ | 2/28 [00:00<00:05, 4.56it/s] 11%|█ | 3/28 [00:00<00:05, 4.30it/s] 14%|█▍ | 4/28 [00:00<00:05, 4.19it/s] 18%|█▊ | 5/28 [00:01<00:05, 4.13it/s] 21%|██▏ | 6/28 [00:01<00:05, 4.10it/s] 25%|██▌ | 7/28 [00:01<00:05, 4.08it/s] 29%|██▊ | 8/28 [00:01<00:04, 4.06it/s] 32%|███▏ | 9/28 [00:02<00:04, 4.05it/s] 36%|███▌ | 10/28 [00:02<00:04, 4.04it/s] 39%|███▉ | 11/28 [00:02<00:04, 4.04it/s] 43%|████▎ | 12/28 [00:02<00:03, 4.04it/s] 46%|████▋ | 13/28 [00:03<00:03, 4.04it/s] 50%|█████ | 14/28 [00:03<00:03, 4.03it/s] 54%|█████▎ | 15/28 [00:03<00:03, 4.03it/s] 57%|█████▋ | 16/28 [00:03<00:02, 4.03it/s] 61%|██████ | 17/28 [00:04<00:02, 4.03it/s] 64%|██████▍ | 18/28 [00:04<00:02, 4.03it/s] 68%|██████▊ | 19/28 [00:04<00:02, 4.03it/s] 71%|███████▏ | 20/28 [00:04<00:01, 4.03it/s] 75%|███████▌ | 21/28 [00:05<00:01, 4.03it/s] 79%|███████▊ | 22/28 [00:05<00:01, 4.03it/s] 82%|████████▏ | 23/28 [00:05<00:01, 4.03it/s] 86%|████████▌ | 24/28 [00:05<00:00, 4.02it/s] 89%|████████▉ | 25/28 [00:06<00:00, 4.03it/s] 93%|█████████▎| 26/28 [00:06<00:00, 4.03it/s] 96%|█████████▋| 27/28 [00:06<00:00, 4.03it/s] 100%|██████████| 28/28 [00:06<00:00, 4.03it/s] 100%|██████████| 28/28 [00:06<00:00, 4.06it/s] Total safe images: 1 out of 1
Prediction
swk23/cw-obiwan-live:996e1e3e4d771ed51a1906a9de007dc583e7014db47f9c480fe2f6f2110b32e8IDpevxnvq109rma0cnx2svyt4258StatusSucceededSourceWebHardwareH100Total durationCreatedInput
- model
- dev
- prompt
- Obi-Wan Kenobi stands alone in the Jedi Temple training room, clad in his white clone armor layered over traditional Jedi robes. The room is still, bathed in soft light that highlights the scuffs on the floor and the quiet discipline of the space. His expression is calm but contemplative, arms crossed as he surveys the room with a warrior’s vigilance and a master's quiet reflection. His presence carries the weight of duty, experience, and an ever-growing burden of war.
- go_fast
- lora_scale
- 1
- megapixels
- 1
- num_outputs
- 1
- aspect_ratio
- 21:9
- output_format
- jpg
- guidance_scale
- 3
- output_quality
- 80
- prompt_strength
- 0.8
- extra_lora_scale
- 1
- num_inference_steps
- 28
{ "mask": "https://replicate.delivery/pbxt/Mke6CG1PBMkvh7blcgh5PimvIKn98P5fB761bRoRYtI5WbEm/test.png", "image": "https://replicate.delivery/pbxt/Mke6Buv2OozGTysZTWqnYSSMVY6yROHEG50DPjKPhG9ZjuUF/full.png", "model": "dev", "prompt": "Obi-Wan Kenobi stands alone in the Jedi Temple training room, clad in his white clone armor layered over traditional Jedi robes. The room is still, bathed in soft light that highlights the scuffs on the floor and the quiet discipline of the space. His expression is calm but contemplative, arms crossed as he surveys the room with a warrior’s vigilance and a master's quiet reflection. His presence carries the weight of duty, experience, and an ever-growing burden of war.", "go_fast": false, "lora_scale": 1, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "21:9", "output_format": "jpg", "guidance_scale": 3, "output_quality": 80, "prompt_strength": 0.8, "extra_lora_scale": 1, "num_inference_steps": 28 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; import fs from "node:fs"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run swk23/cw-obiwan-live using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "swk23/cw-obiwan-live:996e1e3e4d771ed51a1906a9de007dc583e7014db47f9c480fe2f6f2110b32e8", { input: { mask: "https://replicate.delivery/pbxt/Mke6CG1PBMkvh7blcgh5PimvIKn98P5fB761bRoRYtI5WbEm/test.png", image: "https://replicate.delivery/pbxt/Mke6Buv2OozGTysZTWqnYSSMVY6yROHEG50DPjKPhG9ZjuUF/full.png", model: "dev", prompt: "Obi-Wan Kenobi stands alone in the Jedi Temple training room, clad in his white clone armor layered over traditional Jedi robes. The room is still, bathed in soft light that highlights the scuffs on the floor and the quiet discipline of the space. His expression is calm but contemplative, arms crossed as he surveys the room with a warrior’s vigilance and a master's quiet reflection. His presence carries the weight of duty, experience, and an ever-growing burden of war.", go_fast: false, lora_scale: 1, megapixels: "1", num_outputs: 1, aspect_ratio: "21:9", output_format: "jpg", guidance_scale: 3, output_quality: 80, prompt_strength: 0.8, extra_lora_scale: 1, num_inference_steps: 28 } } ); // To access the file URL: console.log(output[0].url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output[0]);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run swk23/cw-obiwan-live using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "swk23/cw-obiwan-live:996e1e3e4d771ed51a1906a9de007dc583e7014db47f9c480fe2f6f2110b32e8", input={ "mask": "https://replicate.delivery/pbxt/Mke6CG1PBMkvh7blcgh5PimvIKn98P5fB761bRoRYtI5WbEm/test.png", "image": "https://replicate.delivery/pbxt/Mke6Buv2OozGTysZTWqnYSSMVY6yROHEG50DPjKPhG9ZjuUF/full.png", "model": "dev", "prompt": "Obi-Wan Kenobi stands alone in the Jedi Temple training room, clad in his white clone armor layered over traditional Jedi robes. The room is still, bathed in soft light that highlights the scuffs on the floor and the quiet discipline of the space. His expression is calm but contemplative, arms crossed as he surveys the room with a warrior’s vigilance and a master's quiet reflection. His presence carries the weight of duty, experience, and an ever-growing burden of war.", "go_fast": False, "lora_scale": 1, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "21:9", "output_format": "jpg", "guidance_scale": 3, "output_quality": 80, "prompt_strength": 0.8, "extra_lora_scale": 1, "num_inference_steps": 28 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run swk23/cw-obiwan-live using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \ -H "Authorization: Bearer $REPLICATE_API_TOKEN" \ -H "Content-Type: application/json" \ -H "Prefer: wait" \ -d $'{ "version": "swk23/cw-obiwan-live:996e1e3e4d771ed51a1906a9de007dc583e7014db47f9c480fe2f6f2110b32e8", "input": { "mask": "https://replicate.delivery/pbxt/Mke6CG1PBMkvh7blcgh5PimvIKn98P5fB761bRoRYtI5WbEm/test.png", "image": "https://replicate.delivery/pbxt/Mke6Buv2OozGTysZTWqnYSSMVY6yROHEG50DPjKPhG9ZjuUF/full.png", "model": "dev", "prompt": "Obi-Wan Kenobi stands alone in the Jedi Temple training room, clad in his white clone armor layered over traditional Jedi robes. The room is still, bathed in soft light that highlights the scuffs on the floor and the quiet discipline of the space. His expression is calm but contemplative, arms crossed as he surveys the room with a warrior’s vigilance and a master\'s quiet reflection. His presence carries the weight of duty, experience, and an ever-growing burden of war.", "go_fast": false, "lora_scale": 1, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "21:9", "output_format": "jpg", "guidance_scale": 3, "output_quality": 80, "prompt_strength": 0.8, "extra_lora_scale": 1, "num_inference_steps": 28 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2025-03-30T20:18:02.724514Z", "created_at": "2025-03-30T20:17:37.538000Z", "data_removed": false, "error": null, "id": "pevxnvq109rma0cnx2svyt4258", "input": { "mask": "https://replicate.delivery/pbxt/Mke6CG1PBMkvh7blcgh5PimvIKn98P5fB761bRoRYtI5WbEm/test.png", "image": "https://replicate.delivery/pbxt/Mke6Buv2OozGTysZTWqnYSSMVY6yROHEG50DPjKPhG9ZjuUF/full.png", "model": "dev", "prompt": "Obi-Wan Kenobi stands alone in the Jedi Temple training room, clad in his white clone armor layered over traditional Jedi robes. The room is still, bathed in soft light that highlights the scuffs on the floor and the quiet discipline of the space. His expression is calm but contemplative, arms crossed as he surveys the room with a warrior’s vigilance and a master's quiet reflection. His presence carries the weight of duty, experience, and an ever-growing burden of war.", "go_fast": false, "lora_scale": 1, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "21:9", "output_format": "jpg", "guidance_scale": 3, "output_quality": 80, "prompt_strength": 0.8, "extra_lora_scale": 1, "num_inference_steps": 28 }, "logs": "free=26865699041280\nDownloading weights\n2025-03-30T20:17:37Z | INFO | [ Initiating ] chunk_size=150M dest=/tmp/tmpxo4v4y5g/weights url=https://replicate.delivery/xezq/LYAfd4OorKVcLKjecilFXZFZIeSRaQg8e2Br7uYmWthmqH2RB/trained_model.tar\n2025-03-30T20:17:56Z | INFO | [ Complete ] dest=/tmp/tmpxo4v4y5g/weights size=\"172 MB\" total_elapsed=18.230s url=https://replicate.delivery/xezq/LYAfd4OorKVcLKjecilFXZFZIeSRaQg8e2Br7uYmWthmqH2RB/trained_model.tar\nDownloaded weights in 18.25s\nLoaded LoRAs in 18.81s\nUsing seed: 59950\nPrompt: Obi-Wan Kenobi stands alone in the Jedi Temple training room, clad in his white clone armor layered over traditional Jedi robes. The room is still, bathed in soft light that highlights the scuffs on the floor and the quiet discipline of the space. His expression is calm but contemplative, arms crossed as he surveys the room with a warrior’s vigilance and a master's quiet reflection. His presence carries the weight of duty, experience, and an ever-growing burden of war.\nInput image size: 1536x640\n[!] Resizing input image from 1536x640 to 1440x608\n[!] inpaint mode\n 0%| | 0/23 [00:00<?, ?it/s]\n 4%|▍ | 1/23 [00:00<00:05, 3.74it/s]\n 9%|▊ | 2/23 [00:00<00:05, 4.15it/s]\n 13%|█▎ | 3/23 [00:00<00:04, 4.29it/s]\n 17%|█▋ | 4/23 [00:00<00:04, 4.37it/s]\n 22%|██▏ | 5/23 [00:01<00:04, 4.41it/s]\n 26%|██▌ | 6/23 [00:01<00:03, 4.44it/s]\n 30%|███ | 7/23 [00:01<00:03, 4.46it/s]\n 35%|███▍ | 8/23 [00:01<00:03, 4.47it/s]\n 39%|███▉ | 9/23 [00:02<00:03, 4.47it/s]\n 43%|████▎ | 10/23 [00:02<00:02, 4.48it/s]\n 48%|████▊ | 11/23 [00:02<00:02, 4.48it/s]\n 52%|█████▏ | 12/23 [00:02<00:02, 4.49it/s]\n 57%|█████▋ | 13/23 [00:02<00:02, 4.49it/s]\n 61%|██████ | 14/23 [00:03<00:02, 4.49it/s]\n 65%|██████▌ | 15/23 [00:03<00:01, 4.49it/s]\n 70%|██████▉ | 16/23 [00:03<00:01, 4.49it/s]\n 74%|███████▍ | 17/23 [00:03<00:01, 4.49it/s]\n 78%|███████▊ | 18/23 [00:04<00:01, 4.48it/s]\n 83%|████████▎ | 19/23 [00:04<00:00, 4.49it/s]\n 87%|████████▋ | 20/23 [00:04<00:00, 4.47it/s]\n 91%|█████████▏| 21/23 [00:04<00:00, 4.47it/s]\n 96%|█████████▌| 22/23 [00:04<00:00, 4.47it/s]\n100%|██████████| 23/23 [00:05<00:00, 4.74it/s]\n100%|██████████| 23/23 [00:05<00:00, 4.48it/s]\nTotal safe images: 1 out of 1", "metrics": { "predict_time": 25.145127613, "total_time": 25.186514 }, "output": [ "https://replicate.delivery/xezq/EUMcAPhgYY42DJSG0VdGSZxbpqgiYgG3VZJZlF0numsex6OKA/out-0.jpg" ], "started_at": "2025-03-30T20:17:37.579387Z", "status": "succeeded", "urls": { "stream": "https://stream.replicate.com/v1/files/bcwr-dhuatdgv2jvykg6rsz2mxvusiaxrr4h4myo5bnvwexbdptp7l2uq", "get": "https://api.replicate.com/v1/predictions/pevxnvq109rma0cnx2svyt4258", "cancel": "https://api.replicate.com/v1/predictions/pevxnvq109rma0cnx2svyt4258/cancel" }, "version": "996e1e3e4d771ed51a1906a9de007dc583e7014db47f9c480fe2f6f2110b32e8" }
Generated infree=26865699041280 Downloading weights 2025-03-30T20:17:37Z | INFO | [ Initiating ] chunk_size=150M dest=/tmp/tmpxo4v4y5g/weights url=https://replicate.delivery/xezq/LYAfd4OorKVcLKjecilFXZFZIeSRaQg8e2Br7uYmWthmqH2RB/trained_model.tar 2025-03-30T20:17:56Z | INFO | [ Complete ] dest=/tmp/tmpxo4v4y5g/weights size="172 MB" total_elapsed=18.230s url=https://replicate.delivery/xezq/LYAfd4OorKVcLKjecilFXZFZIeSRaQg8e2Br7uYmWthmqH2RB/trained_model.tar Downloaded weights in 18.25s Loaded LoRAs in 18.81s Using seed: 59950 Prompt: Obi-Wan Kenobi stands alone in the Jedi Temple training room, clad in his white clone armor layered over traditional Jedi robes. The room is still, bathed in soft light that highlights the scuffs on the floor and the quiet discipline of the space. His expression is calm but contemplative, arms crossed as he surveys the room with a warrior’s vigilance and a master's quiet reflection. His presence carries the weight of duty, experience, and an ever-growing burden of war. Input image size: 1536x640 [!] Resizing input image from 1536x640 to 1440x608 [!] inpaint mode 0%| | 0/23 [00:00<?, ?it/s] 4%|▍ | 1/23 [00:00<00:05, 3.74it/s] 9%|▊ | 2/23 [00:00<00:05, 4.15it/s] 13%|█▎ | 3/23 [00:00<00:04, 4.29it/s] 17%|█▋ | 4/23 [00:00<00:04, 4.37it/s] 22%|██▏ | 5/23 [00:01<00:04, 4.41it/s] 26%|██▌ | 6/23 [00:01<00:03, 4.44it/s] 30%|███ | 7/23 [00:01<00:03, 4.46it/s] 35%|███▍ | 8/23 [00:01<00:03, 4.47it/s] 39%|███▉ | 9/23 [00:02<00:03, 4.47it/s] 43%|████▎ | 10/23 [00:02<00:02, 4.48it/s] 48%|████▊ | 11/23 [00:02<00:02, 4.48it/s] 52%|█████▏ | 12/23 [00:02<00:02, 4.49it/s] 57%|█████▋ | 13/23 [00:02<00:02, 4.49it/s] 61%|██████ | 14/23 [00:03<00:02, 4.49it/s] 65%|██████▌ | 15/23 [00:03<00:01, 4.49it/s] 70%|██████▉ | 16/23 [00:03<00:01, 4.49it/s] 74%|███████▍ | 17/23 [00:03<00:01, 4.49it/s] 78%|███████▊ | 18/23 [00:04<00:01, 4.48it/s] 83%|████████▎ | 19/23 [00:04<00:00, 4.49it/s] 87%|████████▋ | 20/23 [00:04<00:00, 4.47it/s] 91%|█████████▏| 21/23 [00:04<00:00, 4.47it/s] 96%|█████████▌| 22/23 [00:04<00:00, 4.47it/s] 100%|██████████| 23/23 [00:05<00:00, 4.74it/s] 100%|██████████| 23/23 [00:05<00:00, 4.48it/s] Total safe images: 1 out of 1
Prediction
swk23/cw-obiwan-live:996e1e3e4d771ed51a1906a9de007dc583e7014db47f9c480fe2f6f2110b32e8IDm88v6m9kc1rme0cnx35agnqtdcStatusSucceededSourceWebHardwareH100Total durationCreatedInput
- model
- dev
- prompt
- Obi-Wan Kenobi stands alone in the Jedi Temple training room, clad in his white clone armor layered over traditional Jedi robes.
- go_fast
- lora_scale
- 1
- megapixels
- 1
- num_outputs
- 1
- aspect_ratio
- 21:9
- output_format
- jpg
- guidance_scale
- 3
- output_quality
- 80
- prompt_strength
- 0.8
- extra_lora_scale
- 1
- num_inference_steps
- 28
{ "mask": "https://replicate.delivery/pbxt/MkeTGNmNbFXWqafioU1OiDlsiF4KH2fACUTE1AqxOeFjyn5g/test.png", "image": "https://replicate.delivery/pbxt/MkeTIQ5Aqy4o1aiasGjiSvBREJgCeViljvfWt4HEANeXhIEz/full.png", "model": "dev", "prompt": "Obi-Wan Kenobi stands alone in the Jedi Temple training room, clad in his white clone armor layered over traditional Jedi robes. ", "go_fast": false, "lora_scale": 1, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "21:9", "output_format": "jpg", "guidance_scale": 3, "output_quality": 80, "prompt_strength": 0.8, "extra_lora_scale": 1, "num_inference_steps": 28 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; import fs from "node:fs"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run swk23/cw-obiwan-live using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "swk23/cw-obiwan-live:996e1e3e4d771ed51a1906a9de007dc583e7014db47f9c480fe2f6f2110b32e8", { input: { mask: "https://replicate.delivery/pbxt/MkeTGNmNbFXWqafioU1OiDlsiF4KH2fACUTE1AqxOeFjyn5g/test.png", image: "https://replicate.delivery/pbxt/MkeTIQ5Aqy4o1aiasGjiSvBREJgCeViljvfWt4HEANeXhIEz/full.png", model: "dev", prompt: "Obi-Wan Kenobi stands alone in the Jedi Temple training room, clad in his white clone armor layered over traditional Jedi robes. ", go_fast: false, lora_scale: 1, megapixels: "1", num_outputs: 1, aspect_ratio: "21:9", output_format: "jpg", guidance_scale: 3, output_quality: 80, prompt_strength: 0.8, extra_lora_scale: 1, num_inference_steps: 28 } } ); // To access the file URL: console.log(output[0].url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output[0]);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run swk23/cw-obiwan-live using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "swk23/cw-obiwan-live:996e1e3e4d771ed51a1906a9de007dc583e7014db47f9c480fe2f6f2110b32e8", input={ "mask": "https://replicate.delivery/pbxt/MkeTGNmNbFXWqafioU1OiDlsiF4KH2fACUTE1AqxOeFjyn5g/test.png", "image": "https://replicate.delivery/pbxt/MkeTIQ5Aqy4o1aiasGjiSvBREJgCeViljvfWt4HEANeXhIEz/full.png", "model": "dev", "prompt": "Obi-Wan Kenobi stands alone in the Jedi Temple training room, clad in his white clone armor layered over traditional Jedi robes. ", "go_fast": False, "lora_scale": 1, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "21:9", "output_format": "jpg", "guidance_scale": 3, "output_quality": 80, "prompt_strength": 0.8, "extra_lora_scale": 1, "num_inference_steps": 28 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run swk23/cw-obiwan-live using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \ -H "Authorization: Bearer $REPLICATE_API_TOKEN" \ -H "Content-Type: application/json" \ -H "Prefer: wait" \ -d $'{ "version": "swk23/cw-obiwan-live:996e1e3e4d771ed51a1906a9de007dc583e7014db47f9c480fe2f6f2110b32e8", "input": { "mask": "https://replicate.delivery/pbxt/MkeTGNmNbFXWqafioU1OiDlsiF4KH2fACUTE1AqxOeFjyn5g/test.png", "image": "https://replicate.delivery/pbxt/MkeTIQ5Aqy4o1aiasGjiSvBREJgCeViljvfWt4HEANeXhIEz/full.png", "model": "dev", "prompt": "Obi-Wan Kenobi stands alone in the Jedi Temple training room, clad in his white clone armor layered over traditional Jedi robes. ", "go_fast": false, "lora_scale": 1, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "21:9", "output_format": "jpg", "guidance_scale": 3, "output_quality": 80, "prompt_strength": 0.8, "extra_lora_scale": 1, "num_inference_steps": 28 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2025-03-30T20:42:10.155707Z", "created_at": "2025-03-30T20:42:00.416000Z", "data_removed": false, "error": null, "id": "m88v6m9kc1rme0cnx35agnqtdc", "input": { "mask": "https://replicate.delivery/pbxt/MkeTGNmNbFXWqafioU1OiDlsiF4KH2fACUTE1AqxOeFjyn5g/test.png", "image": "https://replicate.delivery/pbxt/MkeTIQ5Aqy4o1aiasGjiSvBREJgCeViljvfWt4HEANeXhIEz/full.png", "model": "dev", "prompt": "Obi-Wan Kenobi stands alone in the Jedi Temple training room, clad in his white clone armor layered over traditional Jedi robes. ", "go_fast": false, "lora_scale": 1, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "21:9", "output_format": "jpg", "guidance_scale": 3, "output_quality": 80, "prompt_strength": 0.8, "extra_lora_scale": 1, "num_inference_steps": 28 }, "logs": "free=28470177751040\nDownloading weights\n2025-03-30T20:42:02Z | INFO | [ Initiating ] chunk_size=150M dest=/tmp/tmpxssw3e0b/weights url=https://replicate.delivery/xezq/LYAfd4OorKVcLKjecilFXZFZIeSRaQg8e2Br7uYmWthmqH2RB/trained_model.tar\n2025-03-30T20:42:04Z | INFO | [ Complete ] dest=/tmp/tmpxssw3e0b/weights size=\"172 MB\" total_elapsed=2.017s url=https://replicate.delivery/xezq/LYAfd4OorKVcLKjecilFXZFZIeSRaQg8e2Br7uYmWthmqH2RB/trained_model.tar\nDownloaded weights in 2.04s\nLoaded LoRAs in 2.60s\nUsing seed: 18337\nPrompt: Obi-Wan Kenobi stands alone in the Jedi Temple training room, clad in his white clone armor layered over traditional Jedi robes.\nInput image size: 1536x640\n[!] Resizing input image from 1536x640 to 1440x608\n[!] inpaint mode\n 0%| | 0/23 [00:00<?, ?it/s]\n 4%|▍ | 1/23 [00:00<00:05, 3.78it/s]\n 9%|▊ | 2/23 [00:00<00:05, 4.19it/s]\n 13%|█▎ | 3/23 [00:00<00:04, 4.34it/s]\n 17%|█▋ | 4/23 [00:00<00:04, 4.42it/s]\n 22%|██▏ | 5/23 [00:01<00:04, 4.46it/s]\n 26%|██▌ | 6/23 [00:01<00:03, 4.48it/s]\n 30%|███ | 7/23 [00:01<00:03, 4.50it/s]\n 35%|███▍ | 8/23 [00:01<00:03, 4.51it/s]\n 39%|███▉ | 9/23 [00:02<00:03, 4.52it/s]\n 43%|████▎ | 10/23 [00:02<00:02, 4.52it/s]\n 48%|████▊ | 11/23 [00:02<00:02, 4.53it/s]\n 52%|█████▏ | 12/23 [00:02<00:02, 4.53it/s]\n 57%|█████▋ | 13/23 [00:02<00:02, 4.53it/s]\n 61%|██████ | 14/23 [00:03<00:01, 4.53it/s]\n 65%|██████▌ | 15/23 [00:03<00:01, 4.53it/s]\n 70%|██████▉ | 16/23 [00:03<00:01, 4.53it/s]\n 74%|███████▍ | 17/23 [00:03<00:01, 4.53it/s]\n 78%|███████▊ | 18/23 [00:04<00:01, 4.53it/s]\n 83%|████████▎ | 19/23 [00:04<00:00, 4.53it/s]\n 87%|████████▋ | 20/23 [00:04<00:00, 4.53it/s]\n 91%|█████████▏| 21/23 [00:04<00:00, 4.53it/s]\n 96%|█████████▌| 22/23 [00:04<00:00, 4.53it/s]\n100%|██████████| 23/23 [00:05<00:00, 4.80it/s]\n100%|██████████| 23/23 [00:05<00:00, 4.53it/s]\nTotal safe images: 1 out of 1", "metrics": { "predict_time": 8.237305152, "total_time": 9.739707 }, "output": [ "https://replicate.delivery/xezq/2YxuJ88JfLy6Nip47CEjnvsaiNCgxXFMoQOO5jsjmwAR96OKA/out-0.jpg" ], "started_at": "2025-03-30T20:42:01.918402Z", "status": "succeeded", "urls": { "stream": "https://stream.replicate.com/v1/files/bcwr-djfdismrs67rcuol55sumthrtkhb24itbckpnq7emddzln77luyq", "get": "https://api.replicate.com/v1/predictions/m88v6m9kc1rme0cnx35agnqtdc", "cancel": "https://api.replicate.com/v1/predictions/m88v6m9kc1rme0cnx35agnqtdc/cancel" }, "version": "996e1e3e4d771ed51a1906a9de007dc583e7014db47f9c480fe2f6f2110b32e8" }
Generated infree=28470177751040 Downloading weights 2025-03-30T20:42:02Z | INFO | [ Initiating ] chunk_size=150M dest=/tmp/tmpxssw3e0b/weights url=https://replicate.delivery/xezq/LYAfd4OorKVcLKjecilFXZFZIeSRaQg8e2Br7uYmWthmqH2RB/trained_model.tar 2025-03-30T20:42:04Z | INFO | [ Complete ] dest=/tmp/tmpxssw3e0b/weights size="172 MB" total_elapsed=2.017s url=https://replicate.delivery/xezq/LYAfd4OorKVcLKjecilFXZFZIeSRaQg8e2Br7uYmWthmqH2RB/trained_model.tar Downloaded weights in 2.04s Loaded LoRAs in 2.60s Using seed: 18337 Prompt: Obi-Wan Kenobi stands alone in the Jedi Temple training room, clad in his white clone armor layered over traditional Jedi robes. Input image size: 1536x640 [!] Resizing input image from 1536x640 to 1440x608 [!] inpaint mode 0%| | 0/23 [00:00<?, ?it/s] 4%|▍ | 1/23 [00:00<00:05, 3.78it/s] 9%|▊ | 2/23 [00:00<00:05, 4.19it/s] 13%|█▎ | 3/23 [00:00<00:04, 4.34it/s] 17%|█▋ | 4/23 [00:00<00:04, 4.42it/s] 22%|██▏ | 5/23 [00:01<00:04, 4.46it/s] 26%|██▌ | 6/23 [00:01<00:03, 4.48it/s] 30%|███ | 7/23 [00:01<00:03, 4.50it/s] 35%|███▍ | 8/23 [00:01<00:03, 4.51it/s] 39%|███▉ | 9/23 [00:02<00:03, 4.52it/s] 43%|████▎ | 10/23 [00:02<00:02, 4.52it/s] 48%|████▊ | 11/23 [00:02<00:02, 4.53it/s] 52%|█████▏ | 12/23 [00:02<00:02, 4.53it/s] 57%|█████▋ | 13/23 [00:02<00:02, 4.53it/s] 61%|██████ | 14/23 [00:03<00:01, 4.53it/s] 65%|██████▌ | 15/23 [00:03<00:01, 4.53it/s] 70%|██████▉ | 16/23 [00:03<00:01, 4.53it/s] 74%|███████▍ | 17/23 [00:03<00:01, 4.53it/s] 78%|███████▊ | 18/23 [00:04<00:01, 4.53it/s] 83%|████████▎ | 19/23 [00:04<00:00, 4.53it/s] 87%|████████▋ | 20/23 [00:04<00:00, 4.53it/s] 91%|█████████▏| 21/23 [00:04<00:00, 4.53it/s] 96%|█████████▌| 22/23 [00:04<00:00, 4.53it/s] 100%|██████████| 23/23 [00:05<00:00, 4.80it/s] 100%|██████████| 23/23 [00:05<00:00, 4.53it/s] Total safe images: 1 out of 1
Want to make some of these yourself?
Run this model