Skip to content

Open source and Cloud

Same /v1 contract. Two deployments.

OPEN SOURCE                         SKILLEO CLOUD
────────────────────────────────────────────────────
Python SDK                          Hosted API
Agent SDK                           Authentication
Capability specification            Subscriptions
Provider interfaces                 Managed execution
Examples                            Marketplace (roadmap)

Cloud

https://api.skilleo.org — managed control plane. Install the SDK and call /v1.

python
from skilleo import Client

client = Client(api_key="sk_live_...")

Open source

pip install skilleo is the public client. Override the base URL when you run a compatible /v1 server yourself:

python
Client(api_key="sk_live_...", base_url="http://127.0.0.1:8080")

Providers

Applications connect providers per routing policy. Keys stay in your secret store — Skilleo stores pointers only (Secrets).

python
client.providers.connect("openai")
client.providers.connect("runpod")
PolicyConnections
LLM (llm.generate)OpenAI, Anthropic, Gemini, MiniMax, AWS, RunPod
Voice (speech.generate, voice.clone)MiniMax or ElevenLabs
GPU (image.generate, infra)RunPod

Provider API bills go to the vendor. Skilleo subscription is separate.

Skilleo — /v1 at api.skilleo.org