You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
langchain/langchain/tools/wolfram_alpha/tool.py

21 lines
712 B
Python

"""Tool for the Wolfram Alpha API."""
from langchain.tools.base import BaseTool
from langchain.utilities.wolfram_alpha import WolframAlphaAPIWrapper
class WolframAlphaQueryRun(BaseTool):
"""Tool that adds the capability to query using the Wolfram Alpha SDK."""
name = "query_wolfram_alpha"
description = "Query Wolfram Alpha with the given query."
api_wrapper: WolframAlphaAPIWrapper
def _run(self, query: str) -> str:
"""Use the WolframAlpha tool."""
return self.api_wrapper.run(query)
async def _arun(self, query: str) -> str:
"""Use the WolframAlpha tool asynchronously."""
raise NotImplementedError("WolframAlphaQueryRun does not support async")