Skip to content

Commit 347ce61

Browse files
committed
docs: clarify OrkesClients works with OSS Conductor, no account required
1 parent 0d2a62d commit 347ce61

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,8 @@ Run it:
153153
python quickstart.py
154154
```
155155

156+
> **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.
157+
156158
> ### Using Orkes Conductor / Remote Server?
157159
> Export your authentication credentials as well:
158160
>
@@ -329,10 +331,10 @@ Full lifecycle control — start, execute, pause, resume, terminate, retry, rest
329331
```python
330332
from conductor.client.configuration.configuration import Configuration
331333
from conductor.client.http.models import StartWorkflowRequest, RerunWorkflowRequest, TaskResult
332-
from conductor.client.orkes_clients import ConductorClients
334+
from conductor.client.orkes_clients import OrkesClients # works with OSS Conductor and Orkes Conductor
333335
334336
config = Configuration()
335-
clients = ConductorClients(configuration=config)
337+
clients = OrkesClients(configuration=config)
336338
workflow_client = clients.get_workflow_client()
337339
task_client = clients.get_task_client()
338340
executor = clients.get_workflow_executor()

0 commit comments

Comments
 (0)