From 21efeedc9f1cd61258b05a955f5e41f33b94caef Mon Sep 17 00:00:00 2001 From: RamOrkes Date: Wed, 2 Oct 2024 22:44:44 -0700 Subject: [PATCH] Fix typo in getting workflow client --- src/conductor/client/ai/orchestrator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/conductor/client/ai/orchestrator.py b/src/conductor/client/ai/orchestrator.py index eff3cb34e..e1a900ea5 100644 --- a/src/conductor/client/ai/orchestrator.py +++ b/src/conductor/client/ai/orchestrator.py @@ -20,7 +20,7 @@ def __init__(self, api_configuration: Configuration, prompt_test_workflow_name: orkes_clients = OrkesClients(api_configuration) self.integration_client = orkes_clients.get_integration_client() - self.workflow_client = orkes_clients.get_integration_client() + self.workflow_client = orkes_clients.get_workflow_client() self.workflow_executor = orkes_clients.get_workflow_executor() self.prompt_client = orkes_clients.get_prompt_client()