This is a very simple API Wrapper for the CoffeeHouse API. Using This Library only supports the V1IVA2.0 CoffeeHouse API which is based from this Documentation
npm i coffeehouseconst{ LydiaAI }=require("coffeehouse");asyncfunctionspeak(apikey,text){constapi=newLydiaAI(apikey);constsession=awaitapi.createSession();console.log("Session ID: "+session.id);session.think_thought(text).then((data)=>console.log(data.output));}speak("Your API Key","Hello World");