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
pip install glacis# OpenAI integrationpip install glacis[openai]
# Anthropic integrationpip install glacis[anthropic]
# All integrationspip install glacis[all]poetry add glacisuv pip install glacisVerify 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
| Extra | Includes | Use Case |
|---|---|---|
openai | OpenAI SDK | Auto-attesting OpenAI wrapper |
anthropic | Anthropic SDK | Auto-attesting Anthropic wrapper |
all | All integrations | Full SDK with all providers |
Getting an API Key
- Visit glacis.io and sign up
- Create an organization
- Generate an API key (
glsk_live_...) - Set the environment variable:
Terminal window export GLACIS_API_KEY=glsk_live_your_key_here
Next Steps
- Quickstart Guide - Get started in 3 lines of code
- Offline Mode - Development without an API key
- OpenAI Integration - Auto-attest OpenAI calls