Model Reference

plugsky-micro — the reasoning workhorse

plugsky-micro is a Nemotron 3 Nano 30B-class MoE model (9B active params) tuned for reasoning: fast, reliable, with 1M context and full tool support.

Summary

ModelIdentityContextLatency*Best for
plugsky-microNemotron 3 Nano (MoE)1M tokens~0.55s medianReasoning tasks, RAG with huge corpora, agent memory

*Median measured latency on the live API at https://api.plugsky.com/v1.

Specs

PropertyValue
Model familyNemotron 3 Nano (MoE)
Parameter class~9B active / 30B MoE
Context window1M tokens
Measured latency~0.55s median on the live API
CapabilitiesReasoning, tool/function calling, long-context
Available onHobby plan and above

When to use plugsky-micro

  • Reasoning-heavy prompts — math, logic, structured output.
  • Long documents — 1M context handles entire codebases and corpora.
  • Agents — tool calling with memory that does not forget.
  • RAG — retrieve everything, ask once.

Use it

from openai import OpenAI
client = OpenAI(base_url="https://api.plugsky.com/v1", api_key="sk-live-...")
r = client.chat.completions.create(
    model="plugsky-micro",
    messages=[{"role": "user", "content": "Explain 1M context in one sentence."}],
)
print(r.choices[0].message.content)

FAQ

Is plugsky-micro good for production?

Yes — it is one of the most-used models on the platform, with automatic fallback routing when upstream is overloaded.

How does it compare to plugsky-lite?

plugsky-lite is faster (~0.24s) and cheaper for simple tasks; plugsky-micro brings stronger reasoning and 1M context. Both support tools.

Does it support Arabic?

Yes — strong multilingual performance across the catalog. See Arabic LLM.

Get started in minutes

OpenAI-compatible API with 30+ models, free trial, and a 99.9% uptime SLA. No code changes required.

Start free trial → Read the docs