Same contract, two deployments
Open source SDK, capability spec, and provider interfaces. Cloud hosts authentication, execution, and billing at https://api.skilleo.org.
pip install skilleo — call a stable /v1 contract on Skilleo Cloud at api.skilleo.org. GPU bills stay with your provider.
pip install skilleofrom skilleo import Client
client, signup = Client.signup("dev@example.com")
client.providers.connect("runpod") # you set RUNPOD_API_KEY in your secret store
run = client.capabilities.run("research.gather", version="1", input={"topic": "Kenya"})
print(client.runs.wait(run["id"])["data"]["output"])Default base URL is https://api.skilleo.org. Override only if you run a compatible /v1 server yourself.
Open source (pip install skilleo) | Skilleo Cloud |
|---|---|
| Python SDK | Hosted control plane |
| Capability specification | Authentication |
| Provider interfaces (RunPod GPU; MiniMax/ElevenLabs voice) | Subscriptions and billing |
| Agent SDK and examples | Managed execution |
| CLI and local runtime | Production orchestration |
Same /v1 either way. Quickstart · Open source and Cloud