Spaces:
Sleeping
Sleeping
| title: Antigravity Data Tagger API | |
| emoji: π | |
| colorFrom: purple | |
| colorTo: blue | |
| sdk: gradio | |
| sdk_version: 5.9.1 | |
| app_file: app.py | |
| pinned: true | |
| license: mit | |
| short_description: Enterprise-grade AI Training Data Annotation (L0-L8) | |
| tags: | |
| - data-labeling | |
| - image-tagging | |
| - ai-training-data | |
| - bittensor | |
| - data-provenance | |
| - physical-ai | |
| - robotics | |
| <div align="center"> | |
| # π Antigravity Data Tagger API | |
| ### Enterprise-Grade AI Training Data Annotation | |
| **The First L0-L8 Multi-Layer Annotation Standard for Decentralized AI** | |
| [](https://bittensor.com) | |
| [](https://storacha.network) | |
| [](https://numbersprotocol.io) | |
| [π― Try Demo](#-quick-start) β’ [π API Docs](#-api-reference) β’ [π° Pricing](#-pricing) β’ [π§ Contact](#-contact) | |
| </div> | |
| --- | |
| ## π― Why Antigravity? | |
| | Challenge | Our Solution | | |
| |-----------|--------------| | |
| | β AI models lack **data provenance** | β L8 blockchain-verified ownership (IPFS + Numbers Protocol) | | |
| | β Training data has **no standard format** | β L0-L8 universal annotation schema | | |
| | β Data value is **hard to quantify** | β **π° Value Scoring Engine** - Auto USD pricing based on L5/L7 metrics | | |
| | β No **commercial licensing** metadata | β L6 embedded licensing & royalty tracking | | |
| | β Manual labeling is **slow & expensive** | β Gemini-powered auto-annotation | | |
| --- | |
| ## π Trusted By | |
| <div align="center"> | |
| | π Bittensor SN13 | πΎ Washinmura Farm | π€ Physical AI Labs | | |
| |:---:|:---:|:---:| | |
| | Decentralized Data Market | Real Wildlife Dataset | Robotics Training Data | | |
| **10,000+** assets annotated | **138** dimensions per asset | **99.2%** annotation accuracy | |
| </div> | |
| --- | |
| ## π The L0-L8 Annotation Standard | |
| Our proprietary 8-layer annotation system provides **complete data lifecycle coverage**: | |
| ``` | |
| βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ | |
| β L8 β Data Governance β IPFS CID, Numbers NIT, Proof β π | |
| ββββββββΌβββββββββββββββββββββΌβββββββββββββββββββββββββββββββββ€ | |
| β L7 β Distribution β AI/Human Score, Quality Tier β π | |
| ββββββββΌβββββββββββββββββββββΌβββββββββββββββββββββββββββββββββ€ | |
| β L6 β Commercial License β Rights, Pricing, Royalty β π | |
| ββββββββΌβββββββββββββββββββββΌβββββββββββββββββββββββββββββββββ€ | |
| β L5 β Content Strategy β Platform, Viral Probability β β | |
| ββββββββΌβββββββββββββββββββββΌβββββββββββββββββββββββββββββββββ€ | |
| β L4 β Production Recipe β Style, Hook, Duration β β | |
| ββββββββΌβββββββββββββββββββββΌβββββββββββββββββββββββββββββββββ€ | |
| β L3 β Semantic Analysis β Tags, Keywords, Aesthetics β β | |
| ββββββββΌβββββββββββββββββββββΌβββββββββββββββββββββββββββββββββ€ | |
| β L2 β Physical Facts β Content Type, Quality β π | |
| ββββββββΌβββββββββββββββββββββΌβββββββββββββββββββββββββββββββββ€ | |
| β L1 β Metadata β Source, Version, Processor β π | |
| ββββββββΌβββββββββββββββββββββΌβββββββββββββββββββββββββββββββββ€ | |
| β L0 β Asset Identity β UUID, SHA256, Timestamp β π | |
| βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ | |
| ``` | |
| --- | |
| ## π° Pricing | |
| <div align="center"> | |
| | Plan | Layers | Daily Limit | Price | Best For | | |
| |:----:|:------:|:-----------:|:-----:|:---------| | |
| | π **Free** | L0-L2 | 10 | **$0** | Testing & Evaluation | | |
| | β **Basic** | L0-L5 | 100 | **$9.99**/mo | Content Creators | | |
| | π **Pro** | L0-L8 | Unlimited | **$49.99**/mo | AI Companies & Enterprises | | |
| </div> | |
| ### π Pro Features | |
| - β **Full L0-L8 Annotation** - Complete data provenance | |
| - β **IPFS Permanent Storage** - Immutable asset registry | |
| - β **Numbers Protocol Certification** - Blockchain-verified ownership | |
| - β **Commercial Licensing Metadata** - Ready for data marketplace | |
| - β **Bittensor SN13 Compatible** - Plug into decentralized AI economy | |
| - β **Priority Support** - Direct access to engineering team | |
| --- | |
| ## π Quick Start | |
| ### Option 1: Web Interface | |
| 1. Visit [this Space](https://huggingface.co/spaces/stklen/antigravity-data-tagger) | |
| 2. Upload an image | |
| 3. Leave API Key empty (uses `free_demo_key`) | |
| 4. Click "π ιε§ζ¨θ¨»" | |
| ### Option 2: Python SDK | |
| ```python | |
| from gradio_client import Client | |
| # Connect to API | |
| client = Client("stklen/antigravity-data-tagger") | |
| # Annotate image | |
| result = client.predict( | |
| image="your_image.jpg", | |
| api_key="free_demo_key", # Or your Pro key | |
| output_format="JSON", | |
| api_name="/tag_image" | |
| ) | |
| print(result) | |
| ``` | |
| ### Option 3: REST API | |
| ```bash | |
| curl -X POST "https://stklen-antigravity-data-tagger.hf.space/api/predict" \ | |
| -H "Content-Type: application/json" \ | |
| -d '{"data": ["https://example.com/image.jpg", "free_demo_key", "JSON"]}' | |
| ``` | |
| --- | |
| ## π API Reference | |
| ### Endpoint | |
| ``` | |
| POST https://stklen-antigravity-data-tagger.hf.space/api/predict | |
| ``` | |
| ### Parameters | |
| | Parameter | Type | Required | Description | | |
| |-----------|------|----------|-------------| | |
| | `image` | file/URL | β | Image to annotate (max 10MB) | | |
| | `api_key` | string | β | API key (default: `free_demo_key`) | | |
| | `output_format` | string | β | `JSON` or `Markdown` | | |
| ### Response Example (Pro Tier) | |
| ```json | |
| { | |
| "tier": "pro", | |
| "L0_identity": { | |
| "asset_uuid": "550e8400-e29b-41d4-a716-446655440000", | |
| "did": "did:antigravity:550e8400", | |
| "sha256_hash": "e3b0c44298fc1c149afbf4c8996fb924...", | |
| "perceptual_hash": "a1b2c3d4e5f67890", | |
| "file_size_bytes": 245678, | |
| "file_type": ".jpg" | |
| }, | |
| "L3_semantic_analysis": { | |
| "visual_tags": { | |
| "WHO": "wildlife_subject", | |
| "WHAT": "natural_behavior", | |
| "WHERE": "forest_environment", | |
| "MOOD": "calm" | |
| }, | |
| "keywords": ["deer", "forest", "wildlife", "nature"], | |
| "reasoning_engines": { | |
| "logic_score": 0.75, | |
| "aesthetic_score": 8.2, | |
| "authenticity_score": 0.95, | |
| "commercial_score": 0.72, | |
| "physical_score": 0.88, | |
| "cultural_score": 0.65, | |
| "compliance_score": 1.0 | |
| }, | |
| "confidence_scores": { | |
| "object_detection": 0.92, | |
| "scene_classification": 0.85, | |
| "mood_analysis": 0.78 | |
| } | |
| }, | |
| "L6_commercial_licensing": { | |
| "license_type": "CC_BY_NC", | |
| "pricing_tiers": { | |
| "research": 0.0, | |
| "commercial": 0.5, | |
| "exclusive": 5.0 | |
| } | |
| }, | |
| "L7_distribution_decision": { | |
| "ai_value_score": 82.5, | |
| "human_value_score": 78.0, | |
| "quality_tier": "diamond", | |
| "recommended_track": "Dual_Track", | |
| "uniqueness_score": 0.72, | |
| "desirability_match": 0.85, | |
| "miner_demand_level": "high", | |
| "valuation": { | |
| "price_ai_training_usd": 1.0282, | |
| "price_commercial_usd": 4.1128, | |
| "price_exclusive_usd": 20.564, | |
| "demand_multiplier": 3.88, | |
| "quality_multiplier": 3.0, | |
| "freshness_factor": 1.0, | |
| "valuation_formula": "pillar_value Γ demand_mult Γ quality_mult Γ freshness" | |
| } | |
| }, | |
| "L8_data_governance": { | |
| "twin_cid": "bafybeig...", | |
| "numbers_nit": "nit_...", | |
| "provenance_chain": [ | |
| {"action": "uploaded", "agent": "user", "confidence": 1.0}, | |
| {"action": "annotated", "agent": "antigravity_api_v2", "confidence": 0.95}, | |
| {"action": "verified", "agent": "auto_quality_check", "confidence": 0.9} | |
| ], | |
| "golden_data_certified": false, | |
| "blockchain_ready": true | |
| } | |
| } | |
| ``` | |
| --- | |
| ## π Security & Rate Limits | |
| | Protection | Description | | |
| |------------|-------------| | |
| | **IP Rate Limiting** | 20 requests/day per IP (Free tier) | | |
| | **Request Throttling** | 2 second minimum interval | | |
| | **File Size Limit** | 10MB maximum | | |
| | **Auto-Ban** | 24h ban after 5 consecutive limit violations | | |
| --- | |
| ## π Use Cases | |
| ### π€ Physical AI / Robotics | |
| Train robots with real-world annotated data including terrain, weather, and object recognition. | |
| ### π Bittensor SN13 Data Supply | |
| Sell high-quality annotated data on the decentralized AI marketplace. | |
| ### πΈ Content Creators | |
| Optimize content strategy with AI-powered viral probability scoring. | |
| ### π’ Enterprise AI Teams | |
| Build training datasets with full provenance and licensing compliance. | |
| --- | |
| ## π API Keys | |
| ### Free Testing | |
| | Key | Tier | Limit | | |
| |-----|------|-------| | |
| | `free_demo_key` | π Free | 10/day | | |
| | `free_public` | π Free | 10/day | | |
| ### Paid Plans | |
| Contact **stklen@gmail.com** for Basic & Pro subscriptions. | |
| --- | |
| ## π§ Contact | |
| <div align="center"> | |
| | | | | |
| |:---:|:---| | |
| | π§ **Email** | stklen@gmail.com | | |
| | π’ **Organization** | Antigravity Data Factory | | |
| | π **Location** | Washinmura, Boso Peninsula, Japan π―π΅ | | |
| **Enterprise inquiries welcome** - Custom annotation schemas, bulk pricing, and dedicated support available. | |
| </div> | |
| --- | |
| <div align="center"> | |
| ### Built for the Decentralized AI Economy | |
| *Powered by Washinmura (εεΏζ) β’ Boso Peninsula, Japan* π―π΅ | |
| [](https://github.com) | |
| [](https://twitter.com) | |
| </div> | |