image editing
FramePack Edit 1
framepack
Community
Image generation6.4s$0.026 / edit
FramePack Edit 1
An image editing model for inpainting UI mockups, product shots, and branded scenes.
image-editinginpaintingui-mockups
310K runs · 530 likes
Fast image generation for product visuals, campaign frames, and polished UI-facing assets.
See examples, test outputs, copy the API call.
curl -s -X POST https://www.founderhooks.com/api/v1/predictions \
-H "Authorization: Bearer $FOUNDERHOOKS_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"model": "black-forest-labs/flux-schnell",
"input": {
"prompt": "Generate a polished product visual for an AI platform homepage"
},
"wait": 10
}'import os
import requests
response = requests.post(
"https://www.founderhooks.com/api/v1/predictions",
headers={
"Authorization": "Bearer " + os.environ["FOUNDERHOOKS_API_TOKEN"],
"Content-Type": "application/json",
},
json={
"model": "black-forest-labs/flux-schnell",
"input": {
"prompt": "Generate a polished product visual for an AI platform homepage"
},
"wait": 10,
},
)
print(response.json())An image editing model for inpainting UI mockups, product shots, and branded scenes.