Category:AI on demand: Difference between revisions

From MediaWiki
Jump to navigation Jump to search
No edit summary
Line 1: Line 1:
List all models:
<syntaxhighlight lang="bash">
STONEY_KEY=""              # Your key starts with "sk-1..."
curl -s https://llm.stoney-cloud.com/v1/models  -H "Authorization: Bearer $STONEY_KEY" | jq .
</syntaxhighlight>
The result will display something like:
<syntaxhighlight lang='json'>
{
  "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"
}
</syntaxhighlight>
[[Category: Artificial Intelligence]]
[[Category: Artificial Intelligence]]

Revision as of 10:45, 26 March 2026

List all models:

STONEY_KEY=""               # Your key starts with "sk-1..."
curl -s https://llm.stoney-cloud.com/v1/models   -H "Authorization: Bearer $STONEY_KEY" | jq .

The result will display something like:

{
  "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"
}

Pages in category "AI on demand"

This category contains only the following page.