Skip to main content

Claude 3.5 Sonnet

Approved Data Classifications

Description

The Claude 3 family of models represents the cutting edge of AI technology, offering unparalleled performance, versatility, and ease of use. These models excel at open-ended conversation, collaboration on ideas, coding tasks, and working with text – whether searching, writing, editing, translating, outlining, or summarizing. They also offer advanced vision capabilities, allowing you to process and analyze visual input such as charts, graphs, and photos.

Capabilities

ModelTraining DataInputOutputContext LengthCost (per 1 million tokens)
claude-3.5-sonnetAugust 2023Image, TextText200,000$3.00/1M input
$15.00/1M output
info
  • 1M represents 1 Million Tokens
  • All prices listed are based on 1 Million Tokens

Availability

Cloud Provider

Usage

curl -X POST https://api.ai.it.ufl.edu/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <API_TOKEN>" \
-d '{
"model": "claude-3.5-sonnet",
"messages": [
{
"role": "system",
"content": "You are a helpful assistant."
},
{
"role": "user",
"content": "Write a haiku about an Alligator."
}
]
}'