File size: 306 Bytes
5e9cd1d
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
# LangChain 的 ArxivQueryRun 工具
from pydantic import BaseModel, Field
from langchain.tools.arxiv.tool import ArxivQueryRun
def arxiv(query: str):
    tool = ArxivQueryRun()
    return tool.run(tool_input=query)

class ArxivInput(BaseModel):
    query: str = Field(description="The search query title")