The official SDKs for the Ellipsis agents
platform — every /v1 operation in both languages, generated from the same
committed OpenAPI spec.
| Language | Install | Source |
|---|---|---|
| Python | pip install ellipsis-dev (import ellipsis) | python/ |
| TypeScript | npm install @ellipsis-dev/sdk | typescript/ |
The contract documents both SDKs generate from are in
schema/: the OpenAPI spec (openapi.v1.json), the WebSocket
stream frames (frames.schema.json), and the session lifecycle payloads
(lifecycle.schema.json).
fromellipsisimportEllipsisclient=Ellipsis(api_key="...")
handle=client.sessions.run(prompt="Fix the flaky test in ci/")
print(handle.wait().status)import{Ellipsis}from'@ellipsis-dev/sdk';constclient=newEllipsis({apiKey: '...'});consthandle=awaitclient.sessions.run({prompt: 'Fix the flaky test'});awaithandle.wait();Docs: https://www.ellipsis.dev/docs/api
This is a read-only mirror: release snapshots are force-pushed from the Ellipsis platform monorepo, which is the source of truth. Issues are disabled and pull requests are not accepted — to report a problem, email support@ellipsis.dev.