New pages
Jump to navigation
Jump to search
- 08:33, 8 April 2026 AI on demand: Usage (hist | edit) [2,704 bytes] Sst-mei (talk | contribs) (Created page with "= Overview = This pages describes some useful usage commands. = Usage = We assume you've received your API key from us in our usual manner. == Usage - List all models == === Usage - List all models - Generic === <syntaxhighlight lang="bash"> # Set your personal key: STONEY_KEY=sk-... # List all generic models: curl -s https://llm.stoney-cloud.com/v1/models \ -H "Authorization: Bearer $STONEY_KEY" \ | jq . </syntaxhighlight> Example output: <syntaxhighlight lang='...")
- 16:55, 2 April 2026 AI on demand: MiniMax (hist | edit) [1,637 bytes] Sst-yde (talk | contribs) (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...")
- 14:43, 30 March 2026 AI on demand: Voxtral (hist | edit) [954 bytes] Sst-yde (talk | contribs) (Created page with "== Calling the model == <syntaxhighlight lang="bash"> # Set your personal key STONEY_KEY=sk-... # Set the desired model MODEL_ID=mistralai/Voxtral-Mini-3B-2507 # Path to the audio file to transcribe AUDIO_FILE=your-audio-file.wav curl -s https://llm.stoney-cloud.com/v1/audio/transcriptions \ -H "Authorization: Bearer $STONEY_KEY" \ -F "file=@$AUDIO_FILE" \ -F "model=$MODEL_ID" \ | jq . </syntaxhighlight> Example output: <syntaxhighlight lang="json"> { "text...")
- 11:20, 30 March 2026 AI on demand: Apertus (hist | edit) [1,644 bytes] Sst-yde (talk | contribs) (Created page with "== Calling the model == <syntaxhighlight lang="bash"> # Set your personal key STONEY_KEY=sk-... # Set the desired model MODEL_ID=swiss-ai/Apertus-70B-Instruct-2509 curl -s https://llm.stoney-cloud.com/v1/chat/completions \ -H "Authorization: Bearer $STONEY_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "swiss-ai/Apertus-70B-Instruct-2509", "messages": [ {"role": "user", "content": "Say hello"} ], "max_tokens": 10 }' | jq . <...")