slai-node
v1.1.15
Published
Slai Sdk for Node
Readme
How to use
import SlaiClient from "slai-node";
SlaiClient.login({
clientId: "CLIENT_ID",
clientSecret: "CLIENT_SECRET",
});
const main = async () => {
const model = SlaiClient.model(" MODEL_NAME + / + MODEL_VERSION_NAME");
// This is just an example of how to call your model
// Parameters vary based on your handler inputs
const prediction = await model.call({ x1: "" });
};
main();Disclaimer
This is still in BETA
