~A
Anthropic Claude Sonnet Latest
This model always redirects to the latest model in the Anthropic Claude Sonnet family.
textvision
Specifications
| Context Window | 1M |
| Modalities | text, vision |
| Status | available |
| Category | third-party |
| Model ID | ~anthropic/claude-sonnet-latest |
Quick Start
TypeScript
import OpenAI from 'openai'
const client = new OpenAI({
apiKey: process.env.HANZO_API_KEY,
baseURL: 'https://api.hanzo.ai/v1'
})
const response = await client.chat.completions.create({
model: '~anthropic/claude-sonnet-latest',
messages: [{ role: 'user', content: 'Hello!' }]
})
console.log(response.choices[0].message.content)Python
from openai import OpenAI
client = OpenAI(
api_key=os.environ["HANZO_API_KEY"],
base_url="https://api.hanzo.ai/v1"
)
response = client.chat.completions.create(
model="~anthropic/claude-sonnet-latest",
messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)cURL
curl https://api.hanzo.ai/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $HANZO_API_KEY" \
-d '{
"model": "~anthropic/claude-sonnet-latest",
"messages": [{"role": "user", "content": "Hello!"}]
}'Go
package main
import (
"context"
"fmt"
"os"
"github.com/sashabaranov/go-openai"
)
func main() {
cfg := openai.DefaultConfig(os.Getenv("HANZO_API_KEY"))
cfg.BaseURL = "https://api.hanzo.ai/v1"
client := openai.NewClientWithConfig(cfg)
resp, _ := client.CreateChatCompletion(context.Background(),
openai.ChatCompletionRequest{
Model: "~anthropic/claude-sonnet-latest",
Messages: []openai.ChatCompletionMessage{
{Role: openai.ChatMessageRoleUser, Content: "Hello!"},
},
},
)
fmt.Println(resp.Choices[0].Message.Content)
}More from ~anthropic
Anthropic: Claude Fable Latest
1MThis model always redirects to the latest model in the Claude Fable family.
Anthropic Claude Haiku Latest
200KThis model always redirects to the latest model in the Anthropic Claude Haiku family.
Anthropic: Claude Opus Latest
1MThis model always redirects to the latest model in the Claude Opus family.
Use Anthropic Claude Sonnet Latest via Hanzo AI
One API key. 390+ models. OpenAI-compatible. Start free.