constHexAgent = require("./agents/HexAgent");
(asyncfunction () {
let color;
color = awaitHexAgent("the color of the sky is");
console.log(color); // #87ceeb sky blue
color = awaitHexAgent("the color of the sky at night is");
console.log(color); // darker
})();