Skip to main content

Python SDK for Superb AI On-premise

Project description

Superb AI On-premise SDK

Python SDK for Superb AI's On-premise solution. This SDK provides a simple interface to interact with your on-premise Superb AI installation.

Installation

pip install superb-ai-onprem

Quick Start

from spb_onprem import DatasetService, DataService
from spb_onprem.data.enums import DataType

# Initialize services
dataset_service = DatasetService()
data_service = DataService()

# Create a dataset
dataset = dataset_service.create_dataset(
    name="my-dataset",
    description="My first dataset"
)

# Upload an image with annotation
with open("image.jpg", "rb") as f:
    image_data = BytesIO(f.read())

data = data_service.create_image_data(
    dataset_id=dataset.id,
    key="image_1",
    image_content=image_data,
    annotation={
        "labels": ["car", "person"],
        "boxes": [
            {"x": 100, "y": 100, "width": 200, "height": 200}
        ]
    }
)

Features

  • Dataset Management
    • Create, update, and delete datasets
    • List and filter datasets
  • Data Management
    • Upload images with annotations
    • Update annotations
    • Add/remove data from slices
    • Manage metadata
  • Slice Management
    • Create and manage data slices
    • Filter and organize your data

Usage Examples

Dataset Operations

from spb_onprem import DatasetService
from spb_onprem import DatasetsFilter, DatasetsFilterOptions

# Initialize service
dataset_service = DatasetService()

# Create a dataset
dataset = dataset_service.create_dataset(
    name="my-dataset",
    description="Dataset description"
)

# List datasets with filtering
filter = DatasetsFilter(
    must_filter=DatasetsFilterOptions(
        name_contains="test"
    )
)
datasets = dataset_service.get_datasets(filter=filter)

Data Operations

from spb_onprem import DataService
from spb_onprem import DataListFilter, DataFilterOptions

# Initialize service
data_service = DataService()

# List data with filtering
filter = DataListFilter(
    must_filter=DataFilterOptions(
        key_contains="image_",
        annotation_exists=True
    )
)
data_list = data_service.get_data_list(
    dataset_id="your-dataset-id",
    filter=filter
)

# Update annotation
data_service.update_annotation(
    dataset_id="your-dataset-id",
    data_id="your-data-id",
    annotation={
        "labels": ["updated_label"],
        "boxes": [...]
    }
)

Slice Operations

from spb_onprem import SliceService

# Initialize service
slice_service = SliceService()

# Create a slice
slice = slice_service.create_slice(
    dataset_id="your-dataset-id",
    name="validation-set",
    description="Validation data slice"
)

# Add data to slice
data_service.add_data_to_slice(
    dataset_id="your-dataset-id",
    data_id="your-data-id",
    slice_id=slice.id
)

Error Handling

The SDK provides specific error types for different scenarios:

from spb_onprem.exceptions import (
    BadParameterError,
    NotFoundError,
    UnknownError
)

try:
    dataset = dataset_service.get_dataset(dataset_id="non-existent-id")
except NotFoundError:
    print("Dataset not found")
except BadParameterError as e:
    print(f"Invalid parameter: {e}")
except UnknownError as e:
    print(f"An unexpected error occurred: {e}")

Configuration

The SDK supports two authentication methods:

1. Config File Authentication (Default)

Create a config file at ~/.spb/onprem-config:

[default]
host=https://your-onprem-host
access_key=your-access-key
access_key_secret=your-access-key-secret

This is the default authentication method when SUPERB_SYSTEM_SDK=false or not set.

2. Environment Variables (for Airflow DAGs)

When running in an Airflow DAG or other system environments, you can use environment variables for authentication. This method is activated by setting SUPERB_SYSTEM_SDK=true.

Required environment variables:

# Enable system SDK mode
export SUPERB_SYSTEM_SDK=true

# Set the host URL (either one is required)
export SUPERB_SYSTEM_SDK_HOST=https://your-superb-ai-host
# or
export SUNRISE_SERVER_URL=https://your-superb-ai-host

# Set the user email
export SUPERB_SYSTEM_SDK_USER_EMAIL=user@example.com

You can set these environment variables:

  • Directly in your shell
  • In your Airflow DAG configuration
  • Through your deployment environment
  • Using a .env file with your preferred method of loading environment variables

Note:

  • When SUPERB_SYSTEM_SDK=true, the SDK will ignore the config file (~/.spb/onprem-config) and use environment variables exclusively.
  • When SUPERB_SYSTEM_SDK=false or not set, the SDK will look for authentication credentials in ~/.spb/onprem-config.

Requirements

  • Python >= 3.7
  • requests >= 2.22.0
  • urllib3 >= 1.21.1
  • pydantic >= 1.8.0

License

This project is licensed under the MIT License - see the LICENSE file for details.

Support

For support or feature requests, please contact the Superb AI team or create an issue in this repository.

Project details


Release history Release notifications | RSS feed

This version

0.5.8

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

superb_ai_onprem-0.5.8.tar.gz (60.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

superb_ai_onprem-0.5.8-py3-none-any.whl (83.2 kB view details)

Uploaded Python 3

File details

Details for the file superb_ai_onprem-0.5.8.tar.gz.

File metadata

  • Download URL: superb_ai_onprem-0.5.8.tar.gz
  • Upload date:
  • Size: 60.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for superb_ai_onprem-0.5.8.tar.gz
Algorithm Hash digest
SHA256 6cf0307fc239c48b82deb2e9b9864445a5ef4e7810c8ba11bf026df0d4c5694b
MD5 df3c5f17d57aa5ae5b8f8941a949bb0a
BLAKE2b-256 1971df87c1926eafd970662c2663377c20fd884cfec4294f8c04a20498f28fcc

See more details on using hashes here.

File details

Details for the file superb_ai_onprem-0.5.8-py3-none-any.whl.

File metadata

File hashes

Hashes for superb_ai_onprem-0.5.8-py3-none-any.whl
Algorithm Hash digest
SHA256 83169848d1606b749cf03004e5af327e3de57e4b11c28d8fd397b0455fc36540
MD5 6944cd4853f333b135f49de1c7a77737
BLAKE2b-256 f01c0e91f4bf32ba1fefa7886954201dc09b3c0c3ac39894bf259a93ae9ff1be

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page