initial commit
This commit is contained in:
@@ -0,0 +1 @@
|
||||
"""Tools for interacting with the user."""
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,16 @@
|
||||
"""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)
|
||||
Reference in New Issue
Block a user