Super Sonnet Mix
Super Sonnet Mix bundles multiple tools and providers in a single endpoint to supercharge Anthropic's Sonnet 3.5 model. Simply send a request with a Crosshatch tool (eg: crosshatch:create_image) to use it. Additionally, the Super Sonnet Mix frees you from rate-limit issues by consolidating several inference providers. If your request is rate limited by Anthropic, Crosshatch will automatically route it to Bedrock.
API
Example
import Anthropic from "@anthropic-ai/sdk"const anthropic = new Anthropic({baseURL: "https://api.crosshatch.app",apiKey: "your_api_key_here"})const message = await anthropic.messages.create({model: "super-sonnet-3.5-20241022",messages: [{role: "user",content: "Hello there"}]})
Models
This mix uses the models below:
claude-3-5-sonnet-20241022
Provided by Anthropic
claude-3-5-sonnet-20241022
Provided by Bedrock
Tools
This mix has the following built-in tools available:
Create Image
Powered by Flux Schnell, Stable Diffusion XL, and Playground v2.5 ($0.006 / image)
Web Search
Powered by Exa and Tavily ($0.008 / search)
Readme
Super Sonnet Mix
Super Sonnet Mix enhances Anthropic’s Sonnet 3.5 with integrated tools and multi-provider support, making it even more powerful and reliable for production deployments. It addresses common challenges teams face when scaling their LLM applications, including rate limiting, provider management, and tool integration.
Categories
- 🦸♂️ Super Mix
Features
Multi-Provider Reliability
Super Sonnet Mix implements an intelligent failover strategy to ensure high availability:
- Requests are first routed to Anthropic's API
- If rate limited, automatically fails over to AWS Bedrock This approach effectively increases your rate limits without requiring multiple API keys or complex integration logic.
Integrated Tools
The mix includes built-in capabilities that work out of the box:
crosshatch:search
: Powered by Exa and Tavily APIs for up-to-date informationcrosshatch:create_image
: Integrated Flux capabilities via Replicate
These tools are available by passing them in the tools
parameter, without requiring any implementation.
For example
{
"tools": [
{ "name": "crosshatch:create_image" },
{ "name": "crosshatch:search" }
]
}
Composition
This mix intelligently routes requests through the following providers:
Provider | Priority | Model |
---|---|---|
Anthropic | 1st | claude-3-5-sonnet-20241022 |
AWS Bedrock | 2nd | claude-3-5-sonnet-20241022 |
Aliases
For convenience during development and testing, this mix is aliased as super-sonnet-3.5-latest
. However, this alias may point to a different version of the mix in the future, so it is not recommended for production use.