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