API

Python SDK

HTTP-first Python integration status for the current PALM API surface.

Prompt pack
M-13c
Source material
  • maple/docs/worldline-framework.md
  • maple/docs/api/README.md

Python SDK

MapleAI does not currently ship an official published Python SDK from this repo.

Current integration path

Use the PALM daemon REST API from your automation or evaluation harness.

import requests

response = requests.get("http://127.0.0.1:8080/health", timeout=10)
response.raise_for_status()

print(response.json())

For richer workflows, target the REST resources documented in REST API.

Recommended scope today

  • automation and operator scripts
  • evaluation harnesses
  • data workflows that need OS health or audit data
  • internal generated clients against the PALM HTTP API

Status

Python integration is currently HTTP-first. An official SDK package may come later, but it is not published from this repo today.