2.0.0 • Published 3 years ago

coffeehouse v2.0.0

Weekly downloads
810
License
GPL-3.0-or-later
Repository
github
Last release
3 years ago

CoffeeHouse API Wrapper for JavaScript

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

Installation

npm i coffeehouse

Lydia Example

const { LydiaAI } = require("./index");

async function speak(apikey, text) {
  const api = new LydiaAI(apikey);
  const session = await api.createSession();
  console.log("Session ID: " + session.id);
  session.think_thought(text).then((data) => console.log(data.output));
}

speak("Your API Key", "Merhaba Dünya");