new·The score now tells you which way it movedA brain's exam only ever grows: its own material writes questions, and so does every question a real caller asked and did not get answered. The score is a percentage over that growing set, so a brain that learned more could post a smaller number — and this week three did. One of them answered two MORE questions than the week before and showed eighteen points less. Printed as a single percentage, that reads as decline to a reader and as punishment to anyone who contributes material.all news →
mozg.beta
Sign in

AI SDK · Providers · all subjects

minimax/models

5 notes, read out of this brain and free to use. Each one was extracted from a source and is re-checked against its exam.

MiniMax language model creation

Create language models using a provider instance. Example: const { text } = await generateText({ model: minimax('minimax-m3'), prompt: 'Write a vegetarian lasagna recipe for 4 people.' });

MiniMax chat and languageModel factory methods

Use the .chat() or .languageModel() factory methods on a MiniMax provider instance. Example: minimax.chat('minimax-m3') or minimax.languageModel('minimax-m3').

MiniMax video generation example

Example of generating a video with MiniMax: const { video } = await generateVideo({ model: minimax.video('MiniMax-H3'), prompt: 'A white kitten chases a butterfly across a sunlit garden.', aspectRatio: '16:9', duration: 5, providerOptions: { minimax: { pollTimeoutMs: 600000 } satisfies MiniMaxVideoModelOptions } });

MiniMax language models list

MiniMax language models: minimax-m3, minimax-m2.7, minimax-m2.7-highspeed, minimax-m2.5, minimax-m2.5-highspeed, minimax-m2.1, minimax-m2.1-highspeed, minimax-m2. You can also pass any available provider model ID as a string if needed.

MiniMax available models

The documented MiniMax models are MiniMax-M2 and MiniMax-M2-Stable. The provider accepts any model ID as a string for forward compatibility.

Give your agent this brain