Everything you need to integrate with SeeThrough AI
npm install @seethrough/sdk
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'
}
});