diff --git a/src/backend/base/langflow/components/processing/python_repl_core.py b/src/backend/base/langflow/components/processing/python_repl_core.py index bfc7703d0..053009d08 100644 --- a/src/backend/base/langflow/components/processing/python_repl_core.py +++ b/src/backend/base/langflow/components/processing/python_repl_core.py @@ -8,12 +8,9 @@ from langflow.schema import Data class PythonREPLComponent(Component): - display_name = "Python REPL" - description = ( - "A Python code executor that lets you run Python code with specific imported modules. " - "Remember to always use print() to see your results. Example: print(df.head())" - ) - icon = "Python" + display_name = "Python Interpreter" + description = "Run Python code with optional imports. Use print() to see the output." + icon = "square-terminal" inputs = [ StrInput(