Skip to content

๐Ÿ Rax AI Python SDK v1.0.0

Latest

Choose a tag to compare

@davytheprogrammer davytheprogrammer released this 26 Nov 17:12
· 1 commit to main since this release

๐ŸŽ‰ 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!"}]
)

๐Ÿ”— Links