Anthropic
Anthropic Python SDK Integration
Use Anthropic’s Python SDK to integrate with Helicone to log your Anthropic LLM usage.
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Use Anthropic’s Python SDK to integrate with Helicone to log your Anthropic LLM usage.
Set HELICONE_API_KEY as an environment variable
export HELICONE_API_KEY=<your API key>
Modify the base path and add a Helicone-Auth header
import anthropic
import os
client = anthropic.Anthropic(
api_key=os.environ.get("ANTHROPIC_API_KEY"),
base_url="https://anthropic.helicone.ai",
default_headers={
"Helicone-Auth": f"Bearer {os.environ.get("HELICONE_API_KEY")}",
},
)
client.messages.create(
model="claude-3-opus-20240229",
max_tokens=1024,
messages=[
{"role": "user", "content": "Hello, world"}
]
)
Was this page helpful?