summarize_papers
Search and summarize academic papers on any topic using customizable filters like count, sorting, and date range. Ideal for researchers seeking concise, relevant insights from scholarly articles.
Instructions
搜索并总结特定主题的论文
Args:
topic: 研究主题
count: 返回结果数量,默认为5
sort_by: 排序方式,可选值:
- "relevance": 按相关性排序(默认)
- "citations": 按引用量排序
- "date": 按发表日期排序(新到旧)
- "title": 按标题字母顺序排序
year_start: 开始年份,可选
year_end: 结束年份,可选
Returns:
str: 论文总结的Markdown格式文本
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No | ||
sort_by | No | relevance | |
topic | Yes | ||
year_end | No | ||
year_start | No |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"default": 5,
"title": "Count",
"type": "integer"
},
"sort_by": {
"default": "relevance",
"title": "Sort By",
"type": "string"
},
"topic": {
"title": "Topic",
"type": "string"
},
"year_end": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Year End"
},
"year_start": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Year Start"
}
},
"required": [
"topic"
],
"title": "summarize_papersArguments",
"type": "object"
}