This guide has been moved to the blog https://blog.serghei.pl/posts/agent-skills-101/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import functools | |
| import inspect | |
| from typing import Callable, Literal, Optional | |
| from langchain_core.tools import BaseTool, StructuredTool | |
| from langchain_core.tools.base import ArgsSchema | |
| def class_bound_tool( | |
| *args, |
OlderNewer