MiniMax-Text-01 is one of the most impressive large language models you might not have heard of. With 456 billion parameters and a context window of 1 million tokens, it excels at tasks that require processing very long documents.
| Feature | MiniMax-Text-01 |
|---|---|
| Parameters | 456B |
| Context Window | 1,000,000 tokens |
| Architecture | MoE (Mixture of Experts) |
| Input Price (NovAI) | $0.20 / 1M tokens |
| Output Price (NovAI) | $1.60 / 1M tokens |
| Streaming | Yes |
from openai import OpenAI
client = OpenAI(
api_key="your-novai-api-key",
base_url="https://aiapi-pro.com/v1"
)
# Example: Summarize a very long document
long_document = open("my_document.txt").read() # Can be hundreds of pages
response = client.chat.completions.create(
model="minimax-text-01",
messages=[
{"role": "system", "content": "You are a document analysis assistant."},
{"role": "user", "content": f"Summarize this document:\n\n{long_document}"}
],
max_tokens=4096
)
print(response.choices[0].message.content)
| Model | Context Length | Input Price | Accessible? |
|---|---|---|---|
| MiniMax-Text-01 | 1M tokens | $0.20/1M | Via NovAI (easy) |
| Claude 3.5 | 200K tokens | $3.00/1M | Anthropic API |
| GPT-4o | 128K tokens | $2.50/1M | OpenAI API |
| Gemini 1.5 Pro | 1M tokens | $1.25/1M | Google API |
MiniMax offers the longest context at the lowest price — $0.20/1M input tokens is 6x cheaper than Gemini and 15x cheaper than Claude.
1 million token context. $0.20/1M input tokens. OpenAI-compatible API.
Get API Key →