AI Developer Documentation
Build decentralized AI applications with our developer-friendly ecosystem.
Getting Started
Latest Updates
2025-03-20
v0.3.1 Released
2025-02-15
Quantum-Resistant API Added
1. Installation
npm install @helifx/ai-sdk # or for rust developers: cargo add helifx_ai --features "quantum secure"
npm install @helifx/ai-sdk
Use Node.js 18 or later. Windows users require WSL for quantum features.
2. Quick Start
const ai = new HelifxAI({
apiKey: 'YOUR_API_KEY',
mode: 'quantum'|'classic'
});
// Example:
ai.train({
dataset: 'https://helix.dataset/nft_prices',
model: 'nft-rarity'
});
apiKey: 'YOUR_API_KEY',
mode: 'quantum'|'classic'
});
// Example:
ai.train({
dataset: 'https://helix.dataset/nft_prices',
model: 'nft-rarity'
});
// Rust Example
let client = HelifxAiClient::new("
YOUR_API_KEY,
QuantumMode::PostQuantum
);
client.deploy_model(ModelSpec {
name: "decentralized_price"
});
let client = HelifxAiClient::new("
YOUR_API_KEY,
QuantumMode::PostQuantum
);
client.deploy_model(ModelSpec {
name: "decentralized_price"
});
API Reference
Discover our complete AI API documentation with real-world examples for blockchain, NFTs and smart contracts.
View ReferenceDeveloper Tutorials
Step-by-step guides for integrating AI with blockchain protocols, smart contracts and decentralized data.
Tutorials & Examples