
This ComfyUI workflow is designed to facilitate intelligent conversations using OpenAI's advanced language models. By integrating nodes such as OpenAIChatNode and OpenAIChatConfig, this workflow allows users to seamlessly interact with AI for generating text-based responses. The workflow leverages the PreviewAny node to display outputs in real-time, ensuring a smooth interaction process. Additionally, the LoadImage and ImageBatch nodes support the inclusion of visual data, enhancing the context and richness of conversations. This workflow is particularly useful for developers and researchers who need to integrate AI-driven text generation into their applications or projects, providing a robust framework for engaging with OpenAI's API.
API
從程式碼使用此工作流
每個 Comfy 工作流都是一個 JSON 圖。下方的 payload 就是此工作流,與 ComfyUI 執行時完全相同 — 你可以從此 URL 取得、放入版本控制,或在 ComfyUI 載入並逐節點執行。
使用 Comfy SDK 以 TypeScript 或 Python 執行。相同程式碼可用於 Comfy Cloud 或你自架的 ComfyUI — 只需更改 base URL。
// Install (beta)
npm i @comfyorg/sdk
// Run "OpenAI:ChatGPT" (TypeScript)
import { Comfy } from "@comfyorg/sdk";
const client = new Comfy({ apiKey: "comfyui-..." });
// This workflow, exported in API format (see note below)
const wf = await client.workflows.fromFile("api_openai_chat_api.json");
const asset = client.assets.fromFile("input.png");
wf.setInput("5", "image", asset); // LoadImage
const job = await client.run(wf);
await job.getOutputs("19")[0].toFile("output.png"); // SaveTextSDK 需使用 API 格式的工作流:請在 ComfyUI 開啟此工作流,並使用 檔案 → 匯出工作流(API)。
常見問題













