From fc9adbe56081065fa3de662e664fcebe0f4c25ee Mon Sep 17 00:00:00 2001 From: HugoCasa Date: Mon, 2 Oct 2023 09:53:18 +0200 Subject: [PATCH] fix: trigger bun prompt (#2368) --- frontend/src/lib/components/copilot/flow.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/lib/components/copilot/flow.ts b/frontend/src/lib/components/copilot/flow.ts index e37dc3e28b..cae90ede00 100644 --- a/frontend/src/lib/components/copilot/flow.ts +++ b/frontend/src/lib/components/copilot/flow.ts @@ -79,7 +79,7 @@ const triggerPrompts: { python3: string } = { bun: `I'm building a workflow which is a sequence of script steps. Write the first script in {codeLang} which should check for {description} and return an array. -You can use "const {state_name}: {state_type} = getState(...)" and "setState(...)" from "npm:windmill-client@1" to maintain state across runs. +You can use "const {state_name}: {state_type} = getState(...)" and "setState(...)" from "windmill-client@1" to maintain state across runs. {additionalInformation}`, python3: `I'm building a workflow which is a sequence of script steps. Write the first script in {codeLang} which should check for {description} and return an array.