New pages
Jump to navigation
Jump to search
- 11:26, 11 May 2026 AI on demand: lightonai/LightOnOCR-2-1B (hist | edit) [2,378 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=lightonai/LightOnOCR-2-1B # Set the desired document to run OCR against: FILE_PATH=document.png # Encode document contents with Base64 and detect MIME type: FILE_CONTENT_BASE64=$(base64 -w 0 < "$FILE_PATH") FILE_MIME_TYPE=$(file --brief --mime-type "$FILE_PATH") curl https://llm.stoney-cloud.com/v1/chat/completions \ --silent --fail...")
- 17:59, 7 May 2026 AI on demand: openai/whisper-large-v3 (hist | edit) [701 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=openai/whisper-large-v3 # Path to the audio file to transcribe: AUDIO_FILE=your-audio-file.wav curl -s https://llm.stoney-cloud.com/v1/audio/transcriptions \ --silent --fail --show-error \ --header "Authorization: Bearer $STONEY_KEY" \ --form "file=@$AUDIO_FILE" \ --form "model=$MODEL" \ | jq </syntaxhi...")
- 14:28, 7 May 2026 AI on demand: allenai/olmOCR-2-7B (hist | edit) [1,684 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=allenai/olmOCR-2-7B # Set your prompt: PROMPT='Hello.' # Set maximum amount of tokens: MAX_TOKENS=100 curl https://llm.stoney-cloud.com/v1/chat/completions \ --silent --fail --show-error \ --header "Authorization: Bearer $STONEY_KEY" \ --header 'Content-Type: application/json' \ --data '{ "mo...")
- 14:27, 7 May 2026 AI on demand: NVIDIA/NVIDIA-Nemotron-3-Super-120B-A12B (hist | edit) [1,740 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=NVIDIA/NVIDIA-Nemotron-3-Super-120B-A12B # Set your prompt: PROMPT='Hello.' # Set maximum amount of tokens: MAX_TOKENS=100 curl https://llm.stoney-cloud.com/v1/chat/completions \ --silent --fail --show-error \ --header "Authorization: Bearer $STONEY_KEY" \ --header 'Content-Type: application/json' \ --data '...")
- 14:26, 7 May 2026 AI on demand: Qwen/Qwen3.5-35B-A3B-FP8 (hist | edit) [1,980 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=Qwen/Qwen3.5-35B-A3B-FP8 # Set your prompt: PROMPT='Hello.' # Set maximum amount of tokens: MAX_TOKENS=100 curl https://llm.stoney-cloud.com/v1/chat/completions \ --silent --fail --show-error \ --header "Authorization: Bearer $STONEY_KEY" \ --header 'Content-Type: application/json' \ --data '{...")
- 14:24, 7 May 2026 AI on demand: Qwen/Qwen3-Coder-Next (hist | edit) [1,633 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=Qwen/Qwen3-Coder-Next # Set your prompt: PROMPT='Hello.' # Set maximum amount of tokens: MAX_TOKENS=100 curl https://llm.stoney-cloud.com/v1/chat/completions \ --silent --fail --show-error \ --header "Authorization: Bearer $STONEY_KEY" \ --header 'Content-Type: application/json' \ --data '{ "...")
- 11:48, 7 May 2026 AI on demand: BAAI/bge-m3 (hist | edit) [31,850 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=BAAI/bge-m3 curl https://llm.stoney-cloud.com/v1/embeddings \ --silent --fail --show-error \ --header "Authorization: Bearer $STONEY_KEY" \ --header 'Content-Type: application/json' \ --data '{ "model": "BAAI/bge-m3", "input": "The quick brown fox jumps over the lazy dog"...")
- 11:45, 7 May 2026 AI on demand: BAAI/bge-reranker-v2-m3 (hist | edit) [2,034 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=BAAI/bge-reranker-v2-m3 curl -s https://llm.stoney-cloud.com/v1/rerank \ -H "Authorization: Bearer $STONEY_KEY" \ -H 'Content-Type: application/json' \ -d '{ "model": "'"$MODEL"'", "query": "Which Swiss ski resorts are best for beginners?", "documents": [...")
- 08:33, 8 April 2026 AI on demand: Usage (hist | edit) [4,097 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='...")