Announcements

Kimi K3 Open Weights Are Here. The Benchmark Phase Starts Now.

Kimi K3 brings frontier open-model capabilities to production workflows. After several days of testing, we found it strong at deep reasoning, creative problem-solving, long-running tasks, and sub-agent orchestration.

July 27, 2026

Kimi K3 was already one of July’s most-watched model launches. With open weights entering the ecosystem, developers can now evaluate its behavior across workloads, serving stacks, and agent architectures.

Moonshot introduced K3 as a 2.8-trillion-parameter Mixture-of-Experts model with 896 experts, 16 active experts per token, native multimodal input, and a 1,048,576-token context window. Those specifications create meaningful possibilities for coding, research, knowledge work, and long-horizon agent workflows.

Our API testing

Over the last few days, we tested Kimi K3 through the API across reasoning, creative, coding, multimodal, and agentic workflows.

The standout result was its ability to sustain long-running work. In several tests, K3 worked continuously for three to four hours, maintaining momentum through multi-step tasks that required planning, iteration, tool use, and structured handoffs.

K3 also performed strongly when acting as an orchestrator for sub-agents. It was effective at breaking a larger objective into discrete workstreams, assigning specialized tasks, reviewing returned work, and deciding what needed another iteration. That makes it an interesting model for teams building coding agents, research systems, and operational workflows where a primary agent coordinates multiple tools or sub-agents.

Its reasoning style is particularly well suited to open-ended work. K3 handled exploratory prompts, alternative solution paths, and creative problem solving with strong continuity across a long task horizon.

A practical multimodal stack

K3 supports native visual understanding alongside text and offers a 1M-token context window for software engineering, knowledge work, and deep-reasoning scenarios.

In our multimodal testing, we found a paired-model workflow especially useful: use K3 as the long-horizon reasoning and orchestration layer, then add a Google Gemini image model as a visual reviewer inside the agent loop.

For example, an agent can ask K3 to plan a task, generate an implementation, and assess the expected visual result. Gemini can then inspect the rendered image, UI screenshot, chart, or design artifact. Its visual feedback returns to K3, which can revise the plan or implementation and continue the workflow.

This approach turns multimodal work into a feedback loop:

  1. K3 plans, reasons, writes, and coordinates the task.

  2. A Gemini image model evaluates visual output.

  3. K3 incorporates that feedback and directs the next action.

  4. The agent repeats until the output meets the defined criteria.

GMI Cloud’s model library is organized by modality, making it possible to combine language, reasoning, vision, image, audio, video, and 3D models into a workflow that fits the job

The Visual-Agent Loop That Improved K3 Game Builds

Kimi K3 handled the game logic, coding, and iteration planning, while specialized image and vision models filled in the visual layer. In the workflow, K3 requested textures from Gemini or GPT Image, applied them to each scene element, then sent screenshots from multiple angles to a vision model for review. That feedback identified issues in lighting, scale, and texture quality, which K3 used as instructions for the next iteration.

Repeating this loop roughly 80 times turned a flat initial prototype into a more polished strategy-game environment, showing how K3 can orchestrate long-running creative workflows when paired with the right visual models. GMI Cloud provides K3, Gemini image models, and GPT Image models through one API, so developers can build this kind of self-improving multi-model loop without managing separate providers.

Open weights expand evaluation

K3’s open-weight release gives teams the opportunity to evaluate more than a model response. Developers can explore how it performs across their own prompts, agent frameworks, inference configurations, and latency requirements.

That opens up several useful paths:

  • Reproducible testing: Run consistent prompts, tool definitions, and evaluation harnesses across models.

  • Agent architecture experiments: Compare single-agent, supervisor-agent, and multi-agent designs on the same workload.

  • Serving evaluation: Measure throughput, concurrency, time to first token, and output quality using the stack your team plans to run.

  • Deployment flexibility: Choose managed inference, dedicated endpoints, or self-managed compute based on utilization, governance, and operational goals.

A model card and public benchmark are useful starting points. The most valuable evaluation is how a model behaves on the actual work your team wants to automate.

The official Kimi K3 weights and model materials are available on Hugging Face, giving developers a direct path to inspect the release and evaluate self-hosted deployments.

The 2.8T architecture

K3 uses a Mixture-of-Experts architecture rather than activating all 2.8 trillion parameters for each token. Moonshot states that K3 has 896 experts and activates 16 experts per token, enabling frontier-scale capacity with sparse inference.

Dimension

Why it matters

Total parameters

Shapes model storage, loading, and infrastructure planning

Active experts per token

Influences compute use during generation

Long context

Supports large codebases, documents, and multi-step agent state

Expert routing

Affects batching, throughput, and capacity planning

Serving stack

Converts model capabilities into a production experience

A 1M-token context window gives developers more room to work across large repositories, long research documents, or extended task histories. Teams should still benchmark the context lengths, concurrency levels, and response times that matter for their own application.

What builders should test

The best K3 evaluation is grounded in real work.

Start with a focused benchmark suite:

  1. Codebase tasks: Give K3 an issue, acceptance criteria, and a test command. Measure whether its implementation passes the suite.

  2. Long-running agents: Test a bounded multi-hour workflow with a clear success condition, tool access, checkpoints, and human review.

  3. Sub-agent orchestration: Give a supervisor agent multiple specialized agents for research, implementation, review, or testing. Track coordination quality, retries, and completion rate.

  4. Long-context retrieval: Use a repository or document set and measure evidence quality, constraint tracking, and consistency.

  5. Multimodal feedback loops: Pair K3 with a visual model to evaluate screenshots, design artifacts, generated images, diagrams, or UI states.

  6. Structured output: Test JSON extraction, function calling, and schema compliance for workflows that connect directly to downstream systems.

Start with managed inference

Open weights create more choice. They also create an opportunity to start evaluating a frontier model without waiting to operate a large GPU fleet.

Managed inference is a strong starting point when teams want to:

  • Begin testing quickly

  • Experiment with several models in the same workflow

  • Scale variable traffic without capacity planning

  • Keep existing OpenAI SDK patterns

  • Focus engineering time on product and agent logic

GMI Cloud provides OpenAI-compatible inference APIs, allowing developers to use a familiar chat-completions pattern while accessing a broad model catalog.

from openai import OpenAI

client = OpenAI(
base_url="https://api.gmi-serving.com/v1",
api_key="YOUR_GMI_API_KEY",
)

response = client.chat.completions.create(
model="moonshotai/kimi-k3",
messages=[
{
"role": "user",
"content": "Plan a multi-agent workflow for reviewing a pull request."
}
],
)
print(response.choices[0].message.content)

GMI Cloud also supports dedicated endpoints and GPU infrastructure for teams that need more specialized capacity or control as workloads mature.

Measure successful outcomes

K3’s value comes from completed work: a resolved issue, a tested pull request, a researched answer, a reviewed artifact, or an agent workflow that reaches its goal.

Track:

  • Completion rate

  • Tokens per successful task

  • Time to first token and total task duration

  • Number of agent iterations

  • Sub-agent coordination quality

  • Tool calls and retry patterns

  • Cost per successful outcome

  • Human review time

A model that completes a complex task with fewer retries, stronger orchestration, and less human intervention can create significantly more value than a model assessed only on token price.

Build for the workflow

Kimi K3 expands what developers can test with open-weight models. Our early API testing suggests that its deepest strengths show up in reasoning-heavy, creative, long-running, and multi-agent workflows.

For builders, the path is straightforward:

  • Test K3 against real tasks

  • Use it as a long-horizon reasoning and orchestration layer

  • Pair it with specialized models where visual feedback strengthens the workflow

  • Measure quality, latency, throughput, and cost per completed task

  • Start with managed inference, then evolve infrastructure as demand becomes predictable

Try Kimi K3 on GMI Cloud

Kimi K3 is available through GMI Cloud’s OpenAI-compatible API, so teams already calling an LLM through GMI serverless inference can test it by changing the model ID. Start in the GMI Cloud Playground to run prompts without setup, then move to the serverless API for pay-as-you-go testing.

Want to self-host? Explore the official Kimi K3 Hugging Face repository.

Roan Weigert

Roan Weigert

DevRel @ GMI Cloud

Build AI Without Limits

GMI Cloud helps you architect, deploy, optimize, and scale your AI strategies

Ready to build?

Explore powerful AI models and launch your project in just a few clicks.

Get Started