Quick Start Guide
Get started with Tenzro in under 10 minutes. From AI generation to app deployment, this guide will get you up and running with the complete platform.
Step-by-Step Setup
bash
# Visit https://platform.tenzro.com/register
# 1. Enter your email and create password
# 2. Verify your email address
# 3. Complete account setup
# Welcome to Tenzro! 🎉
bash
# In your Tenzro Platform dashboard:
# 1. Go to "API Keys" section
# 2. Click "Generate New Key"
# 3. Give it a name (e.g., "Development")
# 4. Copy your API key
# Your API key will look like:
# sk_live_abc123def456ghi789...
bash
# Test your API key with a simple request:
curl -X GET https://api.tenzro.com/cortex/models \
-H "X-API-Key: sk_your_key_here"
# Expected response:
# {
# "text_models": [
# {"name": "gpt-4o", "provider": "openai"},
# {"name": "claude-3.5-sonnet", "provider": "anthropic"}
# ]
# }
Make Your First AI Request
Generate text with Tenzro Cortex AI using any model
1 minute
Try AI Generationbash
# Generate text with GPT-4o:
curl -X POST https://api.tenzro.com/cortex/generate \
-H "X-API-Key: sk_your_key_here" \
-H "Content-Type: application/json" \
-d '{
"prompt": "Write a hello world function in Python",
"model": "gpt-4o",
"max_tokens": 500
}'
bash
# Deploy from GitHub:
curl -X POST https://api.tenzro.com/factory/deployments \
-H "X-API-Key: sk_your_key_here" \
-H "Content-Type: application/json" \
-d '{
"name": "my-first-app",
"github_repo": {
"owner": "your-username",
"repo": "your-repo",
"branch": "main"
},
"framework": "nextjs"
}'
Train a Model (Optional)
Submit a training job to Tenzro Grid for custom AI models
5 minutes
Train Modelbash
# Submit training job:
curl -X POST https://api.tenzro.com/grid/train \
-H "X-API-Key: sk_your_key_here" \
-H "Content-Type: application/json" \
-d '{
"name": "my-first-training",
"framework": "pytorch-latest",
"code_repository": "https://github.com/user/training-code.git",
"gpu_type": "A100",
"parameters": {
"learning_rate": 0.001,
"epochs": 10
}
}'
Service Quick Starts
Cortex AI
Universal AI inference with 100+ models
Generate text in 30 seconds
Factory Deploy
Zero-config deployment from GitHub
Deploy in 3 minutes
Grid Training
Distributed GPU training platform
Train models 70% cheaper
Storage
Multi-database platform
Store data with integrity verification
Ledger KMS
Post-quantum cryptography
Encrypt with quantum-safe keys
Network P2P
Global device networking
Connect devices with one command
SDK Quick Start
Use our official SDKs for faster development in your preferred language:
🟨
Full DocsJavaScript/TypeScript
npm install @tenzro/sdk
JavaScript/TypeScript Examplejavascript
import { Tenzro } from '@tenzro/sdk';
const tenzro = new Tenzro({
apiKey: 'sk_your_key_here'
});
const response = await tenzro.cortex.generate({
prompt: "Hello world!",
model: "gpt-4o"
});
console.log(response.content);
🐍
Full DocsPython
pip install tenzro
Python Examplepython
import tenzro
client = tenzro.Tenzro(api_key="sk_your_key_here")
response = client.cortex.generate(
prompt="Hello world!",
model="gpt-4o"
)
print(response.content)
Ready to Build Something Amazing?
You've got the basics! Now start building with the full power of the Tenzro platform. Join thousands of developers creating the next generation of AI applications.
Free tier available
No credit card required
Start building immediately
Need help? Check out our Quick Start guide or contact support