All public logs
Jump to navigation
Jump to search
Combined display of all available logs of MediaWiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 16:55, 2 April 2026 Sst-yde talk contribs created page AI on demand: MiniMax (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...")