MiniMax-M2.5 is a well-rounded model for chat and content generation with a large context window.
curl https://aiapi-pro.com/v1/chat/completions \
-H "Authorization: Bearer $NOVAI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "minimax-m2.5",
"messages": [{"role":"user","content":"Write a short product description for wireless earbuds."}]
}'
from openai import OpenAI
client = OpenAI(
base_url="https://aiapi-pro.com/v1",
api_key="YOUR_NOVAI_API_KEY",
)
resp = client.chat.completions.create(
model="minimax-m2.5",
messages=[{"role":"user","content":"Write a short product description for wireless earbuds."}],
)
print(resp.choices[0].message.content)