Anthropic
Anthropic

Claude 3 Opus(20240229)

anthropic/claude-3-opus-20240229

Claude 3 Opus is Anthropic's most powerful model for highly complex tasks. It boasts top-level performance, intelligence, fluency, and understanding.

See the launch announcement and benchmark results here

#multimodal

Capability

Vision Support

Tools

Function Calling

Context Window

200,000

Max Output Tokens

4,096

Using Claude 3 Opus(20240229) with Python API

Using Claude 3 Opus(20240229) with OpenAI compatible API

import openai

client = openai.Client(
  api_key= '{your_api_key}',
  base_url="https://api.model.box/v1",
)
response = client.chat.completions.create(
model="anthropic/claude-3-opus-20240229",
messages: [
  {
    role: 'user',
    content:
      'introduce your self',
    },
  ]
)
print(response)