From 095b3ee234ddbfdfb507267bb21b0cc4bb83255b Mon Sep 17 00:00:00 2001 From: 99 Date: Thu, 5 Feb 2026 21:44:31 +0800 Subject: [PATCH] chore: Remove redundant double space in variable type description (core/variables/variables.py) (#32002) --- api/core/variables/variables.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/core/variables/variables.py b/api/core/variables/variables.py index a19c53918d..338d81df78 100644 --- a/api/core/variables/variables.py +++ b/api/core/variables/variables.py @@ -112,7 +112,7 @@ class ArrayBooleanVariable(ArrayBooleanSegment, ArrayVariable): class RAGPipelineVariable(BaseModel): belong_to_node_id: str = Field(description="belong to which node id, shared means public") - type: str = Field(description="variable type, text-input, paragraph, select, number, file, file-list") + type: str = Field(description="variable type, text-input, paragraph, select, number, file, file-list") label: str = Field(description="label") description: str | None = Field(description="description", default="") variable: str = Field(description="variable key", default="")