mirror of
https://github.com/hwchase17/langchain
synced 2024-11-06 03:20:49 +00:00
b2fd41331e
Addded missed docstrings. Fixed inconsistency in docstrings. **Note** CC @efriis There were PR errors on `langchain_experimental/prompt_injection_identifier/hugging_face_identifier.py` But, I didn't touch this file in this PR! Can it be some cache problems? I fixed this error.
40 lines
1.2 KiB
Python
40 lines
1.2 KiB
Python
"""Tool for the Arxiv API."""
|
|
|
|
from typing import Optional, Type
|
|
|
|
from langchain_core.callbacks import CallbackManagerForToolRun
|
|
from langchain_core.pydantic_v1 import BaseModel, Field
|
|
from langchain_core.tools import BaseTool
|
|
|
|
from langchain_community.utilities.arxiv import ArxivAPIWrapper
|
|
|
|
|
|
class ArxivInput(BaseModel):
|
|
"""Input for the Arxiv tool."""
|
|
|
|
query: str = Field(description="search query to look up")
|
|
|
|
|
|
class ArxivQueryRun(BaseTool):
|
|
"""Tool that searches the Arxiv API."""
|
|
|
|
name: str = "arxiv"
|
|
description: str = (
|
|
"A wrapper around Arxiv.org "
|
|
"Useful for when you need to answer questions about Physics, Mathematics, "
|
|
"Computer Science, Quantitative Biology, Quantitative Finance, Statistics, "
|
|
"Electrical Engineering, and Economics "
|
|
"from scientific articles on arxiv.org. "
|
|
"Input should be a search query."
|
|
)
|
|
api_wrapper: ArxivAPIWrapper = Field(default_factory=ArxivAPIWrapper)
|
|
args_schema: Type[BaseModel] = ArxivInput
|
|
|
|
def _run(
|
|
self,
|
|
query: str,
|
|
run_manager: Optional[CallbackManagerForToolRun] = None,
|
|
) -> str:
|
|
"""Use the Arxiv tool."""
|
|
return self.api_wrapper.run(query)
|