New pages

Jump to navigation Jump to search
New pages
Hide registered users | Hide bots | Hide redirects
  • 16:19, 9 July 2026AI on demand: apertus-ai/Apertus-v1.5-8B-Prerelease-2607 (hist | edit) ‎[1,712 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=apertus-ai/Apertus-v1.5-8B-Prerelease-2607 # 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...")
  • 09:36, 1 July 2026MediaWiki Shared: log in manual (de) (hist | edit) ‎[633 bytes]Sst-fbe (talk | contribs) (Created page with "= Step 1 = Öffnen Sie in Ihrem Webbrowser die URL, welche Sie mit den Login-Daten bekommen haben: Beispiel: <syntaxhighlight lang="bash"> https://musterfirma.stoney-wiki.com </syntaxhighlight> = Step 2 = Geben Sie 'Username' und 'Password', welche sie von uns empfangen haben, ein. Klicken Sie anschliessend auf 'Log in'. '''Wir danken Ihnen, dass Sie MediaWiki Shared benutzen!'''") originally created as "MediaWiki Shared log in manual deutsch"
  • 11:42, 4 June 2026Kopia restore process (hist | edit) ‎[9,833 bytes]Sst-ska (talk | contribs) (Created page with "Category: Backup")
  • 11:26, 11 May 2026AI on demand: lightonai/LightOnOCR-2-1B (hist | edit) ‎[2,456 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 2026AI 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 2026AI on demand: allenai/olmOCR-2-7B (hist | edit) ‎[2,442 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 2026AI 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 2026AI 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 2026AI 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 2026AI 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 2026AI 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": [...")