summaryrefslogtreecommitdiff
path: root/continuedev/src/continuedev/steps/react.py
diff options
context:
space:
mode:
Diffstat (limited to 'continuedev/src/continuedev/steps/react.py')
-rw-r--r--continuedev/src/continuedev/steps/react.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/continuedev/src/continuedev/steps/react.py b/continuedev/src/continuedev/steps/react.py
index d825d424..4d310fc8 100644
--- a/continuedev/src/continuedev/steps/react.py
+++ b/continuedev/src/continuedev/steps/react.py
@@ -27,7 +27,7 @@ class NLDecisionStep(Step):
Select the step which should be taken next to satisfy the user input. Say only the name of the selected step. You must choose one:""")
- resp = sdk.models.gpt35.complete(prompt).lower()
+ resp = (await sdk.models.gpt35.complete(prompt)).lower()
step_to_run = None
for step in self.steps: