Official Homebrew tap for installing the SVECTOR AI CLI globally on macOS.
# Add the SVECTOR tap
brew tap svector-corporation/svector
# Install SVECTOR CLI
brew install svector
The SVECTOR CLI provides:
- π€ Chat Commands - Direct conversation with SVECTOR AI models
- π Streaming Support - Real-time response streaming
- π Model Management - List and select from available models
- βοΈ Configuration - Easy API key management
- π Auto-updates - Stay current with latest features
# Set your SVECTOR API key (get one from https://platform.svector.co.in)
svector config set-key YOUR_API_KEY_HERE
# Simple chat
svector chat "Hello, what is artificial intelligence?"
# Streaming response (real-time)
svector stream "Tell me a story about the future of AI"
# List available models
svector models
# Show current configuration
svector config show
# Help and usage
svector --help
# Chat with specific model
svector chat "Explain quantum computing" --model spec-3-turbo:latest
# Stream with temperature control
svector stream "Write a poem" --temperature 0.8
# Chat with file context
svector chat "Summarize this document" --file /path/to/document.pdf
# Set max tokens
svector chat "Brief explanation" --max-tokens 100
SVECTOR CLI stores configuration in ~/.svector/config.json
:
{
"apiKey": "your-api-key",
"defaultModel": "spec-3-turbo:latest",
"maxTokens": 150,
"temperature": 0.7
}
- spec-3-turbo:latest - Fast, efficient for most tasks
- spec-3:latest - High-quality responses
- theta-35:latest - Advanced reasoning and analysis
- theta-35-mini:latest - Lightweight, fast responses
Update to the latest version:
brew update
brew upgrade svector
brew uninstall svector
brew untap svector-corporation/svector
svector stream "Write a short story about a robot learning to paint"
svector chat "Explain this TypeScript code: async function fetchData() { ... }"
svector chat "What are the latest developments in renewable energy?"
svector stream "Teach me about quantum physics, step by step"
You can also set configuration via environment variables:
export SVECTOR_API_KEY="your-api-key"
export SVECTOR_MODEL="spec-3-turbo:latest"
export SVECTOR_MAX_TOKENS="200"
export SVECTOR_TEMPERATURE="0.7"
# Check current configuration
svector config show
# Reset API key
svector config set-key NEW_API_KEY
# Test connectivity
svector chat "test"
# Check your API key at https://platform.svector.co.in
# Reinstall formula
brew uninstall svector
brew install svector
# Update tap
brew tap --repair svector-corporation/svector
- π SVECTOR Website: https://www.svector.co.in
- π API Documentation: https://platform.svector.co.in
- π¬ Support: [email protected]
- π Issues: https://github.com/SVECTOR-CORPORATION/homebrew-svector/issues
- π¦ npm Package: https://www.npmjs.com/package/svector-sdk
- π Python SDK: https://pypi.org/project/svector-sdk/
MIT License - see LICENSE file for details.
SVECTOR is a technology-driven organization focused on AI, Mathematics, and Computational research, developing high-performance AI models, mathematical reasoning systems, and next-gen automation.
Made with β€οΈ by the SVECTOR Team