New

    Introducing AutoEvals: Find the right model for your task

    AnthropicMultimodal Model

    Claude Sonnet 4.6

    Anthropic's best balance of speed and intelligence. Sonnet 4.6 covers most production workloads — chat, document analysis, moderate-complexity coding — with a 1M-token context window and adaptive thinking at well below Opus pricing.

    import OpenAI from "openai";
    
    const openai = new OpenAI({
      baseURL: "https://api.inference.net/v1",
      apiKey: "<YOUR_API_KEY>",
    });
    
    const completion = await openai.chat.completions.create({
      model: "claude-sonnet-4-6",
      messages: [
        {
          role: "user",
          content: "What is the meaning of life?"
        }
      ],
      stream: true,
    });
    
    for await (const chunk of completion) {
      process.stdout.write(chunk.choices[0]?.delta.content as string);
    }
    Prompt caching
    1. Keep the stable system content block byte-identical across calls.
    2. Mark it with cache_control: { "type": "ephemeral" } to set a cache point.
    3. Check usage.prompt_tokens_details.cached_tokens in the response to confirm cache reads. Initial writes may appear in cache-creation usage fields.
    {
      "messages": [{
        "role": "system",
        "content": [{
          "type": "text",
          "text": "Stable system content...",
          "cache_control": { "type": "ephemeral" }
        }]
      }]
    }

    Start building with Claude Sonnet 4.6 today

    Serverless, OpenAI-compatible, and billed per token. No commitments.