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).
- 11:26, 11 May 2026 Sst-yde talk contribs created page AI on demand: lightonai/LightOnOCR-2-1B (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 Sst-yde talk contribs created page AI on demand: openai/whisper-large-v3 (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 Sst-yde talk contribs created page AI on demand: allenai/olmOCR-2-7B (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 Sst-yde talk contribs created page AI on demand: NVIDIA/NVIDIA-Nemotron-3-Super-120B-A12B (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 Sst-yde talk contribs created page AI on demand: Qwen/Qwen3.5-35B-A3B-FP8 (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 Sst-yde talk contribs created page AI on demand: Qwen/Qwen3-Coder-Next (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 '{ "...")
- 14:16, 7 May 2026 Sst-yde talk contribs deleted page AI on demand: Apertus (content was: "#REDIRECT AI on demand: swiss-ai/Apertus-70B-Instruct-2509", and the only contributor was "Sst-yde" (talk))
- 14:16, 7 May 2026 Sst-yde talk contribs moved page AI on demand: Apertus to AI on demand: swiss-ai/Apertus-70B-Instruct-2509
- 14:15, 7 May 2026 Sst-yde talk contribs deleted page AI on demand: MinerU (content was: "#REDIRECT AI on demand: opendatalab/MinerU2.5-2509-1.2B", and the only contributor was "Sst-yde" (talk))
- 14:15, 7 May 2026 Sst-yde talk contribs moved page AI on demand: MinerU to AI on demand: opendatalab/MinerU2.5-2509-1.2B
- 13:52, 7 May 2026 Sst-yde talk contribs deleted page AI on demand: MiniMax (content was: "#REDIRECT AI on demand: MiniMaxAI/MiniMax-M2.5", and the only contributor was "Sst-yde" (talk))
- 13:52, 7 May 2026 Sst-yde talk contribs moved page AI on demand: MiniMax to AI on demand: MiniMaxAI/MiniMax-M2.5
- 13:51, 7 May 2026 Sst-yde talk contribs deleted page AI on demand: Voxtral (content was: "#REDIRECT AI on demand: mistralai/Voxtral-Mini-3B-2507", and the only contributor was "Sst-yde" (talk))
- 13:51, 7 May 2026 Sst-yde talk contribs moved page AI on demand: Voxtral to AI on demand: mistralai/Voxtral-Mini-3B-2507
- 11:48, 7 May 2026 Sst-yde talk contribs created page AI on demand: BAAI/bge-m3 (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 Sst-yde talk contribs created page AI on demand: BAAI/bge-reranker-v2-m3 (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": [...")
- 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...")
- 14:43, 30 March 2026 Sst-yde talk contribs created page AI on demand: Voxtral (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 Sst-yde talk contribs created page AI on demand: Apertus (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 . <...")
- 17:00, 4 March 2026 Sst-yde talk contribs deleted page Category:AI on Demand (content was: "#REDIRECT Category:AI on demand", and the only contributor was "Sst-yde" (talk))
- 17:00, 4 March 2026 Sst-yde talk contribs moved page Category:AI on Demand to Category:AI on demand
- 16:59, 4 March 2026 Sst-yde talk contribs deleted page AI on Demand: MinerU (content was: "#REDIRECT AI on demand: MinerU", and the only contributor was "Sst-yde" (talk))
- 16:59, 4 March 2026 Sst-yde talk contribs moved page AI on Demand: MinerU to AI on demand: MinerU
- 14:50, 11 February 2026 Sst-yde talk contribs created page LLM as a Service: MinerU (Created page with "Category: LLM as a Service")
- 14:49, 11 February 2026 Sst-yde talk contribs created page Category:LLM as a Service (Created blank page)
- 09:52, 7 August 2024 Sst-yde talk contribs created page Kubernetes management (Created page with "Category: Kubernetes")
- 09:52, 7 August 2024 Sst-yde talk contribs deleted page Kubernetes Management (content was: "Category: Kubernetes", and the only contributor was "Sst-yde" (talk))
- 09:51, 7 August 2024 Sst-yde talk contribs created page Kubernetes Management (Created page with "Category: Kubernetes")
- 15:21, 31 July 2024 User account Sst-yde talk contribs was created automatically