/v1/anthropic that proxies to api.anthropic.com with PII redaction,
injection detection, and signed audit.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Route Anthropic Messages API through AGCMS.
/v1/anthropic that proxies to api.anthropic.com with PII redaction,
injection detection, and signed audit.
from anthropic import Anthropic
client = Anthropic(
api_key="agc_live_...", # AGCMS gateway auth
base_url="https://api.your-tenant.agcms.com/v1/anthropic",
default_headers={"X-Anthropic-Key": "sk-ant-..."},
)
msg = client.messages.create(
model="claude-3-5-sonnet-latest",
max_tokens=256,
messages=[{"role": "user", "content": "Hello!"}],
)