From ed7e1bdfd95ba558998ab61aa606f36eedd66d9e Mon Sep 17 00:00:00 2001 From: nthmost-orkes Date: Thu, 23 Apr 2026 14:16:09 -0700 Subject: [PATCH] docs: clarify OrkesClients works with OSS Conductor, no account required --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ee6eb9f1..295e10d6 100644 --- a/README.md +++ b/README.md @@ -153,6 +153,8 @@ Run it: python quickstart.py ``` +> **About `OrkesClients`:** This is the standard client factory for Conductor. The `Orkes` prefix reflects the implementing organization — it works identically with self-hosted OSS Conductor. No Orkes account or paid service is required. + > ### Using Orkes Conductor / Remote Server? > Export your authentication credentials as well: > @@ -329,7 +331,7 @@ Full lifecycle control — start, execute, pause, resume, terminate, retry, rest ```python from conductor.client.configuration.configuration import Configuration from conductor.client.http.models import StartWorkflowRequest, RerunWorkflowRequest, TaskResult -from conductor.client.orkes_clients import OrkesClients +from conductor.client.orkes_clients import OrkesClients # works with OSS Conductor and Orkes Conductor config = Configuration() clients = OrkesClients(configuration=config)