Add opt-in message to CodeBlock (#2025)

This commit is contained in:
Shuchang Zheng 2025-03-27 18:34:08 -07:00 committed by GitHub
parent 98c8897069
commit c868deca22
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -10,6 +10,6 @@ export type CodeBlockNode = Node<CodeBlockNodeData, "codeBlock">;
export const codeBlockNodeDefaultData: CodeBlockNodeData = {
editable: true,
label: "",
code: `# All variables will be assigned to the output of this block.\n# Like 'x = 5', 'x' will be assigned to the output of this block.\n\n`,
code: `# All variables will be assigned to the output of this block.\n# Like 'x = 5', 'x' will be assigned to the output of this block.\n# This feature is currently in private beta. Please reach out to founders@skyvern.com to get access\n\n`,
continueOnFailure: false,
} as const;