UNPKG

@ag076810/ai

Version:

Effortlessly integrate AI text and image models in your node applications

11 lines (8 loc) 288 B
const HexAgent = require("./agents/HexAgent"); (async function () { let color; color = await HexAgent("the color of the sky is"); console.log(color); // #87ceeb sky blue color = await HexAgent("the color of the sky at night is"); console.log(color); // darker })();