
The Kling O1: Image workflow is designed to transform text prompts into high-quality images, leveraging the power of the Kling O1 model. This workflow is particularly adept at incorporating up to 10 reference images, allowing users to guide both the style and content of the generated images. This feature is particularly useful for artists and designers who need to maintain consistency with existing visual assets. The workflow supports flexible aspect ratios and offers resolution options of 1K and 2K, making it suitable for a variety of professional applications.
Technically, the workflow utilizes the KlingOmniProImageNode to process the input text and reference images, translating them into a coherent visual output. The SaveImage node is used to store the generated images efficiently, ensuring that users can easily access and utilize the results. This combination of nodes provides a robust framework for generating detailed and stylistically consistent images, making it an invaluable tool for creative professionals looking to streamline their image generation process.
API
Use this workflow from code
Every Comfy workflow is a JSON graph. The payload below is this workflow, exactly as ComfyUI runs it — fetch it from the URL, keep it in version control, or load it in ComfyUI and run it node by node.
GET https://comfy.org/workflows/download/e5ecf2fd5b30.jsonFetching workflow JSON…
Run it from Python or TypeScript with the Comfy SDK. The same code targets Comfy Cloud or a ComfyUI you host yourself — only the base URL changes.
# Install (beta)
pip install comfy-sdk # Python
npm i @comfyorg/sdk # TypeScript
# Run "Kling O1: Image" (Python)
from comfy_sdk import Comfy
client = Comfy(api_key="comfyui-...")
# This workflow, exported in API format (see note below)
wf = client.workflows.from_file("api_kling_omni_image_api.json")
job = client.run(wf)
for output in job.get_outputs("5"): # SaveImage
output.to_file(output.name)The SDK takes a workflow in API format: open this workflow in ComfyUI and use File → Export Workflow (API). API access requires a Comfy Cloud plan with an API key. SDK docs · Get an API key
FAQ














