Tools contd
- A tool in langchain is a simple python function with decent documentation (docstring)
- Refer Here for offical docs
- langchain has a tool decorator
@tool
def <tool_name>(args):
"""Docstring
"""
....
....
Langchain offers some tools with third party functionality
- Refer Here for different tools and toolkits already availble
Lets try searching internet
-
Refer Here for tavily
-
create an tavily api Refer Here
-
Refer Here for other examples
I find a stock value
- Lets use yahoo tools Refer Here
