Spaces:
Runtime error
Runtime error
File size: 464 Bytes
ed4d993 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
"""Tools for interacting with the user."""
import warnings
from typing import Any
from langchain_community.tools.human.tool import HumanInputRun
def StdInInquireTool(*args: Any, **kwargs: Any) -> HumanInputRun:
"""Tool for asking the user for input."""
warnings.warn(
"StdInInquireTool will be deprecated in the future. "
"Please use HumanInputRun instead.",
DeprecationWarning,
)
return HumanInputRun(*args, **kwargs)
|