Category:AI on demand: Difference between revisions

From MediaWiki
Jump to navigation Jump to search
Line 69: Line 69:


<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
# Set your personal key
STONEY_KEY=sk-...
curl -s https://llm.stoney-cloud.com/v1/usage \
curl -s https://llm.stoney-cloud.com/v1/usage \
   -H "Authorization: Bearer $STONEY_KEY" \
   -H "Authorization: Bearer $STONEY_KEY" \

Revision as of 13:24, 30 March 2026

Overview

This category collects all AI on demand related pages.

stepping stone AG is proud to serve customers with current Language Models and OCR solutions.

All of our LLM services are reachable via the OpenAI-compatible gateway https://llm.stoney-cloud.com/.

Usage

We assume you've received your API key from us in our usual manner.

Usage - List all models

# Set your personal key
STONEY_KEY=sk-...

# List all models
curl -s https://llm.stoney-cloud.com/v1/models \
  -H "Authorization: Bearer $STONEY_KEY" \
  | jq .

Example output:

{
  "data": [
    {
      "created": 0,
      "object": "model",
      "id": "MinerU2.5-2509-1.2B",
      "owned_by": "stepping stone AG"
    },
    {
      "created": 0,
      "object": "model",
      "id": "MinerU2.5-2509-1.2B",
      "owned_by": "stepping stone AG"
    },
    {
      "created": 0,
      "object": "model",
      "id": "MiniMaxAI/MiniMax-M2.5",
      "owned_by": "stepping stone AG"
    },
    {
      "created": 0,
      "object": "model",
      "id": "MiniMaxAI/MiniMax-M2.5",
      "owned_by": "system"
    },
    {
      "created": 0,
      "object": "model",
      "id": "swiss-ai/Apertus-70B-Instruct-2509",
      "owned_by": "stepping stone AG"
    },
    {
      "created": 0,
      "object": "model",
      "id": "swiss-ai/Apertus-70B-Instruct-2509",
      "owned_by": "system"
    }
  ],
  "object": "list"
}

Usage - Inspecting your usage

We issue one key per model for now. The usage is thus per-model-per-key.

# Set your personal key
STONEY_KEY=sk-...

curl -s https://llm.stoney-cloud.com/v1/usage \
  -H "Authorization: Bearer $STONEY_KEY" \
  | jq .

Example output:

{
  "tokens_out": 3732,
  "requests": 15,
  "month": "2026-03",
  "tokens_in": 10412
}

Pages in category "AI on demand"

The following 3 pages are in this category, out of 3 total.