Skip to main content

OpenInference Anthropic Instrumentation

Python autoinstrumentation library for the Anthropic package

This package implements the following Anthropic clients:

  • Messages
  • AsyncMessages
  • BetaMessagesParse
  • AsyncBetaMessagesParse

These traces are fully OpenTelemetry compatible and can be sent to an OpenTelemetry collector for viewing, such as Arize Phoenix or Arize AX.

Compatibility

openinference-instrumentation-anthropic anthropic Python
>=2.0 >=1.0.0 >=3.10, <3.15
>=1.0.1, <2.0 >=0.84.0, <1.0 >=3.10, <3.15
1.0.0 >=0.84.0, <1.0 >=3.9, <3.15

Anthropic 1.0 removed the legacy Text Completions API. Instrumentor 2.0 therefore requires anthropic>=1.0.0 and instruments the Messages and Beta Messages APIs. See Anthropic's v1 migration guide for the upstream breaking changes.

Installation

pip install openinference-instrumentation-anthropic

Quickstart

Through your terminal, install required packages.

pip install openinference-instrumentation-anthropic anthropic arize-phoenix opentelemetry-sdk opentelemetry-exporter-otlp

You can start Phoenix with the following terminal command:

python -m phoenix.server.main serve

By default, Phoenix listens on http://localhost:6006. You can visit the app via a browser at the same address. (Phoenix does not send data over the internet. It only operates locally on your machine.)

Try the following code in a Python file.

  1. Set up AnthropicInstrumentor to trace your application and sends the traces to Phoenix.
  2. Then, set your Anthropic API key as an environment variable.
  3. Lastly, create a Anthropic client, make a request, then go see your results in Phoenix at http://localhost:6006!
import os
from anthropic import Anthropic
from openinference.instrumentation.anthropic import AnthropicInstrumentor
from opentelemetry.exporter.otlp.proto.http.trace_exporter import OTLPSpanExporter
from opentelemetry.sdk import trace as trace_sdk
from opentelemetry.sdk.trace.export import SimpleSpanProcessor

# Configure AnthropicInstrumentor with Phoenix endpoint
endpoint = "http://127.0.0.1:6006/v1/traces"
tracer_provider = trace_sdk.TracerProvider()
tracer_provider.add_span_processor(SimpleSpanProcessor(OTLPSpanExporter(endpoint)))

AnthropicInstrumentor().instrument(tracer_provider=tracer_provider)

os.environ["ANTHROPIC_API_KEY"] = "YOUR_KEY_HERE"

client = Anthropic()

response = client.messages.create(
    max_tokens=1024,
    messages=[
        {
            "role": "user",
            "content": "Tell me about the history of Iceland!",
        }
    ],
    model="claude-3-opus-20240229",
)
print(response)

Now, on the Phoenix UI on your browser, you should see the traces from your Anthropic application. Click on a trace, then the "Attributes" tab will provide you with in-depth information regarding execution!

More Info

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

File details

Details for the file openinference_instrumentation_anthropic-2.1.4.tar.gz.

File metadata

File hashes

Hashes for openinference_instrumentation_anthropic-2.1.4.tar.gz
Algorithm Hash digest
SHA256 d8bf37b46db6170feb8eafa2e92cc0cab99a811a8532ac00bc3ae999e3ee8725
MD5 f80e0ce106bb29272b96ff87efc2e18b
BLAKE2b-256 1723c2adbc44dd29c1a4c7b967c5bcf2aa8fb53dc0599bc6be663010b8c4f6c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for openinference_instrumentation_anthropic-2.1.4.tar.gz:

Publisher: publish.yaml on Arize-ai/openinference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file openinference_instrumentation_anthropic-2.1.4-py3-none-any.whl.

File metadata

File hashes

Hashes for openinference_instrumentation_anthropic-2.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 d140d4ce4c9b421878bd98c20f208185ef03f9b0baab00cbc2721913979fc668
MD5 7b0b8508a3f9c4deb770a8d319273fd0
BLAKE2b-256 765de3e8549d4290ed0361bf059817188d61b1ea40d9acd83b865ed3023e612d

See more details on using hashes here.

Provenance

The following attestation bundles were made for openinference_instrumentation_anthropic-2.1.4-py3-none-any.whl:

Publisher: publish.yaml on Arize-ai/openinference

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

2.1.5

2 files

This release

2.1.4 This release

2 files

2.1.3

2 files

2.1.2

2 files

2.1.1

2 files

2.1.0

2 files

2.0.1

2 files

2.0.0

2 files

1.1.2

2 files

1.1.1

2 files

1.1.0

2 files

1.0.6

2 files

1.0.5

2 files

1.0.4

2 files

1.0.3

2 files

1.0.2

2 files

1.0.1

2 files

1.0.0

2 files

0.1.20

2 files

0.1.19

2 files

0.1.18

2 files

0.1.17

2 files

0.1.16

2 files

0.1.15

2 files

0.1.14

2 files

0.1.13

2 files

0.1.12

2 files

0.1.11

2 files

0.1.10

2 files

0.1.9

2 files

0.1.8

2 files

0.1.7

2 files

0.1.6

2 files

0.1.5

2 files

0.1.4

2 files

0.1.3

2 files

0.1.2

2 files

0.1.1

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page