Syaala CLI
The Syaala CLI provides a command-line interface for deploying and managing AI models on GPU infrastructure.
Production-Ready: All commands use real API endpoints. No mock data or fallback responses.
Quick Start
# Install globally
npm install -g @syaala/cli
# Authenticate
syaala auth login --api-key sk_live_...
# Deploy a model
syaala deployments create \
--name my-llm \
--model meta-llama/Llama-3-8B-Instruct \
--runtime vllm \
--gpu-type NVIDIA_A100Features
- 🔐 Authentication - Secure API key management with multiple profiles
- 🚀 Deployments - Create, manage, and monitor GPU deployments
- 🤖 Models - Search and import models from HuggingFace
- 📋 Templates - Deploy from pre-configured templates
- 📊 Monitoring - Real-time logs and metrics
- 🔔 Notifications - Configure alert channels
- 📦 Batch Operations - Run batch inference jobs
Documentation
- Installation - Install and set up the Syaala CLI
- Commands - Complete command reference
- Configuration - Advanced configuration options
Command Overview
Authentication
syaala auth login # Authenticate with API key
syaala auth logout # Sign out
syaala auth status # Check authentication statusDeployments
syaala deployments list # List all deployments
syaala deployments get <id> # Get deployment details
syaala deployments create # Create new deployment
syaala deployments update # Update deployment
syaala deployments delete # Delete deployment
syaala deployments logs # Stream logs
syaala deployments metrics # View metricsModels
syaala models search <query> # Search HuggingFace models
syaala models get <id> # Get model details
syaala models validate <id> # Validate deployment compatibilityTemplates
syaala templates list # List templates
syaala templates create # Create template
syaala templates deploy # Deploy from templateBatch Operations
syaala batch create # Create batch job
syaala batch status <id> # Check job status
syaala batch cancel <id> # Cancel jobNotifications
syaala notifications list # List channels
syaala notifications create # Create channel
syaala notifications test # Test channelEnvironment Variables
export SYAALA_API_KEY=sk_live_... # API key
export SYAALA_API_URL=https://api.syaala.com # API URL
export SYAALA_ORG_ID=org_... # Organization ID
export SYAALA_DEBUG=true # Enable debug modeNext Steps
- Installation Guide - Install and configure the CLI
- Commands Reference - Complete command documentation
- Configuration - Advanced configuration
- Authentication - Generate API keys