openinference-instrumentation-anthropic package.
Install
Setup
Connect your application to Phoenix with theregister function:
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
openinference-instrumentation-anthropic package.
pip install openinference-instrumentation-anthropic anthropic
register function:
import anthropic
client = anthropic.Anthropic()
message = client.messages.create(
model="claude-3-5-sonnet-20240620",
max_tokens=1000,
messages=[
{
"role": "user",
"content": [
{
"type": "text",
"text": "Why is the ocean salty?"
}
]
}
]
)
print(message.content)
Was this page helpful?
