New

    Introducing AutoEvals: Find the right model for your task

    OpenAIMultimodal Model

    GPT-5.6 Terra

    The balanced everyday tier of the GPT-5.6 family: performance competitive with GPT-5.5 at a significantly lower price. A 1M-token context and none-to-max reasoning efforts make it a strong default for production agents.

    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: "gpt-5.6-terra",
      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);
    }

    Start building with GPT-5.6 Terra today

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