Set up the Node SDK in your application
npm
npm install @epigosai/epigos-sdk
yarn
yarn add @epigosai/epigos-sdk
import { Epigos } from "@epigosai/epigos-sdk"; const client = new Epigos({ apiKey: "api_key_123" }); // load classification model const icModel = client.classification("modelId"); // load object detection model const odModel = client.objectDetection("modelId");
Was this page helpful?