Riverflow 1 Mini

AI Image Editing Model

$$ · 3.2¢

Sourceful's fast and cost-efficient image editing model optimized for speed and accessibility, delivering performance close to Riverflow 1 across most editing tasks

Riverflow 1 Mini API OpenAI-compatible

Integrate Riverflow 1 Mini through the Lumenfall OpenAI-compatible API to generate high-speed images and perform cost-efficient image editing within any application.

Base URL
https://api.lumenfall.ai/openai/v1
Model
riverflow-1-mini

Text to Image Generate

Create images from text descriptions

curl -X POST \
  https://api.lumenfall.ai/openai/v1/images/generations \
  -H "Authorization: Bearer $LUMENFALL_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "riverflow-1-mini",
    "prompt": "A serene mountain landscape at sunset",
    "size": "1024x1024"
  }'
# Response:
# { "created": 1234567890, "data": [{ "url": "https://...", "revised_prompt": "..." }] }

Image Editing Edit

Transform existing images with text instructions

curl -X POST \
  https://api.lumenfall.ai/openai/v1/images/edits \
  -H "Authorization: Bearer $LUMENFALL_API_KEY" \
  -F "model=riverflow-1-mini" \
  -F "[email protected]" \
  -F "prompt=Add a starry night sky to this image" \
  -F "size=1024x1024"
# Response:
# { "created": 1234567890, "data": [{ "url": "https://...", "revised_prompt": "..." }] }