paper_references
Generate a list of papers citing a specific publication by entering its ID. Customize results by count and sorting options such as relevance, citations, date, or title. Facilitates research tracking and citation analysis.
Instructions
获取引用指定论文的文献列表
Args:
paper_id: 论文ID
count: 返回结果数量,默认为5
sort_by: 排序方式,可选值:
- "relevance": 按相关性排序(默认)
- "citations": 按引用量排序
- "date": 按发表日期排序(新到旧)
- "title": 按标题字母顺序排序
Returns:
Dict: 引用论文列表
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No | ||
paper_id | Yes | ||
sort_by | No | relevance |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"default": 5,
"title": "Count",
"type": "integer"
},
"paper_id": {
"title": "Paper Id",
"type": "string"
},
"sort_by": {
"default": "relevance",
"title": "Sort By",
"type": "string"
}
},
"required": [
"paper_id"
],
"title": "paper_referencesArguments",
"type": "object"
}