Share AI Tables Seamlessly
Collaborate on multimodal AI datasets with complete reproducibility. Share tables between local and cloud with read-only replicas, complete versioning, and full data lineage.
Handle all media types
Support AI workloads
Track versions, stay synced
Same data, same results
Key Features
Complete Multimodal API
Work with video, audio, images, and documents using one API
- Publishers share multimodal data in simple tables
- Recipients access all media types through one interface
Complete Sharing System
Eliminate manual file transfers and disconnected script sharing
- Publishers bundle data and all generated outputs in tables
- Recipients get embeddings and model outputs automatically
Complete Control & Flexibility
Maintain complete reproducibility, versioning, and lineage
- Publishers push updates and control access with public or private sharing
- Recipients maintain local development workflows with on-demand sync
How It Works
Publish
Publish your local table to Pixeltable Cloud with a single command. Control access with public or private visibility.
Replicate
Team members replicate the shared table to their local environment as a read-only replica. All data, schema, and computed columns are copied.
Sync
Push and pull updates seamlessly. Changes are automatically tracked with full versioning and lineage.
Code Examples
Three simple workflows for complete data sharing and collaboration
1import pixeltable as pxt2from pixeltable.functions import openai3import os45# Set your Pixeltable Cloud API key6os.environ['PIXELTABLE_API_KEY'] = '<YOUR_API_KEY>'78# Create and populate your table9t = pxt.create_table('images', {'input_image': pxt.Image})1011# Add AI-powered computed columns12t.add_computed_column(13 description=openai.vision(14 prompt="Describe this image in detail.",15 image=t.input_image,16 model='gpt-4o-mini'17 )18)1920# Insert data21t.insert(input_image='https://example.com/photo.jpg')2223# Publish to cloud (make it shareable)24pxt.publish(25 source=t,26 destination_uri='pxt://org_name/shared_images',27 access='private' # or 'public' for open access28)
Use Cases
Perfect for teams collaborating on AI and ML projects
Team Collaboration
Share training datasets, models, and results across DS/AI/ML teams with complete versioning and reproducibility.
Data Science Projects
Collaborate on data analysis with shared cleaned datasets, computed embeddings, and version-tracked reproducibility.
Production Deployment
Develop locally, then publish to cloud for production. Push updates when ready.
Dataset Distribution
Share public datasets and benchmark results with the research community for reproducible science.
Start sharing today
Join developers and researchers collaborating on multimodal AI datasets.