v1

latestOpenAPI 3.0.3MIT2026-07-17493640.5 KB
Abilities Management

Retrieve all abilities

Retrieve the information of all abilities.

get/abilities

Query parameters

sortstring
Example:["title","ASC"]

Specifies the sorting order and field (e.g., ["title", "ASC"]).

rangestring
Example:[0, 24]

Specifies the range of results to return (e.g., [0, 24]).

filterstring
Example:{"title":"bar"}

JSON string specifying the filter conditions (e.g., {"title":"bar"}).

Response

OK

idstring
namestring
descriptionstring
languagestring
licensestring

Example response

[
  {
    "id": "fetch_llama_cpp",
    "name": "pAI-OS",
    "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.",
    "versions": {
      "package": "1.1.0",
      "product": "0.2beta3",
      "latest": "1.1.0",
      "installed": "1.1.0",
      "available": [
        "0.1.0",
        "0.2.0"
      ]
    },
    "author": {
      "name": "pAI-OS",
      "url": "https://localhost:8080/v1/api"
    },
    "maintainer": {
      "name": "pAI-OS",
      "email": "contact@paios.org",
      "url": "https://localhost:8080/v1/api"
    },
    "language": "Lorem Ipsum",
    "scripts": {
      "start": "chroma run"
    },
    "license": "MIT",
    "dependencies": [
      {
        "type": "fetch_llama_cpp",
        "id": "langchain-core",
        "name": "Lorem Ipsum",
        "version": ">=2.8"
      }
    ]
  }
]