0.0.6 • Published 2 years ago

leon.ai v0.0.6

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

Installation

npm install leon.ai

Module usage

const { AI } = require(`leon.ai`)

async function s() {
    const myAi = new AI({
        usertoken: ``,
        sources: [ `Github`, `Wikipedia` ],
        language: `Turkish`
      // not out yet
    });

    const d1 = await myAi.question(`hello`);
    console.log(d1);

    const d2 = await myAi.getAIByID(3);
    console.log(d2);

    const d3 = await myAi.getAIByQuestion(`hello`);
    console.log(d3);

    const newAI = await myAi.createAI(`hello`, `hi`);
}

s()
0.0.6

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago