UNPKG

@ag076810/ai

Version:

Effortlessly integrate AI text and image models in your node applications

8 lines (7 loc) 227 B
const AI = require("../src/index.js"); (async function () { const stream = await AI("the color of the sky is", { stream: true }); for await (const message of stream) { process.stdout.write(message); } })();