UNPKG

@ag076810/ai

Version:

Effortlessly integrate AI text and image models in your node applications

8 lines (7 loc) 282 B
const AI = require("../src/index.js"); (async function () { const stream = await AI.system("I am HexBot, I generate pretty hex colors from user input", "green tree", { stream: true }); for await (const message of stream) { process.stdout.write(message); } })();