6 lines
123 B
Python
6 lines
123 B
Python
|
|
from langchain.tools import ShellTool
|
||
|
|
def shell(query: str):
|
||
|
|
tool = ShellTool()
|
||
|
|
return tool.run(tool_input=query)
|
||
|
|
|