Package Exports
- lexica-api-sdk
- lexica-api-sdk/dist/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (lexica-api-sdk) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
LexicaAPI SDK
A Node.js package for interacting with LexicaAPI.
Installation
Install the package
npm i lexica-api-sdk
Usage
Upscale An Image.
const { LexicaAPI } = require('lexica-api-sdk');
const fs = require('fs');
async function main(){
const client = new LexicaAPI();
const image = await client.upscale('https://graph.org/file/f101690e35767a7fe82b5.png',"url");
// const image = await client.upscale('path/to/image.png');
// fs.writeFileSync('upscaled.png', image);
console.log(image);
};
main();
Chat With AI.
const { LexicaAPI } = require('lexica-api-sdk');
async function main(prompt){
const messages = [
{
role:'system',
content:'You are a helpful assistant.'
},
{
role:'user',
content:prompt
}
]
const client = new LexicaAPI();
const response = await client.chatCompletion(5,messages)
console.log(response);
};