diff --git a/frontend/src/pages/Admin/AgentBuilder/BlockList/index.jsx b/frontend/src/pages/Admin/AgentBuilder/BlockList/index.jsx
index 2bdf18c3ddc..eaaf05b89eb 100644
--- a/frontend/src/pages/Admin/AgentBuilder/BlockList/index.jsx
+++ b/frontend/src/pages/Admin/AgentBuilder/BlockList/index.jsx
@@ -115,7 +115,6 @@ const BLOCK_INFO = {
description: "Process data using LLM instructions",
defaultConfig: {
instruction: "",
- inputVariable: "",
resultVariable: "",
},
getSummary: (config) => config.instruction || "No instruction",
diff --git a/frontend/src/pages/Admin/AgentBuilder/nodes/LLMInstructionNode/index.jsx b/frontend/src/pages/Admin/AgentBuilder/nodes/LLMInstructionNode/index.jsx
index 24b7821b5de..bd52f81db5f 100644
--- a/frontend/src/pages/Admin/AgentBuilder/nodes/LLMInstructionNode/index.jsx
+++ b/frontend/src/pages/Admin/AgentBuilder/nodes/LLMInstructionNode/index.jsx
@@ -7,17 +7,6 @@ export default function LLMInstructionNode({
}) {
return (
-
-
- {renderVariableSelect(
- config.inputVariable,
- (value) => onConfigChange({ ...config, inputVariable: value }),
- "Select input variable"
- )}
-
-