add engine to more blocks (#2457)

This commit is contained in:
Shuchang Zheng
2025-05-26 08:19:42 -07:00
committed by GitHub
parent 9d32249d4c
commit 2438bcacbf
19 changed files with 185 additions and 29 deletions

View File

@@ -391,3 +391,12 @@ export type CreditCardCredential = {
card_brand: string;
card_holder_name: string;
};
export const RunEngine = {
SkyvernV1: "skyvern-1.0",
SkyvernV2: "skyvern-2.0",
OpenaiCua: "openai-cua",
AnthropicCua: "anthropic-cua",
} as const;
export type RunEngine = (typeof RunEngine)[keyof typeof RunEngine];