@abiodunjames/vtionai

```js

Usage no npm install needed!

<script type="module">
  import abiodunjamesVtionai from 'https://cdn.skypack.dev/@abiodunjames/vtionai';
</script>

README

How to use


let appId = 'your-app-id'; 
let appKey = 'your-app-key';

const Vtion = new App(appId, appKey);

let img ='your-base-64-image';

Vtion.getClient().search(img)
    .then((response) => {
        console.log(response)
    })
    .catch((err) => {
        console.log(err);
    });