Skip to main content

OpenInference Anthropic Instrumentation

Project description

OpenInference Anthropic Instrumentation

Python autoinstrumentation library for the Anthropic package

This package implements the following Anthropic clients:

  • Messages
  • Completions
  • AsyncMessages
  • AsyncCompletions
  • 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.

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

Project details


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-1.1.0.tar.gz.

File metadata

File hashes

Hashes for openinference_instrumentation_anthropic-1.1.0.tar.gz
Algorithm Hash digest
SHA256 9fd6a5fbf5674980e663daff978df86bfe0e1a327ec4de70d96b913377710fc5
MD5 9a4101ae82a9b32e9e43bd35f92b30f9
BLAKE2b-256 1227efecebb414ffd39aa75eb9a0337227ee411896bb59b11cefa16e3951bafd

See more details on using hashes here.

Provenance

The following attestation bundles were made for openinference_instrumentation_anthropic-1.1.0.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-1.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for openinference_instrumentation_anthropic-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 dc9a6ae17d1c2719bd0d5a454aba6d266abfc00d96e0a45526b48c9009805e87
MD5 4000a246ffc4acd1e534999355470fe7
BLAKE2b-256 66149502d38637470c7d7b6a232e6248451d353b347844342ed031a715190f1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for openinference_instrumentation_anthropic-1.1.0-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.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page