Skip to main content
/* eslint-disable no-process-env */ import { DallEAPIWrapper } from "@langchain/openai";  const tool = new DallEAPIWrapper({  n: 1, // Default  model: "dall-e-3", // Default  apiKey: process.env.OPENAI_API_KEY, // Default });  const imageURL = await tool.invoke("a painting of a cat");  console.log(imageURL); 

Connect these docs programmatically to Claude, VSCode, and more via MCP for real-time answers.