Skip to main content

SDKs and Libraries

This section provides information and resources for integrating with the Hautech API using our official SDKs and widgets.

JS SDK

Our JavaScript SDK simplifies interactions with the Hautech API, making it easy to integrate advanced AI and image management functionalities into your web or Node.js applications.

Installation

Install the SDK using npm:

npm install @hautechai/sdk

Basic Usage Example

Below is a basic example demonstrating how to use the SDK to interact with the API:

import { createSDK } from '@hautechai/sdk';

const sdk = createSDK({ authToken: () => accountToken });
const generation = await sdk.operations.wait(
await sdk.operations.run.haute.naomi.v1({
input: {
prompt: form.prompt,
category: form.category,
garmentImageId: form.inputImage,
poseId: form.pose,
seed,
width: 832,
height: 1200
},
})
);

Widgets

Our widgets provide embeddable components to integrate Hautech API functionalities directly into your website. They are available as a standalone npm package, and you can view a live demo app to see them in action.

Installation & Setup

Install the widgets package via npm:

npm install @hautechai/widgets