Documentation

Everything you need to integrate with SeeThrough AI

Quick Start Guide

Installation

npm install @seethrough/sdk

Basic Usage

import { SeeThroughAI } from '@seethrough/sdk';

const seethrough = new SeeThroughAI({
  apiKey: 'your_api_key'
});

// Process an image
const result = await seethrough.process({
  image: imageFile,
  options: {
    quality: 'high',
    style: 'natural'
  }
});

Examples