9 lines
205 B
Python
9 lines
205 B
Python
"""Shell tool wrapper for consistent access."""
|
|
|
|
from langchain_community.tools import ShellTool
|
|
|
|
|
|
def get_shell_tool() -> ShellTool:
|
|
"""Get a configured shell tool instance."""
|
|
return ShellTool()
|