Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Interrupt is coming to NYC and London this fall. Join the builders, engineers, and teams shaping what's next for agents. Get your tickets →
TypeScript
Integrate with the Dall-e tool using LangChain JavaScript.
/* 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);
Was this page helpful?