minimaxai/minimax-m2.7MiniMax M2.7 is a 229-billion-parameter Mixture-of-Experts model (~10B active per token) from MiniMax, built for agentic workflows and real-world software engineering. It interleaves thinking with actions across multi-step tasks and is designed for building complex agent harnesses, leveraging agent teams, skills, and dynamic tool search, while its sparse activation keeps inference fast and efficient. On Groq, MiniMax M2.7 is available to Enterprise customers. Contact sales for access.
Experience state-of-the-art agentic coding and tool use with MiniMax M2.7 at Groq speed:
pip install groqfrom groq import Groq
client = Groq()
completion = client.chat.completions.create(
model="minimaxai/minimax-m2.7",
messages=[
{
"role": "user",
"content": "Explain why fast inference is critical for reasoning models"
}
]
)
print(completion.choices[0].message.content)