Releases: Raxcore-dev/rax-ai-python
Releases · Raxcore-dev/rax-ai-python
🐍 Rax AI Python SDK v1.0.0
🎉 Initial Release
Enterprise-grade Python SDK for Rax AI Platform
✨ Features
- 🐍 Python 3.7+ compatibility
- ⚡ Async/await support with AsyncRaxAI
- 🔒 Input validation and comprehensive error handling
- 🔄 Context manager support (
with RaxAI() as client:) - 🌍 Environment configuration utilities
- 🚀 Production-ready with retry logic and timeouts
- 📝 Full type hints for better IDE support
📦 Installation
pip install rax-ai🚀 Quick Start
from rax_ai import RaxAI
rax = RaxAI(api_key="your-key")
response = rax.chat(
model="rax-4.0",
messages=[{"role": "user", "content": "Hello!"}]
)