Skip to content

Installation

The Glacis Python SDK provides cryptographic attestation for AI systems. Install it to prove what your AI did, what data it saw, and what controls were active.

Requirements

  • Python 3.9 or higher
  • pip (Python package manager)

Install from PyPI

Terminal window
pip install glacis

Verify Installation

from glacis import Glacis
# Offline mode works immediately (no API key needed)
glacis = Glacis(mode="offline")
print(f"Glacis version: {glacis.__version__}")

Available Extras

ExtraIncludesUse Case
openaiOpenAI SDKAuto-attesting OpenAI wrapper
anthropicAnthropic SDKAuto-attesting Anthropic wrapper
allAll integrationsFull SDK with all providers

Getting an API Key

  1. Visit glacis.io and sign up
  2. Create an organization
  3. Generate an API key (glsk_live_...)
  4. Set the environment variable:
    Terminal window
    export GLACIS_API_KEY=glsk_live_your_key_here

Next Steps