> ## Documentation Index
> Fetch the complete documentation index at: https://docs.epigos.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Started

> Set up the Node SDK in your application

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

<Card title="Node SDK" icon="github" href="https://github.com/Epigos-AI/epigos-ts">
  Visit the GitHub Repo
</Card>

<Note>
  You'll need to [Create an API Key](/workspace/api-keys) to
  [Authentication](/api-reference/introduction#authentication) with Epigos AI.
</Note>

## Install

To add epigos to your project simply install with `npm`:

```bash theme={null}
npm install @epigosai/epigos-sdk
```

or with `yarn`:

```bash theme={null}
yarn add @epigosai/epigos-sdk
```

## Modules

```ts theme={null}
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](https://github.com/Epigos-AI/epigos-ts)
