fulbertsmart / fulbert
- Public
- 89 runs
-
H100
Prediction
fulbertsmart/fulbert:fa806a081b89bfd111cd6d30bde9bcd4309a5e8a3b1f9504d77e7cbde7899f69ID4h0mg1cdd1rme0cq74jtrvf34mStatusSucceededSourceWebHardwareH100Total durationCreatedInput
- model
- dev
- prompt
- A photo of fulbert , standing with arms crossed in a powerful pose, intense gaze directed at the camera, slight confident smile, eyes looking straight into the lens. --ar 3:4 -- raw style --Subject wearing a textured light grey three-piece suit with a subtle houndstooth pattern, a crisp white shirt with fine blue stripes, and a burgundy silk tie featuring a geometric diamond pattern. --Accessories: luxury silver watch with black dial and metal bracelet, white pocket square with a thin blue border in the chest pocket. --Environment: White House office in Washington. --Lighting: professional studio setup with main key light from the front-left, subtle fill light to eliminate harsh shadows, rim light to separate the subject from the background. --Camera angle: head and torso framing, eye-level perspective, centered composition. --Composition: perfectly centered subject, rule of thirds applied with eyes directly aligned with the lens, symmetrical balance, strong vertical presence. --Post-processing: high-definition commercial quality, slight color grading for a warm professional tone, enhanced contrast to emphasize fabric texture. --Details: focus on facial features and suit fabric texture, visible skin pores and textile detail. --Refinement: extra attention to facial definition and suit material; clear rendering of skin and clothing texture.
- go_fast
- lora_scale
- 1
- megapixels
- 1
- num_outputs
- 1
- aspect_ratio
- 4:3
- output_format
- jpg
- guidance_scale
- 3
- output_quality
- 100
- prompt_strength
- 0.8
- extra_lora_scale
- 1
- num_inference_steps
- 28
{ "model": "dev", "prompt": "A photo of fulbert , standing with arms crossed in a powerful pose, intense gaze directed at the camera, slight confident smile, eyes looking straight into the lens.\n--ar 3:4 -- raw style\n--Subject wearing a textured light grey three-piece suit with a subtle houndstooth pattern, a crisp white shirt with fine blue stripes, and a burgundy silk tie featuring a geometric diamond pattern.\n--Accessories: luxury silver watch with black dial and metal bracelet, white pocket square with a thin blue border in the chest pocket.\n--Environment: White House office in Washington.\n--Lighting: professional studio setup with main key light from the front-left, subtle fill light to eliminate harsh shadows, rim light to separate the subject from the background.\n--Camera angle: head and torso framing, eye-level perspective, centered composition.\n--Composition: perfectly centered subject, rule of thirds applied with eyes directly aligned with the lens, symmetrical balance, strong vertical presence.\n--Post-processing: high-definition commercial quality, slight color grading for a warm professional tone, enhanced contrast to emphasize fabric texture.\n--Details: focus on facial features and suit fabric texture, visible skin pores and textile detail.\n--Refinement: extra attention to facial definition and suit material; clear rendering of skin and clothing texture.", "go_fast": false, "lora_scale": 1, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "4:3", "output_format": "jpg", "guidance_scale": 3, "output_quality": 100, "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 fulbertsmart/fulbert using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "fulbertsmart/fulbert:fa806a081b89bfd111cd6d30bde9bcd4309a5e8a3b1f9504d77e7cbde7899f69", { input: { model: "dev", prompt: "A photo of fulbert , standing with arms crossed in a powerful pose, intense gaze directed at the camera, slight confident smile, eyes looking straight into the lens.\n--ar 3:4 -- raw style\n--Subject wearing a textured light grey three-piece suit with a subtle houndstooth pattern, a crisp white shirt with fine blue stripes, and a burgundy silk tie featuring a geometric diamond pattern.\n--Accessories: luxury silver watch with black dial and metal bracelet, white pocket square with a thin blue border in the chest pocket.\n--Environment: White House office in Washington.\n--Lighting: professional studio setup with main key light from the front-left, subtle fill light to eliminate harsh shadows, rim light to separate the subject from the background.\n--Camera angle: head and torso framing, eye-level perspective, centered composition.\n--Composition: perfectly centered subject, rule of thirds applied with eyes directly aligned with the lens, symmetrical balance, strong vertical presence.\n--Post-processing: high-definition commercial quality, slight color grading for a warm professional tone, enhanced contrast to emphasize fabric texture.\n--Details: focus on facial features and suit fabric texture, visible skin pores and textile detail.\n--Refinement: extra attention to facial definition and suit material; clear rendering of skin and clothing texture.", go_fast: false, lora_scale: 1, megapixels: "1", num_outputs: 1, aspect_ratio: "4:3", output_format: "jpg", guidance_scale: 3, output_quality: 100, 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 fulbertsmart/fulbert using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "fulbertsmart/fulbert:fa806a081b89bfd111cd6d30bde9bcd4309a5e8a3b1f9504d77e7cbde7899f69", input={ "model": "dev", "prompt": "A photo of fulbert , standing with arms crossed in a powerful pose, intense gaze directed at the camera, slight confident smile, eyes looking straight into the lens.\n--ar 3:4 -- raw style\n--Subject wearing a textured light grey three-piece suit with a subtle houndstooth pattern, a crisp white shirt with fine blue stripes, and a burgundy silk tie featuring a geometric diamond pattern.\n--Accessories: luxury silver watch with black dial and metal bracelet, white pocket square with a thin blue border in the chest pocket.\n--Environment: White House office in Washington.\n--Lighting: professional studio setup with main key light from the front-left, subtle fill light to eliminate harsh shadows, rim light to separate the subject from the background.\n--Camera angle: head and torso framing, eye-level perspective, centered composition.\n--Composition: perfectly centered subject, rule of thirds applied with eyes directly aligned with the lens, symmetrical balance, strong vertical presence.\n--Post-processing: high-definition commercial quality, slight color grading for a warm professional tone, enhanced contrast to emphasize fabric texture.\n--Details: focus on facial features and suit fabric texture, visible skin pores and textile detail.\n--Refinement: extra attention to facial definition and suit material; clear rendering of skin and clothing texture.", "go_fast": False, "lora_scale": 1, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "4:3", "output_format": "jpg", "guidance_scale": 3, "output_quality": 100, "prompt_strength": 0.8, "extra_lora_scale": 1, "num_inference_steps": 28 } ) # To access the file URL: print(output[0].url()) #=> "http://example.com" # To write the file to disk: with open("my-image.png", "wb") as file: file.write(output[0].read())
To learn more, take a look at the guide on getting started with Python.
Run fulbertsmart/fulbert 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": "fulbertsmart/fulbert:fa806a081b89bfd111cd6d30bde9bcd4309a5e8a3b1f9504d77e7cbde7899f69", "input": { "model": "dev", "prompt": "A photo of fulbert , standing with arms crossed in a powerful pose, intense gaze directed at the camera, slight confident smile, eyes looking straight into the lens.\\n--ar 3:4 -- raw style\\n--Subject wearing a textured light grey three-piece suit with a subtle houndstooth pattern, a crisp white shirt with fine blue stripes, and a burgundy silk tie featuring a geometric diamond pattern.\\n--Accessories: luxury silver watch with black dial and metal bracelet, white pocket square with a thin blue border in the chest pocket.\\n--Environment: White House office in Washington.\\n--Lighting: professional studio setup with main key light from the front-left, subtle fill light to eliminate harsh shadows, rim light to separate the subject from the background.\\n--Camera angle: head and torso framing, eye-level perspective, centered composition.\\n--Composition: perfectly centered subject, rule of thirds applied with eyes directly aligned with the lens, symmetrical balance, strong vertical presence.\\n--Post-processing: high-definition commercial quality, slight color grading for a warm professional tone, enhanced contrast to emphasize fabric texture.\\n--Details: focus on facial features and suit fabric texture, visible skin pores and textile detail.\\n--Refinement: extra attention to facial definition and suit material; clear rendering of skin and clothing texture.", "go_fast": false, "lora_scale": 1, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "4:3", "output_format": "jpg", "guidance_scale": 3, "output_quality": 100, "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-06-04T04:14:19.892125Z", "created_at": "2025-06-04T04:14:11.816000Z", "data_removed": false, "error": null, "id": "4h0mg1cdd1rme0cq74jtrvf34m", "input": { "model": "dev", "prompt": "A photo of fulbert , standing with arms crossed in a powerful pose, intense gaze directed at the camera, slight confident smile, eyes looking straight into the lens.\n--ar 3:4 -- raw style\n--Subject wearing a textured light grey three-piece suit with a subtle houndstooth pattern, a crisp white shirt with fine blue stripes, and a burgundy silk tie featuring a geometric diamond pattern.\n--Accessories: luxury silver watch with black dial and metal bracelet, white pocket square with a thin blue border in the chest pocket.\n--Environment: White House office in Washington.\n--Lighting: professional studio setup with main key light from the front-left, subtle fill light to eliminate harsh shadows, rim light to separate the subject from the background.\n--Camera angle: head and torso framing, eye-level perspective, centered composition.\n--Composition: perfectly centered subject, rule of thirds applied with eyes directly aligned with the lens, symmetrical balance, strong vertical presence.\n--Post-processing: high-definition commercial quality, slight color grading for a warm professional tone, enhanced contrast to emphasize fabric texture.\n--Details: focus on facial features and suit fabric texture, visible skin pores and textile detail.\n--Refinement: extra attention to facial definition and suit material; clear rendering of skin and clothing texture.", "go_fast": false, "lora_scale": 1, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "4:3", "output_format": "jpg", "guidance_scale": 3, "output_quality": 100, "prompt_strength": 0.8, "extra_lora_scale": 1, "num_inference_steps": 28 }, "logs": "Loaded LoRAs in 0.57s\nUsing seed: 63157\nPrompt: A photo of fulbert , standing with arms crossed in a powerful pose, intense gaze directed at the camera, slight confident smile, eyes looking straight into the lens.\n--ar 3:4 -- raw style\n--Subject wearing a textured light grey three-piece suit with a subtle houndstooth pattern, a crisp white shirt with fine blue stripes, and a burgundy silk tie featuring a geometric diamond pattern.\n--Accessories: luxury silver watch with black dial and metal bracelet, white pocket square with a thin blue border in the chest pocket.\n--Environment: White House office in Washington.\n--Lighting: professional studio setup with main key light from the front-left, subtle fill light to eliminate harsh shadows, rim light to separate the subject from the background.\n--Camera angle: head and torso framing, eye-level perspective, centered composition.\n--Composition: perfectly centered subject, rule of thirds applied with eyes directly aligned with the lens, symmetrical balance, strong vertical presence.\n--Post-processing: high-definition commercial quality, slight color grading for a warm professional tone, enhanced contrast to emphasize fabric texture.\n--Details: focus on facial features and suit fabric texture, visible skin pores and textile detail.\n--Refinement: extra attention to facial definition and suit material; clear rendering of skin and clothing texture.\n[!] txt2img mode\n 0%| | 0/28 [00:00<?, ?it/s]\n 4%|▎ | 1/28 [00:00<00:07, 3.85it/s]\n 7%|▋ | 2/28 [00:00<00:05, 4.36it/s]\n 11%|█ | 3/28 [00:00<00:06, 4.11it/s]\n 14%|█▍ | 4/28 [00:00<00:06, 4.00it/s]\n 18%|█▊ | 5/28 [00:01<00:05, 3.94it/s]\n 21%|██▏ | 6/28 [00:01<00:05, 3.90it/s]\n 25%|██▌ | 7/28 [00:01<00:05, 3.88it/s]\n 29%|██▊ | 8/28 [00:02<00:05, 3.86it/s]\n 32%|███▏ | 9/28 [00:02<00:04, 3.86it/s]\n 36%|███▌ | 10/28 [00:02<00:04, 3.85it/s]\n 39%|███▉ | 11/28 [00:02<00:04, 3.85it/s]\n 43%|████▎ | 12/28 [00:03<00:04, 3.84it/s]\n 46%|████▋ | 13/28 [00:03<00:03, 3.84it/s]\n 50%|█████ | 14/28 [00:03<00:03, 3.83it/s]\n 54%|█████▎ | 15/28 [00:03<00:03, 3.83it/s]\n 57%|█████▋ | 16/28 [00:04<00:03, 3.83it/s]\n 61%|██████ | 17/28 [00:04<00:02, 3.83it/s]\n 64%|██████▍ | 18/28 [00:04<00:02, 3.83it/s]\n 68%|██████▊ | 19/28 [00:04<00:02, 3.83it/s]\n 71%|███████▏ | 20/28 [00:05<00:02, 3.83it/s]\n 75%|███████▌ | 21/28 [00:05<00:01, 3.83it/s]\n 79%|███████▊ | 22/28 [00:05<00:01, 3.83it/s]\n 82%|████████▏ | 23/28 [00:05<00:01, 3.83it/s]\n 86%|████████▌ | 24/28 [00:06<00:01, 3.83it/s]\n 89%|████████▉ | 25/28 [00:06<00:00, 3.83it/s]\n 93%|█████████▎| 26/28 [00:06<00:00, 3.83it/s]\n 96%|█████████▋| 27/28 [00:06<00:00, 3.83it/s]\n100%|██████████| 28/28 [00:07<00:00, 3.83it/s]\n100%|██████████| 28/28 [00:07<00:00, 3.86it/s]\nTotal safe images: 1 out of 1", "metrics": { "predict_time": 8.053632516, "total_time": 8.076125 }, "output": [ "https://replicate.delivery/xezq/kwfyv7iWeFoT50zywUyTWaeQH4eHMwXfMj8V7HIy956ZD9amC/out-0.jpg" ], "started_at": "2025-06-04T04:14:11.838492Z", "status": "succeeded", "urls": { "stream": "https://stream.replicate.com/v1/files/bcwr-u23og2uern3v73ghknmt5qsnczijx62zvpp43f47syw26mjw2mlq", "get": "https://api.replicate.com/v1/predictions/4h0mg1cdd1rme0cq74jtrvf34m", "cancel": "https://api.replicate.com/v1/predictions/4h0mg1cdd1rme0cq74jtrvf34m/cancel" }, "version": "fa806a081b89bfd111cd6d30bde9bcd4309a5e8a3b1f9504d77e7cbde7899f69" }
Generated inLoaded LoRAs in 0.57s Using seed: 63157 Prompt: A photo of fulbert , standing with arms crossed in a powerful pose, intense gaze directed at the camera, slight confident smile, eyes looking straight into the lens. --ar 3:4 -- raw style --Subject wearing a textured light grey three-piece suit with a subtle houndstooth pattern, a crisp white shirt with fine blue stripes, and a burgundy silk tie featuring a geometric diamond pattern. --Accessories: luxury silver watch with black dial and metal bracelet, white pocket square with a thin blue border in the chest pocket. --Environment: White House office in Washington. --Lighting: professional studio setup with main key light from the front-left, subtle fill light to eliminate harsh shadows, rim light to separate the subject from the background. --Camera angle: head and torso framing, eye-level perspective, centered composition. --Composition: perfectly centered subject, rule of thirds applied with eyes directly aligned with the lens, symmetrical balance, strong vertical presence. --Post-processing: high-definition commercial quality, slight color grading for a warm professional tone, enhanced contrast to emphasize fabric texture. --Details: focus on facial features and suit fabric texture, visible skin pores and textile detail. --Refinement: extra attention to facial definition and suit material; clear rendering of skin and clothing texture. [!] txt2img mode 0%| | 0/28 [00:00<?, ?it/s] 4%|▎ | 1/28 [00:00<00:07, 3.85it/s] 7%|▋ | 2/28 [00:00<00:05, 4.36it/s] 11%|█ | 3/28 [00:00<00:06, 4.11it/s] 14%|█▍ | 4/28 [00:00<00:06, 4.00it/s] 18%|█▊ | 5/28 [00:01<00:05, 3.94it/s] 21%|██▏ | 6/28 [00:01<00:05, 3.90it/s] 25%|██▌ | 7/28 [00:01<00:05, 3.88it/s] 29%|██▊ | 8/28 [00:02<00:05, 3.86it/s] 32%|███▏ | 9/28 [00:02<00:04, 3.86it/s] 36%|███▌ | 10/28 [00:02<00:04, 3.85it/s] 39%|███▉ | 11/28 [00:02<00:04, 3.85it/s] 43%|████▎ | 12/28 [00:03<00:04, 3.84it/s] 46%|████▋ | 13/28 [00:03<00:03, 3.84it/s] 50%|█████ | 14/28 [00:03<00:03, 3.83it/s] 54%|█████▎ | 15/28 [00:03<00:03, 3.83it/s] 57%|█████▋ | 16/28 [00:04<00:03, 3.83it/s] 61%|██████ | 17/28 [00:04<00:02, 3.83it/s] 64%|██████▍ | 18/28 [00:04<00:02, 3.83it/s] 68%|██████▊ | 19/28 [00:04<00:02, 3.83it/s] 71%|███████▏ | 20/28 [00:05<00:02, 3.83it/s] 75%|███████▌ | 21/28 [00:05<00:01, 3.83it/s] 79%|███████▊ | 22/28 [00:05<00:01, 3.83it/s] 82%|████████▏ | 23/28 [00:05<00:01, 3.83it/s] 86%|████████▌ | 24/28 [00:06<00:01, 3.83it/s] 89%|████████▉ | 25/28 [00:06<00:00, 3.83it/s] 93%|█████████▎| 26/28 [00:06<00:00, 3.83it/s] 96%|█████████▋| 27/28 [00:06<00:00, 3.83it/s] 100%|██████████| 28/28 [00:07<00:00, 3.83it/s] 100%|██████████| 28/28 [00:07<00:00, 3.86it/s] Total safe images: 1 out of 1
Prediction
fulbertsmart/fulbert:fa806a081b89bfd111cd6d30bde9bcd4309a5e8a3b1f9504d77e7cbde7899f69IDhj55k5xbwsrmc0cq74qbgapzcwStatusSucceededSourceWebHardwareH100Total durationCreatedInput
- model
- dev
- prompt
- a photo of fulbert, a well-groomed man with short, dark-cropped hair and trimmed beard, wearing rectangular black eyeglasses, sitting at a round black table, working on a sleek black MacBook. He has a focused and confident facial expression, with fair skin and a clean, smooth complexion. His posture is upright and professional. --ar 2:3 --style raw --subject wearing a dark charcoal textured suit jacket over a crisp white shirt --accessories black-framed glasses, Apple iPhone placed flat on the table --environment modern office interior with a geometric black-and-white rug, large ceiling tiles, panoramic windows with bright daylight diffusion, a black curved wall with vertical indoor plants in the background, and three exposed filament bulbs hanging from the ceiling --lighting natural daylight mixed with warm ambient lighting from Edison bulbs, creating soft highlights and gentle shadows --camera angle eye-level frontal shot --composition rule of thirds, subject centered slightly left, bulbs forming a triangle above subject, blurred background for depth --post-processing high-definition clarity, natural skin tones, slight contrast boost, gentle sharpening, clean color grading --details highly detailed textures on clothing and skin, subtle background bokeh, sharp focus on subject's face and hands --quality high-end corporate photography, simulated 85mm lens, f/1.8 aperture, ISO 200, 1/125s shutter speed, high dynamic range, professional full-frame DSLR simulation
- go_fast
- lora_scale
- 1
- megapixels
- 1
- num_outputs
- 1
- aspect_ratio
- 3:4
- output_format
- jpg
- guidance_scale
- 3
- output_quality
- 100
- prompt_strength
- 0.8
- extra_lora_scale
- 1
- num_inference_steps
- 28
{ "model": "dev", "prompt": "a photo of fulbert, a well-groomed man with short, dark-cropped hair and trimmed beard, wearing rectangular black eyeglasses, sitting at a round black table, working on a sleek black MacBook. He has a focused and confident facial expression, with fair skin and a clean, smooth complexion. His posture is upright and professional. --ar 2:3 --style raw --subject wearing a dark charcoal textured suit jacket over a crisp white shirt --accessories black-framed glasses, Apple iPhone placed flat on the table --environment modern office interior with a geometric black-and-white rug, large ceiling tiles, panoramic windows with bright daylight diffusion, a black curved wall with vertical indoor plants in the background, and three exposed filament bulbs hanging from the ceiling --lighting natural daylight mixed with warm ambient lighting from Edison bulbs, creating soft highlights and gentle shadows --camera angle eye-level frontal shot --composition rule of thirds, subject centered slightly left, bulbs forming a triangle above subject, blurred background for depth --post-processing high-definition clarity, natural skin tones, slight contrast boost, gentle sharpening, clean color grading --details highly detailed textures on clothing and skin, subtle background bokeh, sharp focus on subject's face and hands --quality high-end corporate photography, simulated 85mm lens, f/1.8 aperture, ISO 200, 1/125s shutter speed, high dynamic range, professional full-frame DSLR simulation", "go_fast": false, "lora_scale": 1, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "3:4", "output_format": "jpg", "guidance_scale": 3, "output_quality": 100, "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 fulbertsmart/fulbert using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "fulbertsmart/fulbert:fa806a081b89bfd111cd6d30bde9bcd4309a5e8a3b1f9504d77e7cbde7899f69", { input: { model: "dev", prompt: "a photo of fulbert, a well-groomed man with short, dark-cropped hair and trimmed beard, wearing rectangular black eyeglasses, sitting at a round black table, working on a sleek black MacBook. He has a focused and confident facial expression, with fair skin and a clean, smooth complexion. His posture is upright and professional. --ar 2:3 --style raw --subject wearing a dark charcoal textured suit jacket over a crisp white shirt --accessories black-framed glasses, Apple iPhone placed flat on the table --environment modern office interior with a geometric black-and-white rug, large ceiling tiles, panoramic windows with bright daylight diffusion, a black curved wall with vertical indoor plants in the background, and three exposed filament bulbs hanging from the ceiling --lighting natural daylight mixed with warm ambient lighting from Edison bulbs, creating soft highlights and gentle shadows --camera angle eye-level frontal shot --composition rule of thirds, subject centered slightly left, bulbs forming a triangle above subject, blurred background for depth --post-processing high-definition clarity, natural skin tones, slight contrast boost, gentle sharpening, clean color grading --details highly detailed textures on clothing and skin, subtle background bokeh, sharp focus on subject's face and hands --quality high-end corporate photography, simulated 85mm lens, f/1.8 aperture, ISO 200, 1/125s shutter speed, high dynamic range, professional full-frame DSLR simulation", go_fast: false, lora_scale: 1, megapixels: "1", num_outputs: 1, aspect_ratio: "3:4", output_format: "jpg", guidance_scale: 3, output_quality: 100, 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 fulbertsmart/fulbert using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "fulbertsmart/fulbert:fa806a081b89bfd111cd6d30bde9bcd4309a5e8a3b1f9504d77e7cbde7899f69", input={ "model": "dev", "prompt": "a photo of fulbert, a well-groomed man with short, dark-cropped hair and trimmed beard, wearing rectangular black eyeglasses, sitting at a round black table, working on a sleek black MacBook. He has a focused and confident facial expression, with fair skin and a clean, smooth complexion. His posture is upright and professional. --ar 2:3 --style raw --subject wearing a dark charcoal textured suit jacket over a crisp white shirt --accessories black-framed glasses, Apple iPhone placed flat on the table --environment modern office interior with a geometric black-and-white rug, large ceiling tiles, panoramic windows with bright daylight diffusion, a black curved wall with vertical indoor plants in the background, and three exposed filament bulbs hanging from the ceiling --lighting natural daylight mixed with warm ambient lighting from Edison bulbs, creating soft highlights and gentle shadows --camera angle eye-level frontal shot --composition rule of thirds, subject centered slightly left, bulbs forming a triangle above subject, blurred background for depth --post-processing high-definition clarity, natural skin tones, slight contrast boost, gentle sharpening, clean color grading --details highly detailed textures on clothing and skin, subtle background bokeh, sharp focus on subject's face and hands --quality high-end corporate photography, simulated 85mm lens, f/1.8 aperture, ISO 200, 1/125s shutter speed, high dynamic range, professional full-frame DSLR simulation", "go_fast": False, "lora_scale": 1, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "3:4", "output_format": "jpg", "guidance_scale": 3, "output_quality": 100, "prompt_strength": 0.8, "extra_lora_scale": 1, "num_inference_steps": 28 } ) # To access the file URL: print(output[0].url()) #=> "http://example.com" # To write the file to disk: with open("my-image.png", "wb") as file: file.write(output[0].read())
To learn more, take a look at the guide on getting started with Python.
Run fulbertsmart/fulbert 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": "fulbertsmart/fulbert:fa806a081b89bfd111cd6d30bde9bcd4309a5e8a3b1f9504d77e7cbde7899f69", "input": { "model": "dev", "prompt": "a photo of fulbert, a well-groomed man with short, dark-cropped hair and trimmed beard, wearing rectangular black eyeglasses, sitting at a round black table, working on a sleek black MacBook. He has a focused and confident facial expression, with fair skin and a clean, smooth complexion. His posture is upright and professional. --ar 2:3 --style raw --subject wearing a dark charcoal textured suit jacket over a crisp white shirt --accessories black-framed glasses, Apple iPhone placed flat on the table --environment modern office interior with a geometric black-and-white rug, large ceiling tiles, panoramic windows with bright daylight diffusion, a black curved wall with vertical indoor plants in the background, and three exposed filament bulbs hanging from the ceiling --lighting natural daylight mixed with warm ambient lighting from Edison bulbs, creating soft highlights and gentle shadows --camera angle eye-level frontal shot --composition rule of thirds, subject centered slightly left, bulbs forming a triangle above subject, blurred background for depth --post-processing high-definition clarity, natural skin tones, slight contrast boost, gentle sharpening, clean color grading --details highly detailed textures on clothing and skin, subtle background bokeh, sharp focus on subject\'s face and hands --quality high-end corporate photography, simulated 85mm lens, f/1.8 aperture, ISO 200, 1/125s shutter speed, high dynamic range, professional full-frame DSLR simulation", "go_fast": false, "lora_scale": 1, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "3:4", "output_format": "jpg", "guidance_scale": 3, "output_quality": 100, "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-06-04T04:24:17.873736Z", "created_at": "2025-06-04T04:24:09.446000Z", "data_removed": false, "error": null, "id": "hj55k5xbwsrmc0cq74qbgapzcw", "input": { "model": "dev", "prompt": "a photo of fulbert, a well-groomed man with short, dark-cropped hair and trimmed beard, wearing rectangular black eyeglasses, sitting at a round black table, working on a sleek black MacBook. He has a focused and confident facial expression, with fair skin and a clean, smooth complexion. His posture is upright and professional. --ar 2:3 --style raw --subject wearing a dark charcoal textured suit jacket over a crisp white shirt --accessories black-framed glasses, Apple iPhone placed flat on the table --environment modern office interior with a geometric black-and-white rug, large ceiling tiles, panoramic windows with bright daylight diffusion, a black curved wall with vertical indoor plants in the background, and three exposed filament bulbs hanging from the ceiling --lighting natural daylight mixed with warm ambient lighting from Edison bulbs, creating soft highlights and gentle shadows --camera angle eye-level frontal shot --composition rule of thirds, subject centered slightly left, bulbs forming a triangle above subject, blurred background for depth --post-processing high-definition clarity, natural skin tones, slight contrast boost, gentle sharpening, clean color grading --details highly detailed textures on clothing and skin, subtle background bokeh, sharp focus on subject's face and hands --quality high-end corporate photography, simulated 85mm lens, f/1.8 aperture, ISO 200, 1/125s shutter speed, high dynamic range, professional full-frame DSLR simulation", "go_fast": false, "lora_scale": 1, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "3:4", "output_format": "jpg", "guidance_scale": 3, "output_quality": 100, "prompt_strength": 0.8, "extra_lora_scale": 1, "num_inference_steps": 28 }, "logs": "free=25840004517888\nDownloading weights\n2025-06-04T04:24:09Z | INFO | [ Initiating ] chunk_size=150M dest=/tmp/tmp7d7u860g/weights url=https://replicate.delivery/xezq/Soofk1wRnPVpUSORpMNOvQC521DoUeTEhRwfS2Rt7IaVzumpA/trained_model.tar\n2025-06-04T04:24:09Z | INFO | [ Cache Service ] enabled=true scheme=http target=hermes.services.svc.cluster.local\n2025-06-04T04:24:09Z | INFO | [ Cache URL Rewrite ] enabled=true target_url=http://hermes.services.svc.cluster.local/replicate.delivery/xezq/Soofk1wRnPVpUSORpMNOvQC521DoUeTEhRwfS2Rt7IaVzumpA/trained_model.tar url=https://replicate.delivery/xezq/Soofk1wRnPVpUSORpMNOvQC521DoUeTEhRwfS2Rt7IaVzumpA/trained_model.tar\n2025-06-04T04:24:09Z | INFO | [ Redirect ] redirect_url=http://r8-east4-loras-ric1.cwlota.com/871f49be9089c61c84f63d46956fc86ba354f6a64cec27baf3bdd12602c78df3?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Checksum-Mode=ENABLED&X-Amz-Credential=CWNZUVKLDHXVHEZN%2F20250604%2FUS-EAST-04A%2Fs3%2Faws4_request&X-Amz-Date=20250604T042409Z&X-Amz-Expires=600&X-Amz-SignedHeaders=host&x-id=GetObject&X-Amz-Signature=795027c167a8bf68ba10bf5c49a17b54ad59e026a0feabb4dfa8ec977bbd77c7 url=http://hermes.services.svc.cluster.local/replicate.delivery/xezq/Soofk1wRnPVpUSORpMNOvQC521DoUeTEhRwfS2Rt7IaVzumpA/trained_model.tar\n2025-06-04T04:24:09Z | INFO | [ Complete ] dest=/tmp/tmp7d7u860g/weights size=\"172 MB\" total_elapsed=0.227s url=https://replicate.delivery/xezq/Soofk1wRnPVpUSORpMNOvQC521DoUeTEhRwfS2Rt7IaVzumpA/trained_model.tar\nDownloaded weights in 0.29s\nLoaded LoRAs in 0.86s\nUsing seed: 11539\nPrompt: a photo of fulbert, a well-groomed man with short, dark-cropped hair and trimmed beard, wearing rectangular black eyeglasses, sitting at a round black table, working on a sleek black MacBook. He has a focused and confident facial expression, with fair skin and a clean, smooth complexion. His posture is upright and professional. --ar 2:3 --style raw --subject wearing a dark charcoal textured suit jacket over a crisp white shirt --accessories black-framed glasses, Apple iPhone placed flat on the table --environment modern office interior with a geometric black-and-white rug, large ceiling tiles, panoramic windows with bright daylight diffusion, a black curved wall with vertical indoor plants in the background, and three exposed filament bulbs hanging from the ceiling --lighting natural daylight mixed with warm ambient lighting from Edison bulbs, creating soft highlights and gentle shadows --camera angle eye-level frontal shot --composition rule of thirds, subject centered slightly left, bulbs forming a triangle above subject, blurred background for depth --post-processing high-definition clarity, natural skin tones, slight contrast boost, gentle sharpening, clean color grading --details highly detailed textures on clothing and skin, subtle background bokeh, sharp focus on subject's face and hands --quality high-end corporate photography, simulated 85mm lens, f/1.8 aperture, ISO 200, 1/125s shutter speed, high dynamic range, professional full-frame DSLR simulation\n[!] txt2img mode\n 0%| | 0/28 [00:00<?, ?it/s]\n 4%|▎ | 1/28 [00:00<00:07, 3.82it/s]\n 7%|▋ | 2/28 [00:00<00:06, 4.32it/s]\n 11%|█ | 3/28 [00:00<00:06, 4.08it/s]\n 14%|█▍ | 4/28 [00:00<00:06, 3.97it/s]\n 18%|█▊ | 5/28 [00:01<00:05, 3.92it/s]\n 21%|██▏ | 6/28 [00:01<00:05, 3.89it/s]\n 25%|██▌ | 7/28 [00:01<00:05, 3.86it/s]\n 29%|██▊ | 8/28 [00:02<00:05, 3.85it/s]\n 32%|███▏ | 9/28 [00:02<00:04, 3.84it/s]\n 36%|███▌ | 10/28 [00:02<00:04, 3.84it/s]\n 39%|███▉ | 11/28 [00:02<00:04, 3.83it/s]\n 43%|████▎ | 12/28 [00:03<00:04, 3.83it/s]\n 46%|████▋ | 13/28 [00:03<00:03, 3.82it/s]\n 50%|█████ | 14/28 [00:03<00:03, 3.82it/s]\n 54%|█████▎ | 15/28 [00:03<00:03, 3.82it/s]\n 57%|█████▋ | 16/28 [00:04<00:03, 3.82it/s]\n 61%|██████ | 17/28 [00:04<00:02, 3.82it/s]\n 64%|██████▍ | 18/28 [00:04<00:02, 3.83it/s]\n 68%|██████▊ | 19/28 [00:04<00:02, 3.82it/s]\n 71%|███████▏ | 20/28 [00:05<00:02, 3.82it/s]\n 75%|███████▌ | 21/28 [00:05<00:01, 3.83it/s]\n 79%|███████▊ | 22/28 [00:05<00:01, 3.83it/s]\n 82%|████████▏ | 23/28 [00:05<00:01, 3.82it/s]\n 86%|████████▌ | 24/28 [00:06<00:01, 3.82it/s]\n 89%|████████▉ | 25/28 [00:06<00:00, 3.82it/s]\n 93%|█████████▎| 26/28 [00:06<00:00, 3.82it/s]\n 96%|█████████▋| 27/28 [00:07<00:00, 3.82it/s]\n100%|██████████| 28/28 [00:07<00:00, 3.82it/s]\n100%|██████████| 28/28 [00:07<00:00, 3.85it/s]\nTotal safe images: 1 out of 1", "metrics": { "predict_time": 8.365302803, "total_time": 8.427736 }, "output": [ "https://replicate.delivery/xezq/Rk6sPN9hABaEC922HepFJPiceNt3kTh5GTaV6r2fVASjjvmpA/out-0.jpg" ], "started_at": "2025-06-04T04:24:09.508433Z", "status": "succeeded", "urls": { "stream": "https://stream.replicate.com/v1/files/bcwr-dagknwkwcp7254wows7gas5cxvtjtmwaqyldugcr7xhniqnsymqq", "get": "https://api.replicate.com/v1/predictions/hj55k5xbwsrmc0cq74qbgapzcw", "cancel": "https://api.replicate.com/v1/predictions/hj55k5xbwsrmc0cq74qbgapzcw/cancel" }, "version": "fa806a081b89bfd111cd6d30bde9bcd4309a5e8a3b1f9504d77e7cbde7899f69" }
Generated infree=25840004517888 Downloading weights 2025-06-04T04:24:09Z | INFO | [ Initiating ] chunk_size=150M dest=/tmp/tmp7d7u860g/weights url=https://replicate.delivery/xezq/Soofk1wRnPVpUSORpMNOvQC521DoUeTEhRwfS2Rt7IaVzumpA/trained_model.tar 2025-06-04T04:24:09Z | INFO | [ Cache Service ] enabled=true scheme=http target=hermes.services.svc.cluster.local 2025-06-04T04:24:09Z | INFO | [ Cache URL Rewrite ] enabled=true target_url=http://hermes.services.svc.cluster.local/replicate.delivery/xezq/Soofk1wRnPVpUSORpMNOvQC521DoUeTEhRwfS2Rt7IaVzumpA/trained_model.tar url=https://replicate.delivery/xezq/Soofk1wRnPVpUSORpMNOvQC521DoUeTEhRwfS2Rt7IaVzumpA/trained_model.tar 2025-06-04T04:24:09Z | INFO | [ Redirect ] redirect_url=http://r8-east4-loras-ric1.cwlota.com/871f49be9089c61c84f63d46956fc86ba354f6a64cec27baf3bdd12602c78df3?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Checksum-Mode=ENABLED&X-Amz-Credential=CWNZUVKLDHXVHEZN%2F20250604%2FUS-EAST-04A%2Fs3%2Faws4_request&X-Amz-Date=20250604T042409Z&X-Amz-Expires=600&X-Amz-SignedHeaders=host&x-id=GetObject&X-Amz-Signature=795027c167a8bf68ba10bf5c49a17b54ad59e026a0feabb4dfa8ec977bbd77c7 url=http://hermes.services.svc.cluster.local/replicate.delivery/xezq/Soofk1wRnPVpUSORpMNOvQC521DoUeTEhRwfS2Rt7IaVzumpA/trained_model.tar 2025-06-04T04:24:09Z | INFO | [ Complete ] dest=/tmp/tmp7d7u860g/weights size="172 MB" total_elapsed=0.227s url=https://replicate.delivery/xezq/Soofk1wRnPVpUSORpMNOvQC521DoUeTEhRwfS2Rt7IaVzumpA/trained_model.tar Downloaded weights in 0.29s Loaded LoRAs in 0.86s Using seed: 11539 Prompt: a photo of fulbert, a well-groomed man with short, dark-cropped hair and trimmed beard, wearing rectangular black eyeglasses, sitting at a round black table, working on a sleek black MacBook. He has a focused and confident facial expression, with fair skin and a clean, smooth complexion. His posture is upright and professional. --ar 2:3 --style raw --subject wearing a dark charcoal textured suit jacket over a crisp white shirt --accessories black-framed glasses, Apple iPhone placed flat on the table --environment modern office interior with a geometric black-and-white rug, large ceiling tiles, panoramic windows with bright daylight diffusion, a black curved wall with vertical indoor plants in the background, and three exposed filament bulbs hanging from the ceiling --lighting natural daylight mixed with warm ambient lighting from Edison bulbs, creating soft highlights and gentle shadows --camera angle eye-level frontal shot --composition rule of thirds, subject centered slightly left, bulbs forming a triangle above subject, blurred background for depth --post-processing high-definition clarity, natural skin tones, slight contrast boost, gentle sharpening, clean color grading --details highly detailed textures on clothing and skin, subtle background bokeh, sharp focus on subject's face and hands --quality high-end corporate photography, simulated 85mm lens, f/1.8 aperture, ISO 200, 1/125s shutter speed, high dynamic range, professional full-frame DSLR simulation [!] txt2img mode 0%| | 0/28 [00:00<?, ?it/s] 4%|▎ | 1/28 [00:00<00:07, 3.82it/s] 7%|▋ | 2/28 [00:00<00:06, 4.32it/s] 11%|█ | 3/28 [00:00<00:06, 4.08it/s] 14%|█▍ | 4/28 [00:00<00:06, 3.97it/s] 18%|█▊ | 5/28 [00:01<00:05, 3.92it/s] 21%|██▏ | 6/28 [00:01<00:05, 3.89it/s] 25%|██▌ | 7/28 [00:01<00:05, 3.86it/s] 29%|██▊ | 8/28 [00:02<00:05, 3.85it/s] 32%|███▏ | 9/28 [00:02<00:04, 3.84it/s] 36%|███▌ | 10/28 [00:02<00:04, 3.84it/s] 39%|███▉ | 11/28 [00:02<00:04, 3.83it/s] 43%|████▎ | 12/28 [00:03<00:04, 3.83it/s] 46%|████▋ | 13/28 [00:03<00:03, 3.82it/s] 50%|█████ | 14/28 [00:03<00:03, 3.82it/s] 54%|█████▎ | 15/28 [00:03<00:03, 3.82it/s] 57%|█████▋ | 16/28 [00:04<00:03, 3.82it/s] 61%|██████ | 17/28 [00:04<00:02, 3.82it/s] 64%|██████▍ | 18/28 [00:04<00:02, 3.83it/s] 68%|██████▊ | 19/28 [00:04<00:02, 3.82it/s] 71%|███████▏ | 20/28 [00:05<00:02, 3.82it/s] 75%|███████▌ | 21/28 [00:05<00:01, 3.83it/s] 79%|███████▊ | 22/28 [00:05<00:01, 3.83it/s] 82%|████████▏ | 23/28 [00:05<00:01, 3.82it/s] 86%|████████▌ | 24/28 [00:06<00:01, 3.82it/s] 89%|████████▉ | 25/28 [00:06<00:00, 3.82it/s] 93%|█████████▎| 26/28 [00:06<00:00, 3.82it/s] 96%|█████████▋| 27/28 [00:07<00:00, 3.82it/s] 100%|██████████| 28/28 [00:07<00:00, 3.82it/s] 100%|██████████| 28/28 [00:07<00:00, 3.85it/s] Total safe images: 1 out of 1
Prediction
fulbertsmart/fulbert:fa806a081b89bfd111cd6d30bde9bcd4309a5e8a3b1f9504d77e7cbde7899f69ID7ayv76h2sxrm80cq74qsec7fdcStatusSucceededSourceWebHardwareH100Total durationCreatedInput
- model
- dev
- prompt
- a photo of fulbert, a well-groomed man with short, dark-cropped hair and trimmed beard, wearing rectangular black eyeglasses, sitting at a round black table, working on a sleek black MacBook. He has a focused and confident facial expression, with fair skin and a clean, smooth complexion. His posture is upright and professional. --ar 2:3 --style raw --subject wearing a dark charcoal textured suit jacket over a crisp white shirt --accessories black-framed glasses, Apple iPhone placed flat on the table --environment modern office interior with a geometric black-and-white rug, large ceiling tiles, panoramic windows with bright daylight diffusion, a black curved wall with vertical indoor plants in the background, and three exposed filament bulbs hanging from the ceiling --lighting natural daylight mixed with warm ambient lighting from Edison bulbs, creating soft highlights and gentle shadows --camera angle eye-level frontal shot --composition rule of thirds, subject centered slightly left, bulbs forming a triangle above subject, blurred background for depth --post-processing high-definition clarity, natural skin tones, slight contrast boost, gentle sharpening, clean color grading --details highly detailed textures on clothing and skin, subtle background bokeh, sharp focus on subject's face and hands --quality high-end corporate photography, simulated 85mm lens, f/1.8 aperture, ISO 200, 1/125s shutter speed, high dynamic range, professional full-frame DSLR simulation
- go_fast
- lora_scale
- 1
- megapixels
- 1
- num_outputs
- 1
- aspect_ratio
- 3:4
- output_format
- jpg
- guidance_scale
- 3
- output_quality
- 100
- prompt_strength
- 0.8
- extra_lora_scale
- 1
- num_inference_steps
- 28
{ "model": "dev", "prompt": "a photo of fulbert, a well-groomed man with short, dark-cropped hair and trimmed beard, wearing rectangular black eyeglasses, sitting at a round black table, working on a sleek black MacBook. He has a focused and confident facial expression, with fair skin and a clean, smooth complexion. His posture is upright and professional. --ar 2:3 --style raw --subject wearing a dark charcoal textured suit jacket over a crisp white shirt --accessories black-framed glasses, Apple iPhone placed flat on the table --environment modern office interior with a geometric black-and-white rug, large ceiling tiles, panoramic windows with bright daylight diffusion, a black curved wall with vertical indoor plants in the background, and three exposed filament bulbs hanging from the ceiling --lighting natural daylight mixed with warm ambient lighting from Edison bulbs, creating soft highlights and gentle shadows --camera angle eye-level frontal shot --composition rule of thirds, subject centered slightly left, bulbs forming a triangle above subject, blurred background for depth --post-processing high-definition clarity, natural skin tones, slight contrast boost, gentle sharpening, clean color grading --details highly detailed textures on clothing and skin, subtle background bokeh, sharp focus on subject's face and hands --quality high-end corporate photography, simulated 85mm lens, f/1.8 aperture, ISO 200, 1/125s shutter speed, high dynamic range, professional full-frame DSLR simulation", "go_fast": false, "lora_scale": 1, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "3:4", "output_format": "jpg", "guidance_scale": 3, "output_quality": 100, "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 fulbertsmart/fulbert using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "fulbertsmart/fulbert:fa806a081b89bfd111cd6d30bde9bcd4309a5e8a3b1f9504d77e7cbde7899f69", { input: { model: "dev", prompt: "a photo of fulbert, a well-groomed man with short, dark-cropped hair and trimmed beard, wearing rectangular black eyeglasses, sitting at a round black table, working on a sleek black MacBook. He has a focused and confident facial expression, with fair skin and a clean, smooth complexion. His posture is upright and professional. --ar 2:3 --style raw --subject wearing a dark charcoal textured suit jacket over a crisp white shirt --accessories black-framed glasses, Apple iPhone placed flat on the table --environment modern office interior with a geometric black-and-white rug, large ceiling tiles, panoramic windows with bright daylight diffusion, a black curved wall with vertical indoor plants in the background, and three exposed filament bulbs hanging from the ceiling --lighting natural daylight mixed with warm ambient lighting from Edison bulbs, creating soft highlights and gentle shadows --camera angle eye-level frontal shot --composition rule of thirds, subject centered slightly left, bulbs forming a triangle above subject, blurred background for depth --post-processing high-definition clarity, natural skin tones, slight contrast boost, gentle sharpening, clean color grading --details highly detailed textures on clothing and skin, subtle background bokeh, sharp focus on subject's face and hands --quality high-end corporate photography, simulated 85mm lens, f/1.8 aperture, ISO 200, 1/125s shutter speed, high dynamic range, professional full-frame DSLR simulation", go_fast: false, lora_scale: 1, megapixels: "1", num_outputs: 1, aspect_ratio: "3:4", output_format: "jpg", guidance_scale: 3, output_quality: 100, 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 fulbertsmart/fulbert using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "fulbertsmart/fulbert:fa806a081b89bfd111cd6d30bde9bcd4309a5e8a3b1f9504d77e7cbde7899f69", input={ "model": "dev", "prompt": "a photo of fulbert, a well-groomed man with short, dark-cropped hair and trimmed beard, wearing rectangular black eyeglasses, sitting at a round black table, working on a sleek black MacBook. He has a focused and confident facial expression, with fair skin and a clean, smooth complexion. His posture is upright and professional. --ar 2:3 --style raw --subject wearing a dark charcoal textured suit jacket over a crisp white shirt --accessories black-framed glasses, Apple iPhone placed flat on the table --environment modern office interior with a geometric black-and-white rug, large ceiling tiles, panoramic windows with bright daylight diffusion, a black curved wall with vertical indoor plants in the background, and three exposed filament bulbs hanging from the ceiling --lighting natural daylight mixed with warm ambient lighting from Edison bulbs, creating soft highlights and gentle shadows --camera angle eye-level frontal shot --composition rule of thirds, subject centered slightly left, bulbs forming a triangle above subject, blurred background for depth --post-processing high-definition clarity, natural skin tones, slight contrast boost, gentle sharpening, clean color grading --details highly detailed textures on clothing and skin, subtle background bokeh, sharp focus on subject's face and hands --quality high-end corporate photography, simulated 85mm lens, f/1.8 aperture, ISO 200, 1/125s shutter speed, high dynamic range, professional full-frame DSLR simulation", "go_fast": False, "lora_scale": 1, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "3:4", "output_format": "jpg", "guidance_scale": 3, "output_quality": 100, "prompt_strength": 0.8, "extra_lora_scale": 1, "num_inference_steps": 28 } ) # To access the file URL: print(output[0].url()) #=> "http://example.com" # To write the file to disk: with open("my-image.png", "wb") as file: file.write(output[0].read())
To learn more, take a look at the guide on getting started with Python.
Run fulbertsmart/fulbert 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": "fulbertsmart/fulbert:fa806a081b89bfd111cd6d30bde9bcd4309a5e8a3b1f9504d77e7cbde7899f69", "input": { "model": "dev", "prompt": "a photo of fulbert, a well-groomed man with short, dark-cropped hair and trimmed beard, wearing rectangular black eyeglasses, sitting at a round black table, working on a sleek black MacBook. He has a focused and confident facial expression, with fair skin and a clean, smooth complexion. His posture is upright and professional. --ar 2:3 --style raw --subject wearing a dark charcoal textured suit jacket over a crisp white shirt --accessories black-framed glasses, Apple iPhone placed flat on the table --environment modern office interior with a geometric black-and-white rug, large ceiling tiles, panoramic windows with bright daylight diffusion, a black curved wall with vertical indoor plants in the background, and three exposed filament bulbs hanging from the ceiling --lighting natural daylight mixed with warm ambient lighting from Edison bulbs, creating soft highlights and gentle shadows --camera angle eye-level frontal shot --composition rule of thirds, subject centered slightly left, bulbs forming a triangle above subject, blurred background for depth --post-processing high-definition clarity, natural skin tones, slight contrast boost, gentle sharpening, clean color grading --details highly detailed textures on clothing and skin, subtle background bokeh, sharp focus on subject\'s face and hands --quality high-end corporate photography, simulated 85mm lens, f/1.8 aperture, ISO 200, 1/125s shutter speed, high dynamic range, professional full-frame DSLR simulation", "go_fast": false, "lora_scale": 1, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "3:4", "output_format": "jpg", "guidance_scale": 3, "output_quality": 100, "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-06-04T04:24:48.443384Z", "created_at": "2025-06-04T04:24:39.887000Z", "data_removed": false, "error": null, "id": "7ayv76h2sxrm80cq74qsec7fdc", "input": { "model": "dev", "prompt": "a photo of fulbert, a well-groomed man with short, dark-cropped hair and trimmed beard, wearing rectangular black eyeglasses, sitting at a round black table, working on a sleek black MacBook. He has a focused and confident facial expression, with fair skin and a clean, smooth complexion. His posture is upright and professional. --ar 2:3 --style raw --subject wearing a dark charcoal textured suit jacket over a crisp white shirt --accessories black-framed glasses, Apple iPhone placed flat on the table --environment modern office interior with a geometric black-and-white rug, large ceiling tiles, panoramic windows with bright daylight diffusion, a black curved wall with vertical indoor plants in the background, and three exposed filament bulbs hanging from the ceiling --lighting natural daylight mixed with warm ambient lighting from Edison bulbs, creating soft highlights and gentle shadows --camera angle eye-level frontal shot --composition rule of thirds, subject centered slightly left, bulbs forming a triangle above subject, blurred background for depth --post-processing high-definition clarity, natural skin tones, slight contrast boost, gentle sharpening, clean color grading --details highly detailed textures on clothing and skin, subtle background bokeh, sharp focus on subject's face and hands --quality high-end corporate photography, simulated 85mm lens, f/1.8 aperture, ISO 200, 1/125s shutter speed, high dynamic range, professional full-frame DSLR simulation", "go_fast": false, "lora_scale": 1, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "3:4", "output_format": "jpg", "guidance_scale": 3, "output_quality": 100, "prompt_strength": 0.8, "extra_lora_scale": 1, "num_inference_steps": 28 }, "logs": "free=25972714336256\nDownloading weights\n2025-06-04T04:24:40Z | INFO | [ Initiating ] chunk_size=150M dest=/tmp/tmpvj3wxxuu/weights url=https://replicate.delivery/xezq/Soofk1wRnPVpUSORpMNOvQC521DoUeTEhRwfS2Rt7IaVzumpA/trained_model.tar\n2025-06-04T04:24:40Z | INFO | [ Cache Service ] enabled=true scheme=http target=hermes.services.svc.cluster.local\n2025-06-04T04:24:40Z | INFO | [ Cache URL Rewrite ] enabled=true target_url=http://hermes.services.svc.cluster.local/replicate.delivery/xezq/Soofk1wRnPVpUSORpMNOvQC521DoUeTEhRwfS2Rt7IaVzumpA/trained_model.tar url=https://replicate.delivery/xezq/Soofk1wRnPVpUSORpMNOvQC521DoUeTEhRwfS2Rt7IaVzumpA/trained_model.tar\n2025-06-04T04:24:40Z | INFO | [ Redirect ] redirect_url=http://r8-east4-loras-ric1.cwlota.com/871f49be9089c61c84f63d46956fc86ba354f6a64cec27baf3bdd12602c78df3?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Checksum-Mode=ENABLED&X-Amz-Credential=CWNZUVKLDHXVHEZN%2F20250604%2FUS-EAST-04A%2Fs3%2Faws4_request&X-Amz-Date=20250604T042440Z&X-Amz-Expires=600&X-Amz-SignedHeaders=host&x-id=GetObject&X-Amz-Signature=847a0978db09f6bd87db13e677efca9a432bef3e89985f1d5e79fa2602b6bb52 url=http://hermes.services.svc.cluster.local/replicate.delivery/xezq/Soofk1wRnPVpUSORpMNOvQC521DoUeTEhRwfS2Rt7IaVzumpA/trained_model.tar\n2025-06-04T04:24:40Z | INFO | [ Complete ] dest=/tmp/tmpvj3wxxuu/weights size=\"172 MB\" total_elapsed=0.223s url=https://replicate.delivery/xezq/Soofk1wRnPVpUSORpMNOvQC521DoUeTEhRwfS2Rt7IaVzumpA/trained_model.tar\nDownloaded weights in 0.29s\nLoaded LoRAs in 0.84s\nUsing seed: 40403\nPrompt: a photo of fulbert, a well-groomed man with short, dark-cropped hair and trimmed beard, wearing rectangular black eyeglasses, sitting at a round black table, working on a sleek black MacBook. He has a focused and confident facial expression, with fair skin and a clean, smooth complexion. His posture is upright and professional. --ar 2:3 --style raw --subject wearing a dark charcoal textured suit jacket over a crisp white shirt --accessories black-framed glasses, Apple iPhone placed flat on the table --environment modern office interior with a geometric black-and-white rug, large ceiling tiles, panoramic windows with bright daylight diffusion, a black curved wall with vertical indoor plants in the background, and three exposed filament bulbs hanging from the ceiling --lighting natural daylight mixed with warm ambient lighting from Edison bulbs, creating soft highlights and gentle shadows --camera angle eye-level frontal shot --composition rule of thirds, subject centered slightly left, bulbs forming a triangle above subject, blurred background for depth --post-processing high-definition clarity, natural skin tones, slight contrast boost, gentle sharpening, clean color grading --details highly detailed textures on clothing and skin, subtle background bokeh, sharp focus on subject's face and hands --quality high-end corporate photography, simulated 85mm lens, f/1.8 aperture, ISO 200, 1/125s shutter speed, high dynamic range, professional full-frame DSLR simulation\n[!] txt2img mode\n 0%| | 0/28 [00:00<?, ?it/s]\n 4%|▎ | 1/28 [00:00<00:07, 3.83it/s]\n 7%|▋ | 2/28 [00:00<00:05, 4.34it/s]\n 11%|█ | 3/28 [00:00<00:06, 4.11it/s]\n 14%|█▍ | 4/28 [00:00<00:05, 4.00it/s]\n 18%|█▊ | 5/28 [00:01<00:05, 3.95it/s]\n 21%|██▏ | 6/28 [00:01<00:05, 3.91it/s]\n 25%|██▌ | 7/28 [00:01<00:05, 3.89it/s]\n 29%|██▊ | 8/28 [00:02<00:05, 3.88it/s]\n 32%|███▏ | 9/28 [00:02<00:04, 3.87it/s]\n 36%|███▌ | 10/28 [00:02<00:04, 3.86it/s]\n 39%|███▉ | 11/28 [00:02<00:04, 3.85it/s]\n 43%|████▎ | 12/28 [00:03<00:04, 3.85it/s]\n 46%|████▋ | 13/28 [00:03<00:03, 3.85it/s]\n 50%|█████ | 14/28 [00:03<00:03, 3.85it/s]\n 54%|█████▎ | 15/28 [00:03<00:03, 3.84it/s]\n 57%|█████▋ | 16/28 [00:04<00:03, 3.84it/s]\n 61%|██████ | 17/28 [00:04<00:02, 3.84it/s]\n 64%|██████▍ | 18/28 [00:04<00:02, 3.84it/s]\n 68%|██████▊ | 19/28 [00:04<00:02, 3.85it/s]\n 71%|███████▏ | 20/28 [00:05<00:02, 3.85it/s]\n 75%|███████▌ | 21/28 [00:05<00:01, 3.85it/s]\n 79%|███████▊ | 22/28 [00:05<00:01, 3.85it/s]\n 82%|████████▏ | 23/28 [00:05<00:01, 3.85it/s]\n 86%|████████▌ | 24/28 [00:06<00:01, 3.85it/s]\n 89%|████████▉ | 25/28 [00:06<00:00, 3.85it/s]\n 93%|█████████▎| 26/28 [00:06<00:00, 3.85it/s]\n 96%|█████████▋| 27/28 [00:06<00:00, 3.85it/s]\n100%|██████████| 28/28 [00:07<00:00, 3.85it/s]\n100%|██████████| 28/28 [00:07<00:00, 3.88it/s]\nTotal safe images: 1 out of 1", "metrics": { "predict_time": 8.289395107, "total_time": 8.556384 }, "output": [ "https://replicate.delivery/xezq/c73wfwnvVepntEy8oMlumX27VoaTbDb2ETUC7ivDr34QyXzUA/out-0.jpg" ], "started_at": "2025-06-04T04:24:40.153989Z", "status": "succeeded", "urls": { "stream": "https://stream.replicate.com/v1/files/bcwr-pi7yo4qeqz2b3z4ugxy4c4qz63olvcbo45c5w7izzoioj7knbjpa", "get": "https://api.replicate.com/v1/predictions/7ayv76h2sxrm80cq74qsec7fdc", "cancel": "https://api.replicate.com/v1/predictions/7ayv76h2sxrm80cq74qsec7fdc/cancel" }, "version": "fa806a081b89bfd111cd6d30bde9bcd4309a5e8a3b1f9504d77e7cbde7899f69" }
Generated infree=25972714336256 Downloading weights 2025-06-04T04:24:40Z | INFO | [ Initiating ] chunk_size=150M dest=/tmp/tmpvj3wxxuu/weights url=https://replicate.delivery/xezq/Soofk1wRnPVpUSORpMNOvQC521DoUeTEhRwfS2Rt7IaVzumpA/trained_model.tar 2025-06-04T04:24:40Z | INFO | [ Cache Service ] enabled=true scheme=http target=hermes.services.svc.cluster.local 2025-06-04T04:24:40Z | INFO | [ Cache URL Rewrite ] enabled=true target_url=http://hermes.services.svc.cluster.local/replicate.delivery/xezq/Soofk1wRnPVpUSORpMNOvQC521DoUeTEhRwfS2Rt7IaVzumpA/trained_model.tar url=https://replicate.delivery/xezq/Soofk1wRnPVpUSORpMNOvQC521DoUeTEhRwfS2Rt7IaVzumpA/trained_model.tar 2025-06-04T04:24:40Z | INFO | [ Redirect ] redirect_url=http://r8-east4-loras-ric1.cwlota.com/871f49be9089c61c84f63d46956fc86ba354f6a64cec27baf3bdd12602c78df3?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Checksum-Mode=ENABLED&X-Amz-Credential=CWNZUVKLDHXVHEZN%2F20250604%2FUS-EAST-04A%2Fs3%2Faws4_request&X-Amz-Date=20250604T042440Z&X-Amz-Expires=600&X-Amz-SignedHeaders=host&x-id=GetObject&X-Amz-Signature=847a0978db09f6bd87db13e677efca9a432bef3e89985f1d5e79fa2602b6bb52 url=http://hermes.services.svc.cluster.local/replicate.delivery/xezq/Soofk1wRnPVpUSORpMNOvQC521DoUeTEhRwfS2Rt7IaVzumpA/trained_model.tar 2025-06-04T04:24:40Z | INFO | [ Complete ] dest=/tmp/tmpvj3wxxuu/weights size="172 MB" total_elapsed=0.223s url=https://replicate.delivery/xezq/Soofk1wRnPVpUSORpMNOvQC521DoUeTEhRwfS2Rt7IaVzumpA/trained_model.tar Downloaded weights in 0.29s Loaded LoRAs in 0.84s Using seed: 40403 Prompt: a photo of fulbert, a well-groomed man with short, dark-cropped hair and trimmed beard, wearing rectangular black eyeglasses, sitting at a round black table, working on a sleek black MacBook. He has a focused and confident facial expression, with fair skin and a clean, smooth complexion. His posture is upright and professional. --ar 2:3 --style raw --subject wearing a dark charcoal textured suit jacket over a crisp white shirt --accessories black-framed glasses, Apple iPhone placed flat on the table --environment modern office interior with a geometric black-and-white rug, large ceiling tiles, panoramic windows with bright daylight diffusion, a black curved wall with vertical indoor plants in the background, and three exposed filament bulbs hanging from the ceiling --lighting natural daylight mixed with warm ambient lighting from Edison bulbs, creating soft highlights and gentle shadows --camera angle eye-level frontal shot --composition rule of thirds, subject centered slightly left, bulbs forming a triangle above subject, blurred background for depth --post-processing high-definition clarity, natural skin tones, slight contrast boost, gentle sharpening, clean color grading --details highly detailed textures on clothing and skin, subtle background bokeh, sharp focus on subject's face and hands --quality high-end corporate photography, simulated 85mm lens, f/1.8 aperture, ISO 200, 1/125s shutter speed, high dynamic range, professional full-frame DSLR simulation [!] txt2img mode 0%| | 0/28 [00:00<?, ?it/s] 4%|▎ | 1/28 [00:00<00:07, 3.83it/s] 7%|▋ | 2/28 [00:00<00:05, 4.34it/s] 11%|█ | 3/28 [00:00<00:06, 4.11it/s] 14%|█▍ | 4/28 [00:00<00:05, 4.00it/s] 18%|█▊ | 5/28 [00:01<00:05, 3.95it/s] 21%|██▏ | 6/28 [00:01<00:05, 3.91it/s] 25%|██▌ | 7/28 [00:01<00:05, 3.89it/s] 29%|██▊ | 8/28 [00:02<00:05, 3.88it/s] 32%|███▏ | 9/28 [00:02<00:04, 3.87it/s] 36%|███▌ | 10/28 [00:02<00:04, 3.86it/s] 39%|███▉ | 11/28 [00:02<00:04, 3.85it/s] 43%|████▎ | 12/28 [00:03<00:04, 3.85it/s] 46%|████▋ | 13/28 [00:03<00:03, 3.85it/s] 50%|█████ | 14/28 [00:03<00:03, 3.85it/s] 54%|█████▎ | 15/28 [00:03<00:03, 3.84it/s] 57%|█████▋ | 16/28 [00:04<00:03, 3.84it/s] 61%|██████ | 17/28 [00:04<00:02, 3.84it/s] 64%|██████▍ | 18/28 [00:04<00:02, 3.84it/s] 68%|██████▊ | 19/28 [00:04<00:02, 3.85it/s] 71%|███████▏ | 20/28 [00:05<00:02, 3.85it/s] 75%|███████▌ | 21/28 [00:05<00:01, 3.85it/s] 79%|███████▊ | 22/28 [00:05<00:01, 3.85it/s] 82%|████████▏ | 23/28 [00:05<00:01, 3.85it/s] 86%|████████▌ | 24/28 [00:06<00:01, 3.85it/s] 89%|████████▉ | 25/28 [00:06<00:00, 3.85it/s] 93%|█████████▎| 26/28 [00:06<00:00, 3.85it/s] 96%|█████████▋| 27/28 [00:06<00:00, 3.85it/s] 100%|██████████| 28/28 [00:07<00:00, 3.85it/s] 100%|██████████| 28/28 [00:07<00:00, 3.88it/s] Total safe images: 1 out of 1
Prediction
fulbertsmart/fulbert:fa806a081b89bfd111cd6d30bde9bcd4309a5e8a3b1f9504d77e7cbde7899f69IDvp90p4pj49rmc0cq74rb0jyew8StatusSucceededSourceWebHardwareH100Total durationCreatedInput
- model
- dev
- prompt
- a photo of fulbert, a confident man with short, side-faded hair and a trimmed beard, wearing black rectangular glasses, captured in a dramatic studio portrait. He wears a sleek black turtleneck sweater and a luxury silver wristwatch with a black dial. His expression is contemplative and focused, looking slightly off-camera. --ar 2:3 --style raw --pose hands gently clasped near his face, resting on the table or chest level --environment dark studio backdrop with deep shadows and soft directional lighting --lighting single key light from upper left, creating cinematic chiaroscuro effect, with soft falloff on the opposite side of the face --camera angle mid-close shot, frontal with slight left rotation --composition centered on subject’s face and hands, tight frame, headroom respected, dark negative space around --post-processing high clarity, realistic skin texture, sharp detail on glasses, beard and watch, subtle contrast enhancement --details emphasis on wristwatch gleam, fabric texture of turtleneck, reflection in glasses, soft background fade --quality high-end portrait photography, 85mm lens simulation, f/1.4 aperture, ISO 100, 1/160s shutter, studio-grade DSLR quality
- go_fast
- lora_scale
- 1
- megapixels
- 1
- num_outputs
- 1
- aspect_ratio
- 3:4
- output_format
- jpg
- guidance_scale
- 3
- output_quality
- 100
- prompt_strength
- 0.8
- extra_lora_scale
- 1
- num_inference_steps
- 28
{ "model": "dev", "prompt": "a photo of fulbert, a confident man with short, side-faded hair and a trimmed beard, wearing black rectangular glasses, captured in a dramatic studio portrait. He wears a sleek black turtleneck sweater and a luxury silver wristwatch with a black dial. His expression is contemplative and focused, looking slightly off-camera. --ar 2:3 --style raw --pose hands gently clasped near his face, resting on the table or chest level --environment dark studio backdrop with deep shadows and soft directional lighting --lighting single key light from upper left, creating cinematic chiaroscuro effect, with soft falloff on the opposite side of the face --camera angle mid-close shot, frontal with slight left rotation --composition centered on subject’s face and hands, tight frame, headroom respected, dark negative space around --post-processing high clarity, realistic skin texture, sharp detail on glasses, beard and watch, subtle contrast enhancement --details emphasis on wristwatch gleam, fabric texture of turtleneck, reflection in glasses, soft background fade --quality high-end portrait photography, 85mm lens simulation, f/1.4 aperture, ISO 100, 1/160s shutter, studio-grade DSLR quality", "go_fast": false, "lora_scale": 1, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "3:4", "output_format": "jpg", "guidance_scale": 3, "output_quality": 100, "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 fulbertsmart/fulbert using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "fulbertsmart/fulbert:fa806a081b89bfd111cd6d30bde9bcd4309a5e8a3b1f9504d77e7cbde7899f69", { input: { model: "dev", prompt: "a photo of fulbert, a confident man with short, side-faded hair and a trimmed beard, wearing black rectangular glasses, captured in a dramatic studio portrait. He wears a sleek black turtleneck sweater and a luxury silver wristwatch with a black dial. His expression is contemplative and focused, looking slightly off-camera. --ar 2:3 --style raw --pose hands gently clasped near his face, resting on the table or chest level --environment dark studio backdrop with deep shadows and soft directional lighting --lighting single key light from upper left, creating cinematic chiaroscuro effect, with soft falloff on the opposite side of the face --camera angle mid-close shot, frontal with slight left rotation --composition centered on subject’s face and hands, tight frame, headroom respected, dark negative space around --post-processing high clarity, realistic skin texture, sharp detail on glasses, beard and watch, subtle contrast enhancement --details emphasis on wristwatch gleam, fabric texture of turtleneck, reflection in glasses, soft background fade --quality high-end portrait photography, 85mm lens simulation, f/1.4 aperture, ISO 100, 1/160s shutter, studio-grade DSLR quality", go_fast: false, lora_scale: 1, megapixels: "1", num_outputs: 1, aspect_ratio: "3:4", output_format: "jpg", guidance_scale: 3, output_quality: 100, 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 fulbertsmart/fulbert using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "fulbertsmart/fulbert:fa806a081b89bfd111cd6d30bde9bcd4309a5e8a3b1f9504d77e7cbde7899f69", input={ "model": "dev", "prompt": "a photo of fulbert, a confident man with short, side-faded hair and a trimmed beard, wearing black rectangular glasses, captured in a dramatic studio portrait. He wears a sleek black turtleneck sweater and a luxury silver wristwatch with a black dial. His expression is contemplative and focused, looking slightly off-camera. --ar 2:3 --style raw --pose hands gently clasped near his face, resting on the table or chest level --environment dark studio backdrop with deep shadows and soft directional lighting --lighting single key light from upper left, creating cinematic chiaroscuro effect, with soft falloff on the opposite side of the face --camera angle mid-close shot, frontal with slight left rotation --composition centered on subject’s face and hands, tight frame, headroom respected, dark negative space around --post-processing high clarity, realistic skin texture, sharp detail on glasses, beard and watch, subtle contrast enhancement --details emphasis on wristwatch gleam, fabric texture of turtleneck, reflection in glasses, soft background fade --quality high-end portrait photography, 85mm lens simulation, f/1.4 aperture, ISO 100, 1/160s shutter, studio-grade DSLR quality", "go_fast": False, "lora_scale": 1, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "3:4", "output_format": "jpg", "guidance_scale": 3, "output_quality": 100, "prompt_strength": 0.8, "extra_lora_scale": 1, "num_inference_steps": 28 } ) # To access the file URL: print(output[0].url()) #=> "http://example.com" # To write the file to disk: with open("my-image.png", "wb") as file: file.write(output[0].read())
To learn more, take a look at the guide on getting started with Python.
Run fulbertsmart/fulbert 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": "fulbertsmart/fulbert:fa806a081b89bfd111cd6d30bde9bcd4309a5e8a3b1f9504d77e7cbde7899f69", "input": { "model": "dev", "prompt": "a photo of fulbert, a confident man with short, side-faded hair and a trimmed beard, wearing black rectangular glasses, captured in a dramatic studio portrait. He wears a sleek black turtleneck sweater and a luxury silver wristwatch with a black dial. His expression is contemplative and focused, looking slightly off-camera. --ar 2:3 --style raw --pose hands gently clasped near his face, resting on the table or chest level --environment dark studio backdrop with deep shadows and soft directional lighting --lighting single key light from upper left, creating cinematic chiaroscuro effect, with soft falloff on the opposite side of the face --camera angle mid-close shot, frontal with slight left rotation --composition centered on subject’s face and hands, tight frame, headroom respected, dark negative space around --post-processing high clarity, realistic skin texture, sharp detail on glasses, beard and watch, subtle contrast enhancement --details emphasis on wristwatch gleam, fabric texture of turtleneck, reflection in glasses, soft background fade --quality high-end portrait photography, 85mm lens simulation, f/1.4 aperture, ISO 100, 1/160s shutter, studio-grade DSLR quality", "go_fast": false, "lora_scale": 1, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "3:4", "output_format": "jpg", "guidance_scale": 3, "output_quality": 100, "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-06-04T04:26:40.349712Z", "created_at": "2025-06-04T04:26:30.306000Z", "data_removed": false, "error": null, "id": "vp90p4pj49rmc0cq74rb0jyew8", "input": { "model": "dev", "prompt": "a photo of fulbert, a confident man with short, side-faded hair and a trimmed beard, wearing black rectangular glasses, captured in a dramatic studio portrait. He wears a sleek black turtleneck sweater and a luxury silver wristwatch with a black dial. His expression is contemplative and focused, looking slightly off-camera. --ar 2:3 --style raw --pose hands gently clasped near his face, resting on the table or chest level --environment dark studio backdrop with deep shadows and soft directional lighting --lighting single key light from upper left, creating cinematic chiaroscuro effect, with soft falloff on the opposite side of the face --camera angle mid-close shot, frontal with slight left rotation --composition centered on subject’s face and hands, tight frame, headroom respected, dark negative space around --post-processing high clarity, realistic skin texture, sharp detail on glasses, beard and watch, subtle contrast enhancement --details emphasis on wristwatch gleam, fabric texture of turtleneck, reflection in glasses, soft background fade --quality high-end portrait photography, 85mm lens simulation, f/1.4 aperture, ISO 100, 1/160s shutter, studio-grade DSLR quality", "go_fast": false, "lora_scale": 1, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "3:4", "output_format": "jpg", "guidance_scale": 3, "output_quality": 100, "prompt_strength": 0.8, "extra_lora_scale": 1, "num_inference_steps": 28 }, "logs": "Loaded LoRAs in 2.49s\nUsing seed: 41246\nPrompt: a photo of fulbert, a confident man with short, side-faded hair and a trimmed beard, wearing black rectangular glasses, captured in a dramatic studio portrait. He wears a sleek black turtleneck sweater and a luxury silver wristwatch with a black dial. His expression is contemplative and focused, looking slightly off-camera. --ar 2:3 --style raw --pose hands gently clasped near his face, resting on the table or chest level --environment dark studio backdrop with deep shadows and soft directional lighting --lighting single key light from upper left, creating cinematic chiaroscuro effect, with soft falloff on the opposite side of the face --camera angle mid-close shot, frontal with slight left rotation --composition centered on subject’s face and hands, tight frame, headroom respected, dark negative space around --post-processing high clarity, realistic skin texture, sharp detail on glasses, beard and watch, subtle contrast enhancement --details emphasis on wristwatch gleam, fabric texture of turtleneck, reflection in glasses, soft background fade --quality high-end portrait photography, 85mm lens simulation, f/1.4 aperture, ISO 100, 1/160s shutter, studio-grade DSLR quality\n[!] txt2img mode\n 0%| | 0/28 [00:00<?, ?it/s]\n 4%|▎ | 1/28 [00:00<00:07, 3.83it/s]\n 7%|▋ | 2/28 [00:00<00:05, 4.34it/s]\n 11%|█ | 3/28 [00:00<00:06, 4.10it/s]\n 14%|█▍ | 4/28 [00:00<00:06, 3.99it/s]\n 18%|█▊ | 5/28 [00:01<00:05, 3.94it/s]\n 21%|██▏ | 6/28 [00:01<00:05, 3.91it/s]\n 25%|██▌ | 7/28 [00:01<00:05, 3.89it/s]\n 29%|██▊ | 8/28 [00:02<00:05, 3.87it/s]\n 32%|███▏ | 9/28 [00:02<00:04, 3.86it/s]\n 36%|███▌ | 10/28 [00:02<00:04, 3.85it/s]\n 39%|███▉ | 11/28 [00:02<00:04, 3.85it/s]\n 43%|████▎ | 12/28 [00:03<00:04, 3.85it/s]\n 46%|████▋ | 13/28 [00:03<00:03, 3.84it/s]\n 50%|█████ | 14/28 [00:03<00:03, 3.84it/s]\n 54%|█████▎ | 15/28 [00:03<00:03, 3.84it/s]\n 57%|█████▋ | 16/28 [00:04<00:03, 3.84it/s]\n 61%|██████ | 17/28 [00:04<00:02, 3.84it/s]\n 64%|██████▍ | 18/28 [00:04<00:02, 3.84it/s]\n 68%|██████▊ | 19/28 [00:04<00:02, 3.84it/s]\n 71%|███████▏ | 20/28 [00:05<00:02, 3.84it/s]\n 75%|███████▌ | 21/28 [00:05<00:01, 3.84it/s]\n 79%|███████▊ | 22/28 [00:05<00:01, 3.84it/s]\n 82%|████████▏ | 23/28 [00:05<00:01, 3.84it/s]\n 86%|████████▌ | 24/28 [00:06<00:01, 3.84it/s]\n 89%|████████▉ | 25/28 [00:06<00:00, 3.84it/s]\n 93%|█████████▎| 26/28 [00:06<00:00, 3.84it/s]\n 96%|█████████▋| 27/28 [00:06<00:00, 3.84it/s]\n100%|██████████| 28/28 [00:07<00:00, 3.84it/s]\n100%|██████████| 28/28 [00:07<00:00, 3.87it/s]\nTotal safe images: 1 out of 1", "metrics": { "predict_time": 10.029599622, "total_time": 10.043712 }, "output": [ "https://replicate.delivery/xezq/15kMOVevyVUINil8vSMPmumJJvBO34ehfiRo3RULX9DBovmpA/out-0.jpg" ], "started_at": "2025-06-04T04:26:30.320112Z", "status": "succeeded", "urls": { "stream": "https://stream.replicate.com/v1/files/bcwr-a42c5c53sgsleor5sd4phj6katstippkvwgsxnk7kieyj3aariia", "get": "https://api.replicate.com/v1/predictions/vp90p4pj49rmc0cq74rb0jyew8", "cancel": "https://api.replicate.com/v1/predictions/vp90p4pj49rmc0cq74rb0jyew8/cancel" }, "version": "fa806a081b89bfd111cd6d30bde9bcd4309a5e8a3b1f9504d77e7cbde7899f69" }
Generated inLoaded LoRAs in 2.49s Using seed: 41246 Prompt: a photo of fulbert, a confident man with short, side-faded hair and a trimmed beard, wearing black rectangular glasses, captured in a dramatic studio portrait. He wears a sleek black turtleneck sweater and a luxury silver wristwatch with a black dial. His expression is contemplative and focused, looking slightly off-camera. --ar 2:3 --style raw --pose hands gently clasped near his face, resting on the table or chest level --environment dark studio backdrop with deep shadows and soft directional lighting --lighting single key light from upper left, creating cinematic chiaroscuro effect, with soft falloff on the opposite side of the face --camera angle mid-close shot, frontal with slight left rotation --composition centered on subject’s face and hands, tight frame, headroom respected, dark negative space around --post-processing high clarity, realistic skin texture, sharp detail on glasses, beard and watch, subtle contrast enhancement --details emphasis on wristwatch gleam, fabric texture of turtleneck, reflection in glasses, soft background fade --quality high-end portrait photography, 85mm lens simulation, f/1.4 aperture, ISO 100, 1/160s shutter, studio-grade DSLR quality [!] txt2img mode 0%| | 0/28 [00:00<?, ?it/s] 4%|▎ | 1/28 [00:00<00:07, 3.83it/s] 7%|▋ | 2/28 [00:00<00:05, 4.34it/s] 11%|█ | 3/28 [00:00<00:06, 4.10it/s] 14%|█▍ | 4/28 [00:00<00:06, 3.99it/s] 18%|█▊ | 5/28 [00:01<00:05, 3.94it/s] 21%|██▏ | 6/28 [00:01<00:05, 3.91it/s] 25%|██▌ | 7/28 [00:01<00:05, 3.89it/s] 29%|██▊ | 8/28 [00:02<00:05, 3.87it/s] 32%|███▏ | 9/28 [00:02<00:04, 3.86it/s] 36%|███▌ | 10/28 [00:02<00:04, 3.85it/s] 39%|███▉ | 11/28 [00:02<00:04, 3.85it/s] 43%|████▎ | 12/28 [00:03<00:04, 3.85it/s] 46%|████▋ | 13/28 [00:03<00:03, 3.84it/s] 50%|█████ | 14/28 [00:03<00:03, 3.84it/s] 54%|█████▎ | 15/28 [00:03<00:03, 3.84it/s] 57%|█████▋ | 16/28 [00:04<00:03, 3.84it/s] 61%|██████ | 17/28 [00:04<00:02, 3.84it/s] 64%|██████▍ | 18/28 [00:04<00:02, 3.84it/s] 68%|██████▊ | 19/28 [00:04<00:02, 3.84it/s] 71%|███████▏ | 20/28 [00:05<00:02, 3.84it/s] 75%|███████▌ | 21/28 [00:05<00:01, 3.84it/s] 79%|███████▊ | 22/28 [00:05<00:01, 3.84it/s] 82%|████████▏ | 23/28 [00:05<00:01, 3.84it/s] 86%|████████▌ | 24/28 [00:06<00:01, 3.84it/s] 89%|████████▉ | 25/28 [00:06<00:00, 3.84it/s] 93%|█████████▎| 26/28 [00:06<00:00, 3.84it/s] 96%|█████████▋| 27/28 [00:06<00:00, 3.84it/s] 100%|██████████| 28/28 [00:07<00:00, 3.84it/s] 100%|██████████| 28/28 [00:07<00:00, 3.87it/s] Total safe images: 1 out of 1
Prediction
fulbertsmart/fulbert:fa806a081b89bfd111cd6d30bde9bcd4309a5e8a3b1f9504d77e7cbde7899f69IDjtcb4v2daxrm80cq74tafe9k88StatusSucceededSourceWebHardwareH100Total durationCreatedInput
- model
- dev
- prompt
- a photo of fulbert, fair skin with natural texture, medium build, hands clasped together in contemplative pose, intense focused gaze through glasses, serious confident expression --ar 3:4 --style raw --subject wearing black crew neck sweater with ribbed texture, dark navy blue blazer or jacket over sweater --accessories black thick-rimmed rectangular eyeglasses, luxury silver stainless steel dive watch with black bezel and metal bracelet --environment pure black studio background, seamless dark backdrop creating dramatic contrast --lighting dramatic chiaroscuro lighting with strong key light from upper left creating defined shadows on right side of face, rim lighting on hair and shoulder, deep shadows for moody atmosphere --camera angle three-quarter view portrait, slight downward angle, close-up composition focusing on upper torso and face --composition subject positioned slightly off-center to left, rule of thirds with eyes in upper third, hands creating triangular composition element, strong diagonal lighting pattern --post-processing high-definition with enhanced contrast, deep blacks and controlled highlights, slight color grading for cinematic mood --details razor-sharp focus on facial features and eyeglass frames, visible skin texture and stubble detail, fabric weave of sweater, polished watch metal reflections, precise hair strand definition --quality professional portrait photography, 85mm lens simulation, f/2.8 aperture, 1/160 shutter speed, ISO 400, dramatic exposure with deep shadows, high contrast, controlled highlights and lowlights, shot with Sony A7R IV, color temperature 4800K, moody post-processing for dramatic executive portrait style.
- go_fast
- lora_scale
- 1
- megapixels
- 1
- num_outputs
- 1
- aspect_ratio
- 1:1
- output_format
- jpg
- guidance_scale
- 3
- output_quality
- 100
- prompt_strength
- 0.8
- extra_lora_scale
- 1
- num_inference_steps
- 28
{ "model": "dev", "prompt": "a photo of fulbert, fair skin with natural texture, medium build, hands clasped together in contemplative pose, intense focused gaze through glasses, serious confident expression --ar 3:4 --style raw --subject wearing black crew neck sweater with ribbed texture, dark navy blue blazer or jacket over sweater --accessories black thick-rimmed rectangular eyeglasses, luxury silver stainless steel dive watch with black bezel and metal bracelet --environment pure black studio background, seamless dark backdrop creating dramatic contrast --lighting dramatic chiaroscuro lighting with strong key light from upper left creating defined shadows on right side of face, rim lighting on hair and shoulder, deep shadows for moody atmosphere --camera angle three-quarter view portrait, slight downward angle, close-up composition focusing on upper torso and face --composition subject positioned slightly off-center to left, rule of thirds with eyes in upper third, hands creating triangular composition element, strong diagonal lighting pattern --post-processing high-definition with enhanced contrast, deep blacks and controlled highlights, slight color grading for cinematic mood --details razor-sharp focus on facial features and eyeglass frames, visible skin texture and stubble detail, fabric weave of sweater, polished watch metal reflections, precise hair strand definition --quality professional portrait photography, 85mm lens simulation, f/2.8 aperture, 1/160 shutter speed, ISO 400, dramatic exposure with deep shadows, high contrast, controlled highlights and lowlights, shot with Sony A7R IV, color temperature 4800K, moody post-processing for dramatic executive portrait style.", "go_fast": false, "lora_scale": 1, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "1:1", "output_format": "jpg", "guidance_scale": 3, "output_quality": 100, "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 fulbertsmart/fulbert using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "fulbertsmart/fulbert:fa806a081b89bfd111cd6d30bde9bcd4309a5e8a3b1f9504d77e7cbde7899f69", { input: { model: "dev", prompt: "a photo of fulbert, fair skin with natural texture, medium build, hands clasped together in contemplative pose, intense focused gaze through glasses, serious confident expression --ar 3:4 --style raw --subject wearing black crew neck sweater with ribbed texture, dark navy blue blazer or jacket over sweater --accessories black thick-rimmed rectangular eyeglasses, luxury silver stainless steel dive watch with black bezel and metal bracelet --environment pure black studio background, seamless dark backdrop creating dramatic contrast --lighting dramatic chiaroscuro lighting with strong key light from upper left creating defined shadows on right side of face, rim lighting on hair and shoulder, deep shadows for moody atmosphere --camera angle three-quarter view portrait, slight downward angle, close-up composition focusing on upper torso and face --composition subject positioned slightly off-center to left, rule of thirds with eyes in upper third, hands creating triangular composition element, strong diagonal lighting pattern --post-processing high-definition with enhanced contrast, deep blacks and controlled highlights, slight color grading for cinematic mood --details razor-sharp focus on facial features and eyeglass frames, visible skin texture and stubble detail, fabric weave of sweater, polished watch metal reflections, precise hair strand definition --quality professional portrait photography, 85mm lens simulation, f/2.8 aperture, 1/160 shutter speed, ISO 400, dramatic exposure with deep shadows, high contrast, controlled highlights and lowlights, shot with Sony A7R IV, color temperature 4800K, moody post-processing for dramatic executive portrait style.", go_fast: false, lora_scale: 1, megapixels: "1", num_outputs: 1, aspect_ratio: "1:1", output_format: "jpg", guidance_scale: 3, output_quality: 100, 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 fulbertsmart/fulbert using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "fulbertsmart/fulbert:fa806a081b89bfd111cd6d30bde9bcd4309a5e8a3b1f9504d77e7cbde7899f69", input={ "model": "dev", "prompt": "a photo of fulbert, fair skin with natural texture, medium build, hands clasped together in contemplative pose, intense focused gaze through glasses, serious confident expression --ar 3:4 --style raw --subject wearing black crew neck sweater with ribbed texture, dark navy blue blazer or jacket over sweater --accessories black thick-rimmed rectangular eyeglasses, luxury silver stainless steel dive watch with black bezel and metal bracelet --environment pure black studio background, seamless dark backdrop creating dramatic contrast --lighting dramatic chiaroscuro lighting with strong key light from upper left creating defined shadows on right side of face, rim lighting on hair and shoulder, deep shadows for moody atmosphere --camera angle three-quarter view portrait, slight downward angle, close-up composition focusing on upper torso and face --composition subject positioned slightly off-center to left, rule of thirds with eyes in upper third, hands creating triangular composition element, strong diagonal lighting pattern --post-processing high-definition with enhanced contrast, deep blacks and controlled highlights, slight color grading for cinematic mood --details razor-sharp focus on facial features and eyeglass frames, visible skin texture and stubble detail, fabric weave of sweater, polished watch metal reflections, precise hair strand definition --quality professional portrait photography, 85mm lens simulation, f/2.8 aperture, 1/160 shutter speed, ISO 400, dramatic exposure with deep shadows, high contrast, controlled highlights and lowlights, shot with Sony A7R IV, color temperature 4800K, moody post-processing for dramatic executive portrait style.", "go_fast": False, "lora_scale": 1, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "1:1", "output_format": "jpg", "guidance_scale": 3, "output_quality": 100, "prompt_strength": 0.8, "extra_lora_scale": 1, "num_inference_steps": 28 } ) # To access the file URL: print(output[0].url()) #=> "http://example.com" # To write the file to disk: with open("my-image.png", "wb") as file: file.write(output[0].read())
To learn more, take a look at the guide on getting started with Python.
Run fulbertsmart/fulbert 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": "fulbertsmart/fulbert:fa806a081b89bfd111cd6d30bde9bcd4309a5e8a3b1f9504d77e7cbde7899f69", "input": { "model": "dev", "prompt": "a photo of fulbert, fair skin with natural texture, medium build, hands clasped together in contemplative pose, intense focused gaze through glasses, serious confident expression --ar 3:4 --style raw --subject wearing black crew neck sweater with ribbed texture, dark navy blue blazer or jacket over sweater --accessories black thick-rimmed rectangular eyeglasses, luxury silver stainless steel dive watch with black bezel and metal bracelet --environment pure black studio background, seamless dark backdrop creating dramatic contrast --lighting dramatic chiaroscuro lighting with strong key light from upper left creating defined shadows on right side of face, rim lighting on hair and shoulder, deep shadows for moody atmosphere --camera angle three-quarter view portrait, slight downward angle, close-up composition focusing on upper torso and face --composition subject positioned slightly off-center to left, rule of thirds with eyes in upper third, hands creating triangular composition element, strong diagonal lighting pattern --post-processing high-definition with enhanced contrast, deep blacks and controlled highlights, slight color grading for cinematic mood --details razor-sharp focus on facial features and eyeglass frames, visible skin texture and stubble detail, fabric weave of sweater, polished watch metal reflections, precise hair strand definition --quality professional portrait photography, 85mm lens simulation, f/2.8 aperture, 1/160 shutter speed, ISO 400, dramatic exposure with deep shadows, high contrast, controlled highlights and lowlights, shot with Sony A7R IV, color temperature 4800K, moody post-processing for dramatic executive portrait style.", "go_fast": false, "lora_scale": 1, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "1:1", "output_format": "jpg", "guidance_scale": 3, "output_quality": 100, "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-06-04T04:30:52.957444Z", "created_at": "2025-06-04T04:30:18.455000Z", "data_removed": false, "error": null, "id": "jtcb4v2daxrm80cq74tafe9k88", "input": { "model": "dev", "prompt": "a photo of fulbert, fair skin with natural texture, medium build, hands clasped together in contemplative pose, intense focused gaze through glasses, serious confident expression --ar 3:4 --style raw --subject wearing black crew neck sweater with ribbed texture, dark navy blue blazer or jacket over sweater --accessories black thick-rimmed rectangular eyeglasses, luxury silver stainless steel dive watch with black bezel and metal bracelet --environment pure black studio background, seamless dark backdrop creating dramatic contrast --lighting dramatic chiaroscuro lighting with strong key light from upper left creating defined shadows on right side of face, rim lighting on hair and shoulder, deep shadows for moody atmosphere --camera angle three-quarter view portrait, slight downward angle, close-up composition focusing on upper torso and face --composition subject positioned slightly off-center to left, rule of thirds with eyes in upper third, hands creating triangular composition element, strong diagonal lighting pattern --post-processing high-definition with enhanced contrast, deep blacks and controlled highlights, slight color grading for cinematic mood --details razor-sharp focus on facial features and eyeglass frames, visible skin texture and stubble detail, fabric weave of sweater, polished watch metal reflections, precise hair strand definition --quality professional portrait photography, 85mm lens simulation, f/2.8 aperture, 1/160 shutter speed, ISO 400, dramatic exposure with deep shadows, high contrast, controlled highlights and lowlights, shot with Sony A7R IV, color temperature 4800K, moody post-processing for dramatic executive portrait style.", "go_fast": false, "lora_scale": 1, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "1:1", "output_format": "jpg", "guidance_scale": 3, "output_quality": 100, "prompt_strength": 0.8, "extra_lora_scale": 1, "num_inference_steps": 28 }, "logs": "free=26440941346816\nDownloading weights\n2025-06-04T04:30:44Z | INFO | [ Initiating ] chunk_size=150M dest=/tmp/tmp0au8nifr/weights url=https://replicate.delivery/xezq/Soofk1wRnPVpUSORpMNOvQC521DoUeTEhRwfS2Rt7IaVzumpA/trained_model.tar\n2025-06-04T04:30:44Z | INFO | [ Cache Service ] enabled=true scheme=http target=hermes.services.svc.cluster.local\n2025-06-04T04:30:44Z | INFO | [ Cache URL Rewrite ] enabled=true target_url=http://hermes.services.svc.cluster.local/replicate.delivery/xezq/Soofk1wRnPVpUSORpMNOvQC521DoUeTEhRwfS2Rt7IaVzumpA/trained_model.tar url=https://replicate.delivery/xezq/Soofk1wRnPVpUSORpMNOvQC521DoUeTEhRwfS2Rt7IaVzumpA/trained_model.tar\n2025-06-04T04:30:44Z | INFO | [ Redirect ] redirect_url=http://r8-east4-loras-ric1.cwlota.com/871f49be9089c61c84f63d46956fc86ba354f6a64cec27baf3bdd12602c78df3?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Checksum-Mode=ENABLED&X-Amz-Credential=CWNZUVKLDHXVHEZN%2F20250604%2FUS-EAST-04A%2Fs3%2Faws4_request&X-Amz-Date=20250604T043044Z&X-Amz-Expires=600&X-Amz-SignedHeaders=host&x-id=GetObject&X-Amz-Signature=b7c274ad9dcd4c2c1ff35df996b61d055c6e4803840917759f665840000a837f url=http://hermes.services.svc.cluster.local/replicate.delivery/xezq/Soofk1wRnPVpUSORpMNOvQC521DoUeTEhRwfS2Rt7IaVzumpA/trained_model.tar\n2025-06-04T04:30:44Z | INFO | [ Complete ] dest=/tmp/tmp0au8nifr/weights size=\"172 MB\" total_elapsed=0.244s url=https://replicate.delivery/xezq/Soofk1wRnPVpUSORpMNOvQC521DoUeTEhRwfS2Rt7IaVzumpA/trained_model.tar\nDownloaded weights in 0.31s\nLoaded LoRAs in 0.88s\nUsing seed: 28473\nPrompt: a photo of fulbert, fair skin with natural texture, medium build, hands clasped together in contemplative pose, intense focused gaze through glasses, serious confident expression --ar 3:4 --style raw --subject wearing black crew neck sweater with ribbed texture, dark navy blue blazer or jacket over sweater --accessories black thick-rimmed rectangular eyeglasses, luxury silver stainless steel dive watch with black bezel and metal bracelet --environment pure black studio background, seamless dark backdrop creating dramatic contrast --lighting dramatic chiaroscuro lighting with strong key light from upper left creating defined shadows on right side of face, rim lighting on hair and shoulder, deep shadows for moody atmosphere --camera angle three-quarter view portrait, slight downward angle, close-up composition focusing on upper torso and face --composition subject positioned slightly off-center to left, rule of thirds with eyes in upper third, hands creating triangular composition element, strong diagonal lighting pattern --post-processing high-definition with enhanced contrast, deep blacks and controlled highlights, slight color grading for cinematic mood --details razor-sharp focus on facial features and eyeglass frames, visible skin texture and stubble detail, fabric weave of sweater, polished watch metal reflections, precise hair strand definition --quality professional portrait photography, 85mm lens simulation, f/2.8 aperture, 1/160 shutter speed, ISO 400, dramatic exposure with deep shadows, high contrast, controlled highlights and lowlights, shot with Sony A7R IV, color temperature 4800K, moody post-processing for dramatic executive portrait style.\n[!] txt2img mode\n 0%| | 0/28 [00:00<?, ?it/s]\n 4%|▎ | 1/28 [00:00<00:07, 3.84it/s]\n 7%|▋ | 2/28 [00:00<00:05, 4.35it/s]\n 11%|█ | 3/28 [00:00<00:06, 4.10it/s]\n 14%|█▍ | 4/28 [00:00<00:06, 3.99it/s]\n 18%|█▊ | 5/28 [00:01<00:05, 3.93it/s]\n 21%|██▏ | 6/28 [00:01<00:05, 3.89it/s]\n 25%|██▌ | 7/28 [00:01<00:05, 3.88it/s]\n 29%|██▊ | 8/28 [00:02<00:05, 3.86it/s]\n 32%|███▏ | 9/28 [00:02<00:04, 3.85it/s]\n 36%|███▌ | 10/28 [00:02<00:04, 3.85it/s]\n 39%|███▉ | 11/28 [00:02<00:04, 3.84it/s]\n 43%|████▎ | 12/28 [00:03<00:04, 3.84it/s]\n 46%|████▋ | 13/28 [00:03<00:03, 3.84it/s]\n 50%|█████ | 14/28 [00:03<00:03, 3.84it/s]\n 54%|█████▎ | 15/28 [00:03<00:03, 3.84it/s]\n 57%|█████▋ | 16/28 [00:04<00:03, 3.83it/s]\n 61%|██████ | 17/28 [00:04<00:02, 3.83it/s]\n 64%|██████▍ | 18/28 [00:04<00:02, 3.83it/s]\n 68%|██████▊ | 19/28 [00:04<00:02, 3.83it/s]\n 71%|███████▏ | 20/28 [00:05<00:02, 3.83it/s]\n 75%|███████▌ | 21/28 [00:05<00:01, 3.83it/s]\n 79%|███████▊ | 22/28 [00:05<00:01, 3.83it/s]\n 82%|████████▏ | 23/28 [00:05<00:01, 3.83it/s]\n 86%|████████▌ | 24/28 [00:06<00:01, 3.83it/s]\n 89%|████████▉ | 25/28 [00:06<00:00, 3.83it/s]\n 93%|█████████▎| 26/28 [00:06<00:00, 3.83it/s]\n 96%|█████████▋| 27/28 [00:06<00:00, 3.83it/s]\n100%|██████████| 28/28 [00:07<00:00, 3.84it/s]\n100%|██████████| 28/28 [00:07<00:00, 3.86it/s]\nTotal safe images: 1 out of 1", "metrics": { "predict_time": 8.366747225, "total_time": 34.502444 }, "output": [ "https://replicate.delivery/xezq/hb7eTDnsEHQ4JCs2f6ff4JlQx6ffanV4ACV4OlAmeU8Ze3XzUA/out-0.jpg" ], "started_at": "2025-06-04T04:30:44.590697Z", "status": "succeeded", "urls": { "stream": "https://stream.replicate.com/v1/files/bcwr-etnok7q7kkou2x5mf5dq7inbgg6kohbz3qzb2k6gvw66xb7oyu3q", "get": "https://api.replicate.com/v1/predictions/jtcb4v2daxrm80cq74tafe9k88", "cancel": "https://api.replicate.com/v1/predictions/jtcb4v2daxrm80cq74tafe9k88/cancel" }, "version": "fa806a081b89bfd111cd6d30bde9bcd4309a5e8a3b1f9504d77e7cbde7899f69" }
Generated infree=26440941346816 Downloading weights 2025-06-04T04:30:44Z | INFO | [ Initiating ] chunk_size=150M dest=/tmp/tmp0au8nifr/weights url=https://replicate.delivery/xezq/Soofk1wRnPVpUSORpMNOvQC521DoUeTEhRwfS2Rt7IaVzumpA/trained_model.tar 2025-06-04T04:30:44Z | INFO | [ Cache Service ] enabled=true scheme=http target=hermes.services.svc.cluster.local 2025-06-04T04:30:44Z | INFO | [ Cache URL Rewrite ] enabled=true target_url=http://hermes.services.svc.cluster.local/replicate.delivery/xezq/Soofk1wRnPVpUSORpMNOvQC521DoUeTEhRwfS2Rt7IaVzumpA/trained_model.tar url=https://replicate.delivery/xezq/Soofk1wRnPVpUSORpMNOvQC521DoUeTEhRwfS2Rt7IaVzumpA/trained_model.tar 2025-06-04T04:30:44Z | INFO | [ Redirect ] redirect_url=http://r8-east4-loras-ric1.cwlota.com/871f49be9089c61c84f63d46956fc86ba354f6a64cec27baf3bdd12602c78df3?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Checksum-Mode=ENABLED&X-Amz-Credential=CWNZUVKLDHXVHEZN%2F20250604%2FUS-EAST-04A%2Fs3%2Faws4_request&X-Amz-Date=20250604T043044Z&X-Amz-Expires=600&X-Amz-SignedHeaders=host&x-id=GetObject&X-Amz-Signature=b7c274ad9dcd4c2c1ff35df996b61d055c6e4803840917759f665840000a837f url=http://hermes.services.svc.cluster.local/replicate.delivery/xezq/Soofk1wRnPVpUSORpMNOvQC521DoUeTEhRwfS2Rt7IaVzumpA/trained_model.tar 2025-06-04T04:30:44Z | INFO | [ Complete ] dest=/tmp/tmp0au8nifr/weights size="172 MB" total_elapsed=0.244s url=https://replicate.delivery/xezq/Soofk1wRnPVpUSORpMNOvQC521DoUeTEhRwfS2Rt7IaVzumpA/trained_model.tar Downloaded weights in 0.31s Loaded LoRAs in 0.88s Using seed: 28473 Prompt: a photo of fulbert, fair skin with natural texture, medium build, hands clasped together in contemplative pose, intense focused gaze through glasses, serious confident expression --ar 3:4 --style raw --subject wearing black crew neck sweater with ribbed texture, dark navy blue blazer or jacket over sweater --accessories black thick-rimmed rectangular eyeglasses, luxury silver stainless steel dive watch with black bezel and metal bracelet --environment pure black studio background, seamless dark backdrop creating dramatic contrast --lighting dramatic chiaroscuro lighting with strong key light from upper left creating defined shadows on right side of face, rim lighting on hair and shoulder, deep shadows for moody atmosphere --camera angle three-quarter view portrait, slight downward angle, close-up composition focusing on upper torso and face --composition subject positioned slightly off-center to left, rule of thirds with eyes in upper third, hands creating triangular composition element, strong diagonal lighting pattern --post-processing high-definition with enhanced contrast, deep blacks and controlled highlights, slight color grading for cinematic mood --details razor-sharp focus on facial features and eyeglass frames, visible skin texture and stubble detail, fabric weave of sweater, polished watch metal reflections, precise hair strand definition --quality professional portrait photography, 85mm lens simulation, f/2.8 aperture, 1/160 shutter speed, ISO 400, dramatic exposure with deep shadows, high contrast, controlled highlights and lowlights, shot with Sony A7R IV, color temperature 4800K, moody post-processing for dramatic executive portrait style. [!] txt2img mode 0%| | 0/28 [00:00<?, ?it/s] 4%|▎ | 1/28 [00:00<00:07, 3.84it/s] 7%|▋ | 2/28 [00:00<00:05, 4.35it/s] 11%|█ | 3/28 [00:00<00:06, 4.10it/s] 14%|█▍ | 4/28 [00:00<00:06, 3.99it/s] 18%|█▊ | 5/28 [00:01<00:05, 3.93it/s] 21%|██▏ | 6/28 [00:01<00:05, 3.89it/s] 25%|██▌ | 7/28 [00:01<00:05, 3.88it/s] 29%|██▊ | 8/28 [00:02<00:05, 3.86it/s] 32%|███▏ | 9/28 [00:02<00:04, 3.85it/s] 36%|███▌ | 10/28 [00:02<00:04, 3.85it/s] 39%|███▉ | 11/28 [00:02<00:04, 3.84it/s] 43%|████▎ | 12/28 [00:03<00:04, 3.84it/s] 46%|████▋ | 13/28 [00:03<00:03, 3.84it/s] 50%|█████ | 14/28 [00:03<00:03, 3.84it/s] 54%|█████▎ | 15/28 [00:03<00:03, 3.84it/s] 57%|█████▋ | 16/28 [00:04<00:03, 3.83it/s] 61%|██████ | 17/28 [00:04<00:02, 3.83it/s] 64%|██████▍ | 18/28 [00:04<00:02, 3.83it/s] 68%|██████▊ | 19/28 [00:04<00:02, 3.83it/s] 71%|███████▏ | 20/28 [00:05<00:02, 3.83it/s] 75%|███████▌ | 21/28 [00:05<00:01, 3.83it/s] 79%|███████▊ | 22/28 [00:05<00:01, 3.83it/s] 82%|████████▏ | 23/28 [00:05<00:01, 3.83it/s] 86%|████████▌ | 24/28 [00:06<00:01, 3.83it/s] 89%|████████▉ | 25/28 [00:06<00:00, 3.83it/s] 93%|█████████▎| 26/28 [00:06<00:00, 3.83it/s] 96%|█████████▋| 27/28 [00:06<00:00, 3.83it/s] 100%|██████████| 28/28 [00:07<00:00, 3.84it/s] 100%|██████████| 28/28 [00:07<00:00, 3.86it/s] Total safe images: 1 out of 1
Prediction
fulbertsmart/fulbert:fa806a081b89bfd111cd6d30bde9bcd4309a5e8a3b1f9504d77e7cbde7899f69IDvp0fvpmyqnrmc0cq75w9w8bhqwStatusSucceededSourceWebHardwareH100Total durationCreatedInput
- model
- dev
- prompt
- a photo of fulbert with short fade haircut, clean-shaven face, dark skin with natural texture, athletic muscular build, casual confident pose with one hand adjusting denim jacket collar, relaxed expression looking slightly off-camera --ar 4:5 --style raw --subject wearing medium-wash blue denim jacket with classic trucker style, chest pockets, brass buttons, layered over light gray hoodie, cream-colored chino pants --accessories aviator sunglasses with gradient brown lenses and gold metal frames, luxury sports watch with green dial and brown leather strap --environment urban outdoor setting with lush green foliage wall, wrought iron gate or fence, blurred brick building architecture in background --lighting natural golden hour sunlight creating warm skin tones, soft directional lighting from left side, gentle shadows, bright outdoor ambiance --camera angle three-quarter body shot from slight low angle, capturing upper torso and partial legs --composition subject positioned in center-left following rule of thirds, vertical orientation emphasizing full outfit, balanced with natural background elements --post-processing vibrant color grading with enhanced blues and earth tones, high-definition clarity, lifestyle photography aesthetic --details sharp focus on subject with subtle depth of field on background, visible denim texture and stitching details, fabric layering definition, watch face reflection, natural skin texture --quality street style fashion photography, 85mm lens simulation, f/2.8 aperture, 1/250 shutter speed, ISO 200, balanced exposure, warm color temperature 5800K, medium contrast, enhanced highlights and controlled shadows, shot with Canon EOS R6, natural outdoor lighting with slight color enhancement for fashion editorial style.RéessayerClaude peut faire des erreurs. Assurez-vous de vérifier ses réponses. Sonnet 4
- go_fast
- lora_scale
- 1
- megapixels
- 1
- num_outputs
- 1
- aspect_ratio
- 2:3
- output_format
- jpg
- guidance_scale
- 3
- output_quality
- 100
- prompt_strength
- 0.8
- extra_lora_scale
- 1
- num_inference_steps
- 28
{ "model": "dev", "prompt": "a photo of fulbert with short fade haircut, clean-shaven face, dark skin with natural texture, athletic muscular build, casual confident pose with one hand adjusting denim jacket collar, relaxed expression looking slightly off-camera --ar 4:5 --style raw --subject wearing medium-wash blue denim jacket with classic trucker style, chest pockets, brass buttons, layered over light gray hoodie, cream-colored chino pants --accessories aviator sunglasses with gradient brown lenses and gold metal frames, luxury sports watch with green dial and brown leather strap --environment urban outdoor setting with lush green foliage wall, wrought iron gate or fence, blurred brick building architecture in background --lighting natural golden hour sunlight creating warm skin tones, soft directional lighting from left side, gentle shadows, bright outdoor ambiance --camera angle three-quarter body shot from slight low angle, capturing upper torso and partial legs --composition subject positioned in center-left following rule of thirds, vertical orientation emphasizing full outfit, balanced with natural background elements --post-processing vibrant color grading with enhanced blues and earth tones, high-definition clarity, lifestyle photography aesthetic --details sharp focus on subject with subtle depth of field on background, visible denim texture and stitching details, fabric layering definition, watch face reflection, natural skin texture --quality street style fashion photography, 85mm lens simulation, f/2.8 aperture, 1/250 shutter speed, ISO 200, balanced exposure, warm color temperature 5800K, medium contrast, enhanced highlights and controlled shadows, shot with Canon EOS R6, natural outdoor lighting with slight color enhancement for fashion editorial style.RéessayerClaude peut faire des erreurs. Assurez-vous de vérifier ses réponses. Sonnet 4", "go_fast": false, "lora_scale": 1, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "2:3", "output_format": "jpg", "guidance_scale": 3, "output_quality": 100, "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 fulbertsmart/fulbert using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "fulbertsmart/fulbert:fa806a081b89bfd111cd6d30bde9bcd4309a5e8a3b1f9504d77e7cbde7899f69", { input: { model: "dev", prompt: "a photo of fulbert with short fade haircut, clean-shaven face, dark skin with natural texture, athletic muscular build, casual confident pose with one hand adjusting denim jacket collar, relaxed expression looking slightly off-camera --ar 4:5 --style raw --subject wearing medium-wash blue denim jacket with classic trucker style, chest pockets, brass buttons, layered over light gray hoodie, cream-colored chino pants --accessories aviator sunglasses with gradient brown lenses and gold metal frames, luxury sports watch with green dial and brown leather strap --environment urban outdoor setting with lush green foliage wall, wrought iron gate or fence, blurred brick building architecture in background --lighting natural golden hour sunlight creating warm skin tones, soft directional lighting from left side, gentle shadows, bright outdoor ambiance --camera angle three-quarter body shot from slight low angle, capturing upper torso and partial legs --composition subject positioned in center-left following rule of thirds, vertical orientation emphasizing full outfit, balanced with natural background elements --post-processing vibrant color grading with enhanced blues and earth tones, high-definition clarity, lifestyle photography aesthetic --details sharp focus on subject with subtle depth of field on background, visible denim texture and stitching details, fabric layering definition, watch face reflection, natural skin texture --quality street style fashion photography, 85mm lens simulation, f/2.8 aperture, 1/250 shutter speed, ISO 200, balanced exposure, warm color temperature 5800K, medium contrast, enhanced highlights and controlled shadows, shot with Canon EOS R6, natural outdoor lighting with slight color enhancement for fashion editorial style.RéessayerClaude peut faire des erreurs. Assurez-vous de vérifier ses réponses. Sonnet 4", go_fast: false, lora_scale: 1, megapixels: "1", num_outputs: 1, aspect_ratio: "2:3", output_format: "jpg", guidance_scale: 3, output_quality: 100, 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 fulbertsmart/fulbert using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "fulbertsmart/fulbert:fa806a081b89bfd111cd6d30bde9bcd4309a5e8a3b1f9504d77e7cbde7899f69", input={ "model": "dev", "prompt": "a photo of fulbert with short fade haircut, clean-shaven face, dark skin with natural texture, athletic muscular build, casual confident pose with one hand adjusting denim jacket collar, relaxed expression looking slightly off-camera --ar 4:5 --style raw --subject wearing medium-wash blue denim jacket with classic trucker style, chest pockets, brass buttons, layered over light gray hoodie, cream-colored chino pants --accessories aviator sunglasses with gradient brown lenses and gold metal frames, luxury sports watch with green dial and brown leather strap --environment urban outdoor setting with lush green foliage wall, wrought iron gate or fence, blurred brick building architecture in background --lighting natural golden hour sunlight creating warm skin tones, soft directional lighting from left side, gentle shadows, bright outdoor ambiance --camera angle three-quarter body shot from slight low angle, capturing upper torso and partial legs --composition subject positioned in center-left following rule of thirds, vertical orientation emphasizing full outfit, balanced with natural background elements --post-processing vibrant color grading with enhanced blues and earth tones, high-definition clarity, lifestyle photography aesthetic --details sharp focus on subject with subtle depth of field on background, visible denim texture and stitching details, fabric layering definition, watch face reflection, natural skin texture --quality street style fashion photography, 85mm lens simulation, f/2.8 aperture, 1/250 shutter speed, ISO 200, balanced exposure, warm color temperature 5800K, medium contrast, enhanced highlights and controlled shadows, shot with Canon EOS R6, natural outdoor lighting with slight color enhancement for fashion editorial style.RéessayerClaude peut faire des erreurs. Assurez-vous de vérifier ses réponses. Sonnet 4", "go_fast": False, "lora_scale": 1, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "2:3", "output_format": "jpg", "guidance_scale": 3, "output_quality": 100, "prompt_strength": 0.8, "extra_lora_scale": 1, "num_inference_steps": 28 } ) # To access the file URL: print(output[0].url()) #=> "http://example.com" # To write the file to disk: with open("my-image.png", "wb") as file: file.write(output[0].read())
To learn more, take a look at the guide on getting started with Python.
Run fulbertsmart/fulbert 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": "fulbertsmart/fulbert:fa806a081b89bfd111cd6d30bde9bcd4309a5e8a3b1f9504d77e7cbde7899f69", "input": { "model": "dev", "prompt": "a photo of fulbert with short fade haircut, clean-shaven face, dark skin with natural texture, athletic muscular build, casual confident pose with one hand adjusting denim jacket collar, relaxed expression looking slightly off-camera --ar 4:5 --style raw --subject wearing medium-wash blue denim jacket with classic trucker style, chest pockets, brass buttons, layered over light gray hoodie, cream-colored chino pants --accessories aviator sunglasses with gradient brown lenses and gold metal frames, luxury sports watch with green dial and brown leather strap --environment urban outdoor setting with lush green foliage wall, wrought iron gate or fence, blurred brick building architecture in background --lighting natural golden hour sunlight creating warm skin tones, soft directional lighting from left side, gentle shadows, bright outdoor ambiance --camera angle three-quarter body shot from slight low angle, capturing upper torso and partial legs --composition subject positioned in center-left following rule of thirds, vertical orientation emphasizing full outfit, balanced with natural background elements --post-processing vibrant color grading with enhanced blues and earth tones, high-definition clarity, lifestyle photography aesthetic --details sharp focus on subject with subtle depth of field on background, visible denim texture and stitching details, fabric layering definition, watch face reflection, natural skin texture --quality street style fashion photography, 85mm lens simulation, f/2.8 aperture, 1/250 shutter speed, ISO 200, balanced exposure, warm color temperature 5800K, medium contrast, enhanced highlights and controlled shadows, shot with Canon EOS R6, natural outdoor lighting with slight color enhancement for fashion editorial style.RéessayerClaude peut faire des erreurs. Assurez-vous de vérifier ses réponses. Sonnet 4", "go_fast": false, "lora_scale": 1, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "2:3", "output_format": "jpg", "guidance_scale": 3, "output_quality": 100, "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-06-04T05:45:04.110015Z", "created_at": "2025-06-04T05:44:55.741000Z", "data_removed": false, "error": null, "id": "vp0fvpmyqnrmc0cq75w9w8bhqw", "input": { "model": "dev", "prompt": "a photo of fulbert with short fade haircut, clean-shaven face, dark skin with natural texture, athletic muscular build, casual confident pose with one hand adjusting denim jacket collar, relaxed expression looking slightly off-camera --ar 4:5 --style raw --subject wearing medium-wash blue denim jacket with classic trucker style, chest pockets, brass buttons, layered over light gray hoodie, cream-colored chino pants --accessories aviator sunglasses with gradient brown lenses and gold metal frames, luxury sports watch with green dial and brown leather strap --environment urban outdoor setting with lush green foliage wall, wrought iron gate or fence, blurred brick building architecture in background --lighting natural golden hour sunlight creating warm skin tones, soft directional lighting from left side, gentle shadows, bright outdoor ambiance --camera angle three-quarter body shot from slight low angle, capturing upper torso and partial legs --composition subject positioned in center-left following rule of thirds, vertical orientation emphasizing full outfit, balanced with natural background elements --post-processing vibrant color grading with enhanced blues and earth tones, high-definition clarity, lifestyle photography aesthetic --details sharp focus on subject with subtle depth of field on background, visible denim texture and stitching details, fabric layering definition, watch face reflection, natural skin texture --quality street style fashion photography, 85mm lens simulation, f/2.8 aperture, 1/250 shutter speed, ISO 200, balanced exposure, warm color temperature 5800K, medium contrast, enhanced highlights and controlled shadows, shot with Canon EOS R6, natural outdoor lighting with slight color enhancement for fashion editorial style.RéessayerClaude peut faire des erreurs. Assurez-vous de vérifier ses réponses. Sonnet 4", "go_fast": false, "lora_scale": 1, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "2:3", "output_format": "jpg", "guidance_scale": 3, "output_quality": 100, "prompt_strength": 0.8, "extra_lora_scale": 1, "num_inference_steps": 28 }, "logs": "free=27095923146752\nDownloading weights\n2025-06-04T05:44:56Z | INFO | [ Initiating ] chunk_size=150M dest=/tmp/tmps9q2n921/weights url=https://replicate.delivery/xezq/Soofk1wRnPVpUSORpMNOvQC521DoUeTEhRwfS2Rt7IaVzumpA/trained_model.tar\n2025-06-04T05:44:56Z | INFO | [ Cache Service ] enabled=true scheme=http target=hermes.services.svc.cluster.local\n2025-06-04T05:44:56Z | INFO | [ Cache URL Rewrite ] enabled=true target_url=http://hermes.services.svc.cluster.local/replicate.delivery/xezq/Soofk1wRnPVpUSORpMNOvQC521DoUeTEhRwfS2Rt7IaVzumpA/trained_model.tar url=https://replicate.delivery/xezq/Soofk1wRnPVpUSORpMNOvQC521DoUeTEhRwfS2Rt7IaVzumpA/trained_model.tar\n2025-06-04T05:44:56Z | INFO | [ Redirect ] redirect_url=http://r8-east4-loras-ric1.cwlota.com/871f49be9089c61c84f63d46956fc86ba354f6a64cec27baf3bdd12602c78df3?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Checksum-Mode=ENABLED&X-Amz-Credential=CWNZUVKLDHXVHEZN%2F20250604%2FUS-EAST-04A%2Fs3%2Faws4_request&X-Amz-Date=20250604T054456Z&X-Amz-Expires=600&X-Amz-SignedHeaders=host&x-id=GetObject&X-Amz-Signature=c5f4bc247c08281468d95a8acdabbfb8d05fe2d1dbb1550b68ab013fa21b4774 url=http://hermes.services.svc.cluster.local/replicate.delivery/xezq/Soofk1wRnPVpUSORpMNOvQC521DoUeTEhRwfS2Rt7IaVzumpA/trained_model.tar\n2025-06-04T05:44:56Z | INFO | [ Complete ] dest=/tmp/tmps9q2n921/weights size=\"172 MB\" total_elapsed=0.259s url=https://replicate.delivery/xezq/Soofk1wRnPVpUSORpMNOvQC521DoUeTEhRwfS2Rt7IaVzumpA/trained_model.tar\nDownloaded weights in 0.32s\nLoaded LoRAs in 0.88s\nUsing seed: 64053\nPrompt: a photo of fulbert with short fade haircut, clean-shaven face, dark skin with natural texture, athletic muscular build, casual confident pose with one hand adjusting denim jacket collar, relaxed expression looking slightly off-camera --ar 4:5 --style raw --subject wearing medium-wash blue denim jacket with classic trucker style, chest pockets, brass buttons, layered over light gray hoodie, cream-colored chino pants --accessories aviator sunglasses with gradient brown lenses and gold metal frames, luxury sports watch with green dial and brown leather strap --environment urban outdoor setting with lush green foliage wall, wrought iron gate or fence, blurred brick building architecture in background --lighting natural golden hour sunlight creating warm skin tones, soft directional lighting from left side, gentle shadows, bright outdoor ambiance --camera angle three-quarter body shot from slight low angle, capturing upper torso and partial legs --composition subject positioned in center-left following rule of thirds, vertical orientation emphasizing full outfit, balanced with natural background elements --post-processing vibrant color grading with enhanced blues and earth tones, high-definition clarity, lifestyle photography aesthetic --details sharp focus on subject with subtle depth of field on background, visible denim texture and stitching details, fabric layering definition, watch face reflection, natural skin texture --quality street style fashion photography, 85mm lens simulation, f/2.8 aperture, 1/250 shutter speed, ISO 200, balanced exposure, warm color temperature 5800K, medium contrast, enhanced highlights and controlled shadows, shot with Canon EOS R6, natural outdoor lighting with slight color enhancement for fashion editorial style.RéessayerClaude peut faire des erreurs. Assurez-vous de vérifier ses réponses. Sonnet 4\n[!] txt2img mode\n 0%| | 0/28 [00:00<?, ?it/s]\n 4%|▎ | 1/28 [00:00<00:06, 3.96it/s]\n 7%|▋ | 2/28 [00:00<00:05, 4.48it/s]\n 11%|█ | 3/28 [00:00<00:05, 4.22it/s]\n 14%|█▍ | 4/28 [00:00<00:05, 4.11it/s]\n 18%|█▊ | 5/28 [00:01<00:05, 4.04it/s]\n 21%|██▏ | 6/28 [00:01<00:05, 4.01it/s]\n 25%|██▌ | 7/28 [00:01<00:05, 3.99it/s]\n 29%|██▊ | 8/28 [00:01<00:05, 3.98it/s]\n 32%|███▏ | 9/28 [00:02<00:04, 3.97it/s]\n 36%|███▌ | 10/28 [00:02<00:04, 3.96it/s]\n 39%|███▉ | 11/28 [00:02<00:04, 3.96it/s]\n 43%|████▎ | 12/28 [00:02<00:04, 3.96it/s]\n 46%|████▋ | 13/28 [00:03<00:03, 3.96it/s]\n 50%|█████ | 14/28 [00:03<00:03, 3.95it/s]\n 54%|█████▎ | 15/28 [00:03<00:03, 3.95it/s]\n 57%|█████▋ | 16/28 [00:04<00:03, 3.95it/s]\n 61%|██████ | 17/28 [00:04<00:02, 3.95it/s]\n 64%|██████▍ | 18/28 [00:04<00:02, 3.95it/s]\n 68%|██████▊ | 19/28 [00:04<00:02, 3.95it/s]\n 71%|███████▏ | 20/28 [00:05<00:02, 3.95it/s]\n 75%|███████▌ | 21/28 [00:05<00:01, 3.94it/s]\n 79%|███████▊ | 22/28 [00:05<00:01, 3.94it/s]\n 82%|████████▏ | 23/28 [00:05<00:01, 3.94it/s]\n 86%|████████▌ | 24/28 [00:06<00:01, 3.94it/s]\n 89%|████████▉ | 25/28 [00:06<00:00, 3.94it/s]\n 93%|█████████▎| 26/28 [00:06<00:00, 3.94it/s]\n 96%|█████████▋| 27/28 [00:06<00:00, 3.94it/s]\n100%|██████████| 28/28 [00:07<00:00, 3.94it/s]\n100%|██████████| 28/28 [00:07<00:00, 3.97it/s]\nTotal safe images: 1 out of 1", "metrics": { "predict_time": 8.160452853, "total_time": 8.369015 }, "output": [ "https://replicate.delivery/xezq/m3miFfOpcgXnPKuVmVvnSPMPEmIb5Auw8JMu2W1IpRTweYzUA/out-0.jpg" ], "started_at": "2025-06-04T05:44:55.949562Z", "status": "succeeded", "urls": { "stream": "https://stream.replicate.com/v1/files/bcwr-iuqtjbc442tbh6p5e7mkdwqvggmfourl3cqqde3si2cla4audqka", "get": "https://api.replicate.com/v1/predictions/vp0fvpmyqnrmc0cq75w9w8bhqw", "cancel": "https://api.replicate.com/v1/predictions/vp0fvpmyqnrmc0cq75w9w8bhqw/cancel" }, "version": "fa806a081b89bfd111cd6d30bde9bcd4309a5e8a3b1f9504d77e7cbde7899f69" }
Generated infree=27095923146752 Downloading weights 2025-06-04T05:44:56Z | INFO | [ Initiating ] chunk_size=150M dest=/tmp/tmps9q2n921/weights url=https://replicate.delivery/xezq/Soofk1wRnPVpUSORpMNOvQC521DoUeTEhRwfS2Rt7IaVzumpA/trained_model.tar 2025-06-04T05:44:56Z | INFO | [ Cache Service ] enabled=true scheme=http target=hermes.services.svc.cluster.local 2025-06-04T05:44:56Z | INFO | [ Cache URL Rewrite ] enabled=true target_url=http://hermes.services.svc.cluster.local/replicate.delivery/xezq/Soofk1wRnPVpUSORpMNOvQC521DoUeTEhRwfS2Rt7IaVzumpA/trained_model.tar url=https://replicate.delivery/xezq/Soofk1wRnPVpUSORpMNOvQC521DoUeTEhRwfS2Rt7IaVzumpA/trained_model.tar 2025-06-04T05:44:56Z | INFO | [ Redirect ] redirect_url=http://r8-east4-loras-ric1.cwlota.com/871f49be9089c61c84f63d46956fc86ba354f6a64cec27baf3bdd12602c78df3?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Checksum-Mode=ENABLED&X-Amz-Credential=CWNZUVKLDHXVHEZN%2F20250604%2FUS-EAST-04A%2Fs3%2Faws4_request&X-Amz-Date=20250604T054456Z&X-Amz-Expires=600&X-Amz-SignedHeaders=host&x-id=GetObject&X-Amz-Signature=c5f4bc247c08281468d95a8acdabbfb8d05fe2d1dbb1550b68ab013fa21b4774 url=http://hermes.services.svc.cluster.local/replicate.delivery/xezq/Soofk1wRnPVpUSORpMNOvQC521DoUeTEhRwfS2Rt7IaVzumpA/trained_model.tar 2025-06-04T05:44:56Z | INFO | [ Complete ] dest=/tmp/tmps9q2n921/weights size="172 MB" total_elapsed=0.259s url=https://replicate.delivery/xezq/Soofk1wRnPVpUSORpMNOvQC521DoUeTEhRwfS2Rt7IaVzumpA/trained_model.tar Downloaded weights in 0.32s Loaded LoRAs in 0.88s Using seed: 64053 Prompt: a photo of fulbert with short fade haircut, clean-shaven face, dark skin with natural texture, athletic muscular build, casual confident pose with one hand adjusting denim jacket collar, relaxed expression looking slightly off-camera --ar 4:5 --style raw --subject wearing medium-wash blue denim jacket with classic trucker style, chest pockets, brass buttons, layered over light gray hoodie, cream-colored chino pants --accessories aviator sunglasses with gradient brown lenses and gold metal frames, luxury sports watch with green dial and brown leather strap --environment urban outdoor setting with lush green foliage wall, wrought iron gate or fence, blurred brick building architecture in background --lighting natural golden hour sunlight creating warm skin tones, soft directional lighting from left side, gentle shadows, bright outdoor ambiance --camera angle three-quarter body shot from slight low angle, capturing upper torso and partial legs --composition subject positioned in center-left following rule of thirds, vertical orientation emphasizing full outfit, balanced with natural background elements --post-processing vibrant color grading with enhanced blues and earth tones, high-definition clarity, lifestyle photography aesthetic --details sharp focus on subject with subtle depth of field on background, visible denim texture and stitching details, fabric layering definition, watch face reflection, natural skin texture --quality street style fashion photography, 85mm lens simulation, f/2.8 aperture, 1/250 shutter speed, ISO 200, balanced exposure, warm color temperature 5800K, medium contrast, enhanced highlights and controlled shadows, shot with Canon EOS R6, natural outdoor lighting with slight color enhancement for fashion editorial style.RéessayerClaude peut faire des erreurs. Assurez-vous de vérifier ses réponses. Sonnet 4 [!] txt2img mode 0%| | 0/28 [00:00<?, ?it/s] 4%|▎ | 1/28 [00:00<00:06, 3.96it/s] 7%|▋ | 2/28 [00:00<00:05, 4.48it/s] 11%|█ | 3/28 [00:00<00:05, 4.22it/s] 14%|█▍ | 4/28 [00:00<00:05, 4.11it/s] 18%|█▊ | 5/28 [00:01<00:05, 4.04it/s] 21%|██▏ | 6/28 [00:01<00:05, 4.01it/s] 25%|██▌ | 7/28 [00:01<00:05, 3.99it/s] 29%|██▊ | 8/28 [00:01<00:05, 3.98it/s] 32%|███▏ | 9/28 [00:02<00:04, 3.97it/s] 36%|███▌ | 10/28 [00:02<00:04, 3.96it/s] 39%|███▉ | 11/28 [00:02<00:04, 3.96it/s] 43%|████▎ | 12/28 [00:02<00:04, 3.96it/s] 46%|████▋ | 13/28 [00:03<00:03, 3.96it/s] 50%|█████ | 14/28 [00:03<00:03, 3.95it/s] 54%|█████▎ | 15/28 [00:03<00:03, 3.95it/s] 57%|█████▋ | 16/28 [00:04<00:03, 3.95it/s] 61%|██████ | 17/28 [00:04<00:02, 3.95it/s] 64%|██████▍ | 18/28 [00:04<00:02, 3.95it/s] 68%|██████▊ | 19/28 [00:04<00:02, 3.95it/s] 71%|███████▏ | 20/28 [00:05<00:02, 3.95it/s] 75%|███████▌ | 21/28 [00:05<00:01, 3.94it/s] 79%|███████▊ | 22/28 [00:05<00:01, 3.94it/s] 82%|████████▏ | 23/28 [00:05<00:01, 3.94it/s] 86%|████████▌ | 24/28 [00:06<00:01, 3.94it/s] 89%|████████▉ | 25/28 [00:06<00:00, 3.94it/s] 93%|█████████▎| 26/28 [00:06<00:00, 3.94it/s] 96%|█████████▋| 27/28 [00:06<00:00, 3.94it/s] 100%|██████████| 28/28 [00:07<00:00, 3.94it/s] 100%|██████████| 28/28 [00:07<00:00, 3.97it/s] Total safe images: 1 out of 1
Prediction
fulbertsmart/fulbert:fa806a081b89bfd111cd6d30bde9bcd4309a5e8a3b1f9504d77e7cbde7899f69IDrersnef5h9rma0cq75wtzn8za8StatusSucceededSourceWebHardwareH100Total durationCreatedInput
- model
- dev
- prompt
- a photo of fulbert with short fade haircut, clean-shaven face, dark skin with natural texture, athletic muscular build, casual confident pose with one hand adjusting denim jacket collar, relaxed expression looking slightly off-camera --ar 4:5 --style raw --subject wearing medium-wash blue denim jacket with classic trucker style, chest pockets, brass buttons, layered over light gray hoodie, cream-colored chino pants --accessories aviator sunglasses with gradient brown lenses and gold metal frames, luxury sports watch with green dial and brown leather strap --environment urban outdoor setting with lush green foliage wall, wrought iron gate or fence, blurred brick building architecture in background --lighting natural golden hour sunlight creating warm skin tones, soft directional lighting from left side, gentle shadows, bright outdoor ambiance --camera angle three-quarter body shot from slight low angle, capturing upper torso and partial legs --composition subject positioned in center-left following rule of thirds, vertical orientation emphasizing full outfit, balanced with natural background elements --post-processing vibrant color grading with enhanced blues and earth tones, high-definition clarity, lifestyle photography aesthetic --details sharp focus on subject with subtle depth of field on background, visible denim texture and stitching details, fabric layering definition, watch face reflection, natural skin texture --quality street style fashion photography, 85mm lens simulation, f/2.8 aperture, 1/250 shutter speed, ISO 200, balanced exposure, warm color temperature 5800K, medium contrast, enhanced highlights and controlled shadows, shot with Canon EOS R6, natural outdoor lighting with slight color enhancement for fashion editorial style.
- go_fast
- lora_scale
- 1
- megapixels
- 1
- num_outputs
- 1
- aspect_ratio
- 4:5
- output_format
- jpg
- guidance_scale
- 3
- output_quality
- 100
- prompt_strength
- 0.8
- extra_lora_scale
- 1
- num_inference_steps
- 28
{ "model": "dev", "prompt": "a photo of fulbert with short fade haircut, clean-shaven face, dark skin with natural texture, athletic muscular build, casual confident pose with one hand adjusting denim jacket collar, relaxed expression looking slightly off-camera --ar 4:5 --style raw --subject wearing medium-wash blue denim jacket with classic trucker style, chest pockets, brass buttons, layered over light gray hoodie, cream-colored chino pants --accessories aviator sunglasses with gradient brown lenses and gold metal frames, luxury sports watch with green dial and brown leather strap --environment urban outdoor setting with lush green foliage wall, wrought iron gate or fence, blurred brick building architecture in background --lighting natural golden hour sunlight creating warm skin tones, soft directional lighting from left side, gentle shadows, bright outdoor ambiance --camera angle three-quarter body shot from slight low angle, capturing upper torso and partial legs --composition subject positioned in center-left following rule of thirds, vertical orientation emphasizing full outfit, balanced with natural background elements --post-processing vibrant color grading with enhanced blues and earth tones, high-definition clarity, lifestyle photography aesthetic --details sharp focus on subject with subtle depth of field on background, visible denim texture and stitching details, fabric layering definition, watch face reflection, natural skin texture --quality street style fashion photography, 85mm lens simulation, f/2.8 aperture, 1/250 shutter speed, ISO 200, balanced exposure, warm color temperature 5800K, medium contrast, enhanced highlights and controlled shadows, shot with Canon EOS R6, natural outdoor lighting with slight color enhancement for fashion editorial style.", "go_fast": false, "lora_scale": 1, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "4:5", "output_format": "jpg", "guidance_scale": 3, "output_quality": 100, "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 fulbertsmart/fulbert using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "fulbertsmart/fulbert:fa806a081b89bfd111cd6d30bde9bcd4309a5e8a3b1f9504d77e7cbde7899f69", { input: { model: "dev", prompt: "a photo of fulbert with short fade haircut, clean-shaven face, dark skin with natural texture, athletic muscular build, casual confident pose with one hand adjusting denim jacket collar, relaxed expression looking slightly off-camera --ar 4:5 --style raw --subject wearing medium-wash blue denim jacket with classic trucker style, chest pockets, brass buttons, layered over light gray hoodie, cream-colored chino pants --accessories aviator sunglasses with gradient brown lenses and gold metal frames, luxury sports watch with green dial and brown leather strap --environment urban outdoor setting with lush green foliage wall, wrought iron gate or fence, blurred brick building architecture in background --lighting natural golden hour sunlight creating warm skin tones, soft directional lighting from left side, gentle shadows, bright outdoor ambiance --camera angle three-quarter body shot from slight low angle, capturing upper torso and partial legs --composition subject positioned in center-left following rule of thirds, vertical orientation emphasizing full outfit, balanced with natural background elements --post-processing vibrant color grading with enhanced blues and earth tones, high-definition clarity, lifestyle photography aesthetic --details sharp focus on subject with subtle depth of field on background, visible denim texture and stitching details, fabric layering definition, watch face reflection, natural skin texture --quality street style fashion photography, 85mm lens simulation, f/2.8 aperture, 1/250 shutter speed, ISO 200, balanced exposure, warm color temperature 5800K, medium contrast, enhanced highlights and controlled shadows, shot with Canon EOS R6, natural outdoor lighting with slight color enhancement for fashion editorial style.", go_fast: false, lora_scale: 1, megapixels: "1", num_outputs: 1, aspect_ratio: "4:5", output_format: "jpg", guidance_scale: 3, output_quality: 100, 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 fulbertsmart/fulbert using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "fulbertsmart/fulbert:fa806a081b89bfd111cd6d30bde9bcd4309a5e8a3b1f9504d77e7cbde7899f69", input={ "model": "dev", "prompt": "a photo of fulbert with short fade haircut, clean-shaven face, dark skin with natural texture, athletic muscular build, casual confident pose with one hand adjusting denim jacket collar, relaxed expression looking slightly off-camera --ar 4:5 --style raw --subject wearing medium-wash blue denim jacket with classic trucker style, chest pockets, brass buttons, layered over light gray hoodie, cream-colored chino pants --accessories aviator sunglasses with gradient brown lenses and gold metal frames, luxury sports watch with green dial and brown leather strap --environment urban outdoor setting with lush green foliage wall, wrought iron gate or fence, blurred brick building architecture in background --lighting natural golden hour sunlight creating warm skin tones, soft directional lighting from left side, gentle shadows, bright outdoor ambiance --camera angle three-quarter body shot from slight low angle, capturing upper torso and partial legs --composition subject positioned in center-left following rule of thirds, vertical orientation emphasizing full outfit, balanced with natural background elements --post-processing vibrant color grading with enhanced blues and earth tones, high-definition clarity, lifestyle photography aesthetic --details sharp focus on subject with subtle depth of field on background, visible denim texture and stitching details, fabric layering definition, watch face reflection, natural skin texture --quality street style fashion photography, 85mm lens simulation, f/2.8 aperture, 1/250 shutter speed, ISO 200, balanced exposure, warm color temperature 5800K, medium contrast, enhanced highlights and controlled shadows, shot with Canon EOS R6, natural outdoor lighting with slight color enhancement for fashion editorial style.", "go_fast": False, "lora_scale": 1, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "4:5", "output_format": "jpg", "guidance_scale": 3, "output_quality": 100, "prompt_strength": 0.8, "extra_lora_scale": 1, "num_inference_steps": 28 } ) # To access the file URL: print(output[0].url()) #=> "http://example.com" # To write the file to disk: with open("my-image.png", "wb") as file: file.write(output[0].read())
To learn more, take a look at the guide on getting started with Python.
Run fulbertsmart/fulbert 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": "fulbertsmart/fulbert:fa806a081b89bfd111cd6d30bde9bcd4309a5e8a3b1f9504d77e7cbde7899f69", "input": { "model": "dev", "prompt": "a photo of fulbert with short fade haircut, clean-shaven face, dark skin with natural texture, athletic muscular build, casual confident pose with one hand adjusting denim jacket collar, relaxed expression looking slightly off-camera --ar 4:5 --style raw --subject wearing medium-wash blue denim jacket with classic trucker style, chest pockets, brass buttons, layered over light gray hoodie, cream-colored chino pants --accessories aviator sunglasses with gradient brown lenses and gold metal frames, luxury sports watch with green dial and brown leather strap --environment urban outdoor setting with lush green foliage wall, wrought iron gate or fence, blurred brick building architecture in background --lighting natural golden hour sunlight creating warm skin tones, soft directional lighting from left side, gentle shadows, bright outdoor ambiance --camera angle three-quarter body shot from slight low angle, capturing upper torso and partial legs --composition subject positioned in center-left following rule of thirds, vertical orientation emphasizing full outfit, balanced with natural background elements --post-processing vibrant color grading with enhanced blues and earth tones, high-definition clarity, lifestyle photography aesthetic --details sharp focus on subject with subtle depth of field on background, visible denim texture and stitching details, fabric layering definition, watch face reflection, natural skin texture --quality street style fashion photography, 85mm lens simulation, f/2.8 aperture, 1/250 shutter speed, ISO 200, balanced exposure, warm color temperature 5800K, medium contrast, enhanced highlights and controlled shadows, shot with Canon EOS R6, natural outdoor lighting with slight color enhancement for fashion editorial style.", "go_fast": false, "lora_scale": 1, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "4:5", "output_format": "jpg", "guidance_scale": 3, "output_quality": 100, "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-06-04T05:46:28.131721Z", "created_at": "2025-06-04T05:46:19.402000Z", "data_removed": false, "error": null, "id": "rersnef5h9rma0cq75wtzn8za8", "input": { "model": "dev", "prompt": "a photo of fulbert with short fade haircut, clean-shaven face, dark skin with natural texture, athletic muscular build, casual confident pose with one hand adjusting denim jacket collar, relaxed expression looking slightly off-camera --ar 4:5 --style raw --subject wearing medium-wash blue denim jacket with classic trucker style, chest pockets, brass buttons, layered over light gray hoodie, cream-colored chino pants --accessories aviator sunglasses with gradient brown lenses and gold metal frames, luxury sports watch with green dial and brown leather strap --environment urban outdoor setting with lush green foliage wall, wrought iron gate or fence, blurred brick building architecture in background --lighting natural golden hour sunlight creating warm skin tones, soft directional lighting from left side, gentle shadows, bright outdoor ambiance --camera angle three-quarter body shot from slight low angle, capturing upper torso and partial legs --composition subject positioned in center-left following rule of thirds, vertical orientation emphasizing full outfit, balanced with natural background elements --post-processing vibrant color grading with enhanced blues and earth tones, high-definition clarity, lifestyle photography aesthetic --details sharp focus on subject with subtle depth of field on background, visible denim texture and stitching details, fabric layering definition, watch face reflection, natural skin texture --quality street style fashion photography, 85mm lens simulation, f/2.8 aperture, 1/250 shutter speed, ISO 200, balanced exposure, warm color temperature 5800K, medium contrast, enhanced highlights and controlled shadows, shot with Canon EOS R6, natural outdoor lighting with slight color enhancement for fashion editorial style.", "go_fast": false, "lora_scale": 1, "megapixels": "1", "num_outputs": 1, "aspect_ratio": "4:5", "output_format": "jpg", "guidance_scale": 3, "output_quality": 100, "prompt_strength": 0.8, "extra_lora_scale": 1, "num_inference_steps": 28 }, "logs": "Loaded LoRAs in 0.58s\nUsing seed: 44150\nPrompt: a photo of fulbert with short fade haircut, clean-shaven face, dark skin with natural texture, athletic muscular build, casual confident pose with one hand adjusting denim jacket collar, relaxed expression looking slightly off-camera --ar 4:5 --style raw --subject wearing medium-wash blue denim jacket with classic trucker style, chest pockets, brass buttons, layered over light gray hoodie, cream-colored chino pants --accessories aviator sunglasses with gradient brown lenses and gold metal frames, luxury sports watch with green dial and brown leather strap --environment urban outdoor setting with lush green foliage wall, wrought iron gate or fence, blurred brick building architecture in background --lighting natural golden hour sunlight creating warm skin tones, soft directional lighting from left side, gentle shadows, bright outdoor ambiance --camera angle three-quarter body shot from slight low angle, capturing upper torso and partial legs --composition subject positioned in center-left following rule of thirds, vertical orientation emphasizing full outfit, balanced with natural background elements --post-processing vibrant color grading with enhanced blues and earth tones, high-definition clarity, lifestyle photography aesthetic --details sharp focus on subject with subtle depth of field on background, visible denim texture and stitching details, fabric layering definition, watch face reflection, natural skin texture --quality street style fashion photography, 85mm lens simulation, f/2.8 aperture, 1/250 shutter speed, ISO 200, balanced exposure, warm color temperature 5800K, medium contrast, enhanced highlights and controlled shadows, shot with Canon EOS R6, natural outdoor lighting with slight color enhancement for fashion editorial style.\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.18it/s]\n 18%|█▊ | 5/28 [00:01<00:05, 4.12it/s]\n 21%|██▏ | 6/28 [00:01<00:05, 4.08it/s]\n 25%|██▌ | 7/28 [00:01<00:05, 4.06it/s]\n 29%|██▊ | 8/28 [00:01<00:04, 4.04it/s]\n 32%|███▏ | 9/28 [00:02<00:04, 4.02it/s]\n 36%|███▌ | 10/28 [00:02<00:04, 4.01it/s]\n 39%|███▉ | 11/28 [00:02<00:04, 4.01it/s]\n 43%|████▎ | 12/28 [00:02<00:03, 4.01it/s]\n 46%|████▋ | 13/28 [00:03<00:03, 4.01it/s]\n 50%|█████ | 14/28 [00:03<00:03, 4.01it/s]\n 54%|█████▎ | 15/28 [00:03<00:03, 4.01it/s]\n 57%|█████▋ | 16/28 [00:03<00:02, 4.01it/s]\n 61%|██████ | 17/28 [00:04<00:02, 4.01it/s]\n 64%|██████▍ | 18/28 [00:04<00:02, 4.02it/s]\n 68%|██████▊ | 19/28 [00:04<00:02, 4.01it/s]\n 71%|███████▏ | 20/28 [00:04<00:01, 4.02it/s]\n 75%|███████▌ | 21/28 [00:05<00:01, 4.01it/s]\n 79%|███████▊ | 22/28 [00:05<00:01, 4.02it/s]\n 82%|████████▏ | 23/28 [00:05<00:01, 4.01it/s]\n 86%|████████▌ | 24/28 [00:05<00:00, 4.01it/s]\n 89%|████████▉ | 25/28 [00:06<00:00, 4.02it/s]\n 93%|█████████▎| 26/28 [00:06<00:00, 4.02it/s]\n 96%|█████████▋| 27/28 [00:06<00:00, 4.01it/s]\n100%|██████████| 28/28 [00:06<00:00, 4.02it/s]\n100%|██████████| 28/28 [00:06<00:00, 4.04it/s]\nTotal safe images: 1 out of 1", "metrics": { "predict_time": 7.737887029, "total_time": 8.729721 }, "output": [ "https://replicate.delivery/xezq/bSvicLzVhXZmP1SgxPsGnuhvsmemkP11lVneocT46lq0exmpA/out-0.jpg" ], "started_at": "2025-06-04T05:46:20.393834Z", "status": "succeeded", "urls": { "stream": "https://stream.replicate.com/v1/files/bcwr-4safczcciyakvf7uwreibq35mrqznvtsr3oiutprpuynpmacrz2q", "get": "https://api.replicate.com/v1/predictions/rersnef5h9rma0cq75wtzn8za8", "cancel": "https://api.replicate.com/v1/predictions/rersnef5h9rma0cq75wtzn8za8/cancel" }, "version": "fa806a081b89bfd111cd6d30bde9bcd4309a5e8a3b1f9504d77e7cbde7899f69" }
Generated inLoaded LoRAs in 0.58s Using seed: 44150 Prompt: a photo of fulbert with short fade haircut, clean-shaven face, dark skin with natural texture, athletic muscular build, casual confident pose with one hand adjusting denim jacket collar, relaxed expression looking slightly off-camera --ar 4:5 --style raw --subject wearing medium-wash blue denim jacket with classic trucker style, chest pockets, brass buttons, layered over light gray hoodie, cream-colored chino pants --accessories aviator sunglasses with gradient brown lenses and gold metal frames, luxury sports watch with green dial and brown leather strap --environment urban outdoor setting with lush green foliage wall, wrought iron gate or fence, blurred brick building architecture in background --lighting natural golden hour sunlight creating warm skin tones, soft directional lighting from left side, gentle shadows, bright outdoor ambiance --camera angle three-quarter body shot from slight low angle, capturing upper torso and partial legs --composition subject positioned in center-left following rule of thirds, vertical orientation emphasizing full outfit, balanced with natural background elements --post-processing vibrant color grading with enhanced blues and earth tones, high-definition clarity, lifestyle photography aesthetic --details sharp focus on subject with subtle depth of field on background, visible denim texture and stitching details, fabric layering definition, watch face reflection, natural skin texture --quality street style fashion photography, 85mm lens simulation, f/2.8 aperture, 1/250 shutter speed, ISO 200, balanced exposure, warm color temperature 5800K, medium contrast, enhanced highlights and controlled shadows, shot with Canon EOS R6, natural outdoor lighting with slight color enhancement for fashion editorial style. [!] 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.18it/s] 18%|█▊ | 5/28 [00:01<00:05, 4.12it/s] 21%|██▏ | 6/28 [00:01<00:05, 4.08it/s] 25%|██▌ | 7/28 [00:01<00:05, 4.06it/s] 29%|██▊ | 8/28 [00:01<00:04, 4.04it/s] 32%|███▏ | 9/28 [00:02<00:04, 4.02it/s] 36%|███▌ | 10/28 [00:02<00:04, 4.01it/s] 39%|███▉ | 11/28 [00:02<00:04, 4.01it/s] 43%|████▎ | 12/28 [00:02<00:03, 4.01it/s] 46%|████▋ | 13/28 [00:03<00:03, 4.01it/s] 50%|█████ | 14/28 [00:03<00:03, 4.01it/s] 54%|█████▎ | 15/28 [00:03<00:03, 4.01it/s] 57%|█████▋ | 16/28 [00:03<00:02, 4.01it/s] 61%|██████ | 17/28 [00:04<00:02, 4.01it/s] 64%|██████▍ | 18/28 [00:04<00:02, 4.02it/s] 68%|██████▊ | 19/28 [00:04<00:02, 4.01it/s] 71%|███████▏ | 20/28 [00:04<00:01, 4.02it/s] 75%|███████▌ | 21/28 [00:05<00:01, 4.01it/s] 79%|███████▊ | 22/28 [00:05<00:01, 4.02it/s] 82%|████████▏ | 23/28 [00:05<00:01, 4.01it/s] 86%|████████▌ | 24/28 [00:05<00:00, 4.01it/s] 89%|████████▉ | 25/28 [00:06<00:00, 4.02it/s] 93%|█████████▎| 26/28 [00:06<00:00, 4.02it/s] 96%|█████████▋| 27/28 [00:06<00:00, 4.01it/s] 100%|██████████| 28/28 [00:06<00:00, 4.02it/s] 100%|██████████| 28/28 [00:06<00:00, 4.04it/s] Total safe images: 1 out of 1
Want to make some of these yourself?
Run this model