mirror of
https://github.com/hwchase17/langchain
synced 2024-11-10 01:10:59 +00:00
37 lines
1.1 KiB
Python
37 lines
1.1 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_community.agent_toolkits.base 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),
|
||
|
]
|