mirror of
https://github.com/hwchase17/langchain.git
synced 2025-09-30 07:48:38 +00:00
This PR upgrades langchain-community to pydantic 2.
* Most of this PR was auto-generated using code mods with gritql
(https://github.com/eyurtsev/migrate-pydantic/tree/main)
* Subsequently, some code was fixed manually due to accommodate
differences between pydantic 1 and 2
Breaking Changes:
- Use TEXTEMBED_API_KEY and TEXTEMBEB_API_URL for env variables for text
embed integrations:
cbea780492
Other changes:
- Added pydantic_settings as a required dependency for community. This
may be removed if we have enough time to convert the dependency into an
optional one.
---------
Co-authored-by: Eugene Yurtsev <eyurtsev@gmail.com>
Co-authored-by: Bagatur <baskaryan@gmail.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)
|