AI on demand: MiniMax: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

2 April 2026

  • curprev 16:5916:59, 2 April 2026Sst-yde talk contribs 1,637 bytes +103 →‎Calling the model
  • curprev 16:5516:55, 2 April 2026Sst-yde talk contribs 1,534 bytes +1,534 Created page with "== Calling the model == <syntaxhighlight lang="bash"> # Set your personal key STONEY_KEY=sk-... # Set the desired model MODEL_ID=MiniMaxAI/MiniMax-M2.5 curl -s https://llm.stoney-cloud.com/v1/chat/completions \ -H "Authorization: Bearer $STONEY_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "'"$MODEL_ID"'", "messages": [ {"role": "user", "content": "Hello."} ], "max_tokens": 100 }' \ | jq . </syntaxhighlight> Example outp..."