Enter password to access
https://everyone-herself-short-monkey.trycloudflare.com
kaistuvrhttps://extracellularly-unsoulish-adriel.ngrok-free.dev/v1minimax-m2.7 β MiniMax-M2.7 230B MoE AWQ-4bit, TP=2 (2x DGX Spark), ~38 tok/s, tool calling, reasoning, 128K ctx, native streaming β
πgemma4-26b β Gemma 4 26B MoE, ~51 tok/s, vision, tool calling (offline)https://extracellularly-unsoulish-adriel.ngrok-free.dev/v1Set API Key to your personal tokenminimax-m2.7Supports both chat and agent mode (tool calling enabled).
curl https://extracellularly-unsoulish-adriel.ngrok-free.dev/v1/chat/completions \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "minimax-m2.7",
"messages": [{"role": "user", "content": "Hello!"}],
"stream": true
}'
from openai import OpenAI
client = OpenAI(
base_url="https://extracellularly-unsoulish-adriel.ngrok-free.dev/v1",
api_key="YOUR_API_KEY"
)
response = client.chat.completions.create(
model="minimax-m2.7",
messages=[{"role": "user", "content": "Hello!"}],
stream=True
)
for chunk in response:
print(chunk.choices[0].delta.content or "", end="")