Official Python SDK for the EolasWork agentic platform
Project description
eolaswork
Official Python SDK for the EolasWork agentic platform.
Install
pip install eolaswork
Python 3.11+. Sync + async clients ship together.
Two ways to run agents
| Use case | Method | What it does |
|---|---|---|
| Chat with file attachments + history | client.tasks.send_message(task_id, ...) |
Creates a turn + run bound to an existing task; agent sees uploaded files + prior messages. |
| Fire-and-forget standalone agent | client.runs.create(...) |
Independent run; no task / file context. Good for cron-style jobs. |
The model used for each run is fixed by the chosen role or team's manifest
(default_model). There is no per-call model override today; if your tenant
has multiple models wired up, change the role's manifest to switch.
Quickstart: chat with attachments
from eolaswork import Client
client = Client(api_key="nxa_...") # or set EOLASWORK_API_KEY
# 1. Discover what's available
me = client.account.whoami()
roles = client.roles.list() # pick a role.slug for the run
models = client.models.list() # each Model has .id (UUID), .display_name, .provider
# 2. Create the task (bound to an agent + first message in one call)
task = client.tasks.create(
role="research-analyst", # role.slug from client.roles.list()
first_message="Build a board-ready summary from the Excel I'll upload.",
subject="Q2 board prep", # optional label
)
# 3. Attach files to the task (the agent sees them on next turns)
client.files.upload(task.id, "./Q2_sales.xlsx")
# 4. Send the follow-up turn that asks the agent to use the file
task = client.tasks.send_message(
task.id,
text="The Excel is uploaded - produce the board summary now.",
)
# 5. Wait for the latest run to finish (or stream events live)
final = client.runs.wait(task.last_run_id, timeout=300)
print(final.status, final.output)
# Streaming alternative:
for ev in client.runs.stream(task.last_run_id):
print(ev.kind, ev.payload)
Quickstart: standalone run (no task / files)
run = client.runs.create(
prompt="Summarise today's INGEST team Slack channel.",
role="research-analyst", # role.slug
webhook_url="https://my-app.example.com/eolaswork/hook", # optional
)
# Three ways to handle completion:
final = client.runs.wait(run.id, timeout=300) # blocks
# OR live SSE:
for ev in client.runs.stream(run.id): print(ev.kind, ev.payload)
# OR don't wait - your webhook receiver gets the HMAC-signed POST.
print(final.status, final.output)
Async
import asyncio
from eolaswork import AsyncClient
async def main():
async with AsyncClient(api_key="nxa_...") as client:
task = await client.tasks.create(title="async run")
run = await client.tasks.send_message(
task.id, prompt="hello", role="research-analyst",
)
async for ev in client.runs.astream(run.id):
print(ev)
asyncio.run(main())
Webhook receiver
from eolaswork.webhooks import verify_signature
@app.post("/eolaswork/hook")
def hook(request):
payload = verify_signature(
raw_body=request.body,
signature_header=request.headers["X-EolasWork-Signature"],
secret=os.environ["EOLASWORK_WEBHOOK_SECRET"],
)
print(payload.run_id, payload.status, payload.output)
return "", 204
Configuration
| Env var | Default | Meaning |
|---|---|---|
EOLASWORK_API_KEY |
required | Bearer key (create at /settings/api-keys) |
EOLASWORK_BASE_URL |
https://eolaswork.com |
Backend host (override for self-hosted / on-prem) |
EOLASWORK_PROXY |
unset | Explicit proxy URL (e.g. http://corp-proxy:8080) |
Explicit constructor args win over env vars:
client = Client(api_key="...", base_url="https://eolaswork.your-co.com",
timeout=120.0, max_retries=5)
Running behind a corporate or notebook-environment proxy
If your environment has HTTPS_PROXY / HTTP_PROXY set globally (common
on Kaggle, Colab, corporate notebooks, VPN'd workstations) and the proxy
blocks eolaswork.com with a 403 Forbidden, pass trust_env=False to
bypass it for SDK calls only:
client = Client(api_key="nxa_...", trust_env=False)
Or point at a specific proxy:
client = Client(api_key="nxa_...", proxy="http://corp-proxy:8080")
Resource surface
| Resource | What it does |
|---|---|
client.account |
whoami, instructions, preferences, artifacts |
client.api_keys |
list / create / revoke programmatic keys |
client.tasks |
conversations CRUD + send_message |
client.runs |
create / retrieve / list / cancel / wait / stream / approve / deny |
client.files |
upload / list / download / delete / to_pdf |
client.roles |
catalogue + file content (read-only) |
client.teams |
catalogue + file content (read-only) |
client.skills |
catalogue + file content (read-only) |
client.models |
LLM model catalogue + providers |
client.followups |
cross-conversation action items |
Async variants share the exact same surface on AsyncClient -- every method is awaitable.
License
MIT.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file eolaswork-0.1.8.tar.gz.
File metadata
- Download URL: eolaswork-0.1.8.tar.gz
- Upload date:
- Size: 26.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
847cac1feb92ce65233bea4070fed3e9be166115ce0851e99f455546cb82da52
|
|
| MD5 |
ec6b730698d059d37d442f86671cde43
|
|
| BLAKE2b-256 |
8a005bf72c23bc826b6d022c5072c9a47602129b7963e392ba8358c6163b6e3f
|
Provenance
The following attestation bundles were made for eolaswork-0.1.8.tar.gz:
Publisher:
publish-eolaswork-python.yml on eolasflow/eolaswork
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
eolaswork-0.1.8.tar.gz -
Subject digest:
847cac1feb92ce65233bea4070fed3e9be166115ce0851e99f455546cb82da52 - Sigstore transparency entry: 1656215953
- Sigstore integration time:
-
Permalink:
eolasflow/eolaswork@2706b796395044adeb8697f1ee2afc6be2c6611a -
Branch / Tag:
refs/heads/main - Owner: https://github.com/eolasflow
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-eolaswork-python.yml@2706b796395044adeb8697f1ee2afc6be2c6611a -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file eolaswork-0.1.8-py3-none-any.whl.
File metadata
- Download URL: eolaswork-0.1.8-py3-none-any.whl
- Upload date:
- Size: 34.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
011d539cbe205402b954df609667138edaf9b16d24f6c0bd03e1f20fa4cb5a5c
|
|
| MD5 |
0c1ad7cba0849abe8753d34e143fcb56
|
|
| BLAKE2b-256 |
db3032f3ffd1411fc2f955c3db8385378f394a093561e26369c4f065492edc16
|
Provenance
The following attestation bundles were made for eolaswork-0.1.8-py3-none-any.whl:
Publisher:
publish-eolaswork-python.yml on eolasflow/eolaswork
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
eolaswork-0.1.8-py3-none-any.whl -
Subject digest:
011d539cbe205402b954df609667138edaf9b16d24f6c0bd03e1f20fa4cb5a5c - Sigstore transparency entry: 1656216015
- Sigstore integration time:
-
Permalink:
eolasflow/eolaswork@2706b796395044adeb8697f1ee2afc6be2c6611a -
Branch / Tag:
refs/heads/main - Owner: https://github.com/eolasflow
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-eolaswork-python.yml@2706b796395044adeb8697f1ee2afc6be2c6611a -
Trigger Event:
workflow_dispatch
-
Statement type: