The Epigos Node Package is a node wrapper around the core Epigos AI web application and REST API.

Node SDK

Visit the GitHub Repo

You’ll need to Create an API Key to Authentication with Epigos AI.

Install

To add epigos to your project simply install with npm:

npm install @epigosai/epigos-sdk

or with yarn:

yarn add @epigosai/epigos-sdk

Modules

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");

Checkout the code on Github