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 withnpm:
yarn:
Modules
Checkout the code on Github
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
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?
