Explore our growing ecosystem of DeAI applications in the awesome-aiforge repository.
Store AI models, training data, and agent state on 0G Network's distributed storage system. Get enterprise-grade performance with decentralized security and global availability.
Sub-second data retrieval with global CDN-like performance
Cryptographically secured with redundant storage across nodes
Distributed network of storage nodes across multiple regions
Simple APIs and SDKs for seamless integration
Store large language models, neural networks, and training data
Persistent storage for agent memory, decisions, and learning
Store images, videos, and rich media for AI-generated content
Historical market data, user interactions, and performance metrics
import { ZeroGStorage } from '@aiforge/sdk'
const storage = new ZeroGStorage({
apiKey: 'your-api-key',
network: '0g-mainnet'
})
// Upload AI model
const model = await storage.upload({
file: './my-model.bin',
metadata: {
name: 'Trading Bot v2.1',
type: 'neural-network',
version: '2.1.0',
description: 'Advanced DeFi trading model'
}
})
console.log('Model uploaded:', model.hash)
// Retrieve stored data
const modelData = await storage.get(model.hash)
// Stream large files
const stream = await storage.stream(model.hash)
stream.on('data', (chunk) => {
// Process data chunk
console.log('Received chunk:', chunk.length)
})
// Version control for AI models
const newVersion = await storage.createVersion({
parentHash: model.hash,
file: './my-model-v2.2.bin',
metadata: {
version: '2.2.0',
changes: 'Improved accuracy by 15%'
}
})
// List all versions
const versions = await storage.listVersions(model.hash)
console.log('Available versions:', versions)
90% cheaper than centralized cloud storage
No egress fees for the first 100GB
Free tier includes 1M requests/month