mirror of
https://github.com/hwchase17/langchain
synced 2024-11-11 19:11:02 +00:00
893a924b90
Thank you for contributing to LangChain! - [ ] **PR title**: "core: move BaseChatLoader and BaseToolkit from community" - [ ] **PR message**: move BaseChatLoader and BaseToolkit --------- Co-authored-by: Bagatur <baskaryan@gmail.com>
26 lines
577 B
Python
26 lines
577 B
Python
from __future__ import annotations
|
|
|
|
from typing import List
|
|
|
|
from langchain_core.tools import BaseToolkit
|
|
|
|
from langchain_community.tools import BaseTool
|
|
from langchain_community.tools.json.tool import (
|
|
JsonGetValueTool,
|
|
JsonListKeysTool,
|
|
JsonSpec,
|
|
)
|
|
|
|
|
|
class JsonToolkit(BaseToolkit):
|
|
"""Toolkit for interacting with a JSON spec."""
|
|
|
|
spec: JsonSpec
|
|
|
|
def get_tools(self) -> List[BaseTool]:
|
|
"""Get the tools in the toolkit."""
|
|
return [
|
|
JsonListKeysTool(spec=self.spec),
|
|
JsonGetValueTool(spec=self.spec),
|
|
]
|