mirror of
https://github.com/hwchase17/langchain
synced 2024-11-06 03:20:49 +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>
37 lines
1.0 KiB
Python
37 lines
1.0 KiB
Python
"""Toolkit for interacting with Spark SQL."""
|
|
from typing import List
|
|
|
|
from langchain_core.language_models import BaseLanguageModel
|
|
from langchain_core.pydantic_v1 import Field
|
|
from langchain_core.tools import BaseToolkit
|
|
|
|
from langchain_community.tools import BaseTool
|
|
from langchain_community.tools.spark_sql.tool import (
|
|
InfoSparkSQLTool,
|
|
ListSparkSQLTool,
|
|
QueryCheckerTool,
|
|
QuerySparkSQLTool,
|
|
)
|
|
from langchain_community.utilities.spark_sql import SparkSQL
|
|
|
|
|
|
class SparkSQLToolkit(BaseToolkit):
|
|
"""Toolkit for interacting with Spark SQL."""
|
|
|
|
db: SparkSQL = Field(exclude=True)
|
|
llm: BaseLanguageModel = Field(exclude=True)
|
|
|
|
class Config:
|
|
"""Configuration for this pydantic object."""
|
|
|
|
arbitrary_types_allowed = True
|
|
|
|
def get_tools(self) -> List[BaseTool]:
|
|
"""Get the tools in the toolkit."""
|
|
return [
|
|
QuerySparkSQLTool(db=self.db),
|
|
InfoSparkSQLTool(db=self.db),
|
|
ListSparkSQLTool(db=self.db),
|
|
QueryCheckerTool(db=self.db, llm=self.llm),
|
|
]
|