Moonshot AIReasoning Model

    Kimi K3 Fast

    Kimi K3 on a low-latency serving tier: the same open-weight flagship — 1M-token context, native vision, configurable reasoning — traded at a higher per-token price for markedly faster generation. For interactive agents where response speed matters most.

    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: "kimi-k3-fast",
      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 Kimi K3 Fast today

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