mirror of
https://github.com/hwchase17/langchain.git
synced 2025-05-08 16:48:49 +00:00
Signed-off-by: ChengZi <chen.zhang@zilliz.com> Co-authored-by: Eugene Yurtsev <eyurtsev@gmail.com> Co-authored-by: Bagatur <22008038+baskaryan@users.noreply.github.com> Co-authored-by: Dan O'Donovan <dan.odonovan@gmail.com> Co-authored-by: Tom Daniel Grande <tomdgrande@gmail.com> Co-authored-by: Grande <Tom.Daniel.Grande@statsbygg.no> Co-authored-by: Bagatur <baskaryan@gmail.com> Co-authored-by: ccurme <chester.curme@gmail.com> Co-authored-by: Harrison Chase <hw.chase.17@gmail.com> Co-authored-by: Tomaz Bratanic <bratanic.tomaz@gmail.com> Co-authored-by: ZhangShenao <15201440436@163.com> Co-authored-by: Friso H. Kingma <fhkingma@gmail.com> Co-authored-by: ChengZi <chen.zhang@zilliz.com> Co-authored-by: Nuno Campos <nuno@langchain.dev> Co-authored-by: Morgante Pell <morgantep@google.com>
37 lines
1.2 KiB
Python
37 lines
1.2 KiB
Python
import json
|
|
from typing import Optional
|
|
|
|
from langchain_core.callbacks import CallbackManagerForToolRun
|
|
from langchain_core.tools import BaseTool
|
|
from pydantic import ConfigDict
|
|
|
|
from langchain_community.utilities.graphql import GraphQLAPIWrapper
|
|
|
|
|
|
class BaseGraphQLTool(BaseTool):
|
|
"""Base tool for querying a GraphQL API."""
|
|
|
|
graphql_wrapper: GraphQLAPIWrapper
|
|
|
|
name: str = "query_graphql"
|
|
description: str = """\
|
|
Input to this tool is a detailed and correct GraphQL query, output is a result from the API.
|
|
If the query is not correct, an error message will be returned.
|
|
If an error is returned with 'Bad request' in it, rewrite the query and try again.
|
|
If an error is returned with 'Unauthorized' in it, do not try again, but tell the user to change their authentication.
|
|
|
|
Example Input: query {{ allUsers {{ id, name, email }} }}\
|
|
""" # noqa: E501
|
|
|
|
model_config = ConfigDict(
|
|
arbitrary_types_allowed=True,
|
|
)
|
|
|
|
def _run(
|
|
self,
|
|
tool_input: str,
|
|
run_manager: Optional[CallbackManagerForToolRun] = None,
|
|
) -> str:
|
|
result = self.graphql_wrapper.run(tool_input)
|
|
return json.dumps(result, indent=2)
|