JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 4
  • Score
    100M100P100Q41586F
  • License MIT

Zero-shot multimodal classification SDK - classify text and images with custom labels, no training required

Package Exports

  • zerolabel
  • zerolabel/dist/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (zerolabel) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

zerolabel

Zero-shot multimodal classification SDK.

📖 Documentation

👆 See the main README.md in the project root for complete documentation, examples, and API reference.

🚀 Quick Install

npm install zerolabel

⚡ Quick Start

import { classify } from 'zerolabel';

const results = await classify({
  texts: ['I love this product!'],
  labels: ['positive', 'negative', 'neutral'],
  inference_api_key: process.env.INFERENCE_API_KEY
});

→ For complete examples, API reference, and documentation, see ../README.md