diff --git a/en/guides/workflow/node/variable-assigner.mdx b/en/guides/workflow/node/variable-assigner.mdx index a7662901..32e605a6 100644 --- a/en/guides/workflow/node/variable-assigner.mdx +++ b/en/guides/workflow/node/variable-assigner.mdx @@ -190,6 +190,8 @@ The data type of the target variable determines its operation method. Below are • **Append**: Add a new element to the array in the target variable. • **Extend**: Add a new array to the target variable, effectively adding multiple elements at once. + + • **Remove**: Remove an element from the array, with options to remove from the first position (First) or the last position (Last), with the default being “First”. {/* Contributing Section diff --git a/ja-jp/guides/workflow/node/variable-assigner.mdx b/ja-jp/guides/workflow/node/variable-assigner.mdx index 8f3fc078..dfd78c61 100644 --- a/ja-jp/guides/workflow/node/variable-assigner.mdx +++ b/ja-jp/guides/workflow/node/variable-assigner.mdx @@ -164,9 +164,10 @@ def main(arg1: list) -> str: **書き込みモード:** -* Overwrite (上書き): ソース変数の内容を対象の会話変数に上書きします +* Overwrite (上書き):ソース変数の内容を対象の会話変数に上書きします * Append (追加):指定された変数が配列型の場合に使用します -* Clear (クリア): 対象の会話変数内の内容をクリアします +* Clear (クリア):対象の会話変数内の内容をクリアします +* Remove(削除):配列から要素を削除します。先頭から削除(First)または末尾から削除(Last)を選択できます。デフォルトは「先頭から削除」です {/* Contributing Section diff --git a/zh-hans/guides/workflow/node/variable-assigner.mdx b/zh-hans/guides/workflow/node/variable-assigner.mdx index bf79bff0..d2ce21c8 100644 --- a/zh-hans/guides/workflow/node/variable-assigner.mdx +++ b/zh-hans/guides/workflow/node/variable-assigner.mdx @@ -190,6 +190,7 @@ def main(arg1: list) -> str: * **清空**,清空所选中变量中的内容 * **追加**,在目标的数组变量中添加一个新的元素 * **扩展**,在目标的数组变量中添加新的数组,即一次性添加多个元素 + * **移除**,从数组中移除元素,可选择从头部移除(First)或尾部移除(Last),默认为“头部移除” {/* Contributing Section