New

    Introducing AutoEvals: Find the right model for your task

    GoogleMultimodal Model

    Gemini 3 Flash Preview

    The preview build that introduced the Gemini 3 Flash line: near-frontier intelligence at Flash speed and pricing, over a 1M-token multimodal context. Served for developers pinned to the preview; new work should target Gemini 3.5 or 3.6 Flash.

    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: "gemini-3-flash-preview",
      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 Gemini 3 Flash Preview today

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