scholar_search
Search Google Scholar for academic papers using keywords, filter results by year or sort by relevance, citations, date, or title. Retrieve summaries of top results to streamline research analysis.
Instructions
搜索谷歌学术并返回论文摘要
Args:
keywords: 搜索关键词
count: 返回结果数量,默认为5
fuzzy_search: 是否使用模糊搜索,默认为False
sort_by: 排序方式,可选值:
- "relevance": 按相关性排序(默认)
- "citations": 按引用量排序
- "date": 按发表日期排序(新到旧)
- "title": 按标题字母顺序排序
year_start: 开始年份,可选
year_end: 结束年份,可选
Returns:
Dict: 包含论文列表的字典
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No | ||
fuzzy_search | No | ||
keywords | Yes | ||
sort_by | No | relevance | |
year_end | No | ||
year_start | No |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"default": 5,
"title": "Count",
"type": "integer"
},
"fuzzy_search": {
"default": false,
"title": "Fuzzy Search",
"type": "boolean"
},
"keywords": {
"title": "Keywords",
"type": "string"
},
"sort_by": {
"default": "relevance",
"title": "Sort By",
"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": [
"keywords"
],
"title": "scholar_searchArguments",
"type": "object"
}