2024-03-25 15:31:49 +08:00

12 lines
314 B
Python

# LangChain 的 Shell 工具
from chatchat_server.pydantic_types import BaseModel, Field
from langchain_community.tools import ShellTool
def shell(query: str):
tool = ShellTool()
return tool.run(tool_input=query)
class ShellInput(BaseModel):
query: str = Field(description="The command to execute")