Skip to main content
The Anaconda AI SDK provides a Python interface for managing models and inference servers. Use it to list and download quantized models, configure and launch API servers, and integrate directly into your application’s workflows. For installation and configuration, see Getting started.

Client initialization

from anaconda_ai import AnacondaAIClient
client = AnacondaAIClient()

Common initialization parameters

The AnacondaAIClient constructor accepts several optional parameters. The most commonly used ones are:
client = AnacondaAIClient(
    backend='ai-catalyst',           # Backend to use
    site='my-site',                  # Site configuration for multi-site backends  
    stop_server_on_exit=False,       # Auto-stop servers on Python exit
    server_operations_timeout=120    # Timeout for server operations
)
Key parameters:
Additional parameters for authentication, SSL, and proxy configuration are available. See the anaconda-auth documentation for details.
Initializing the client exposes: