profile_papers
Extract and organize scholarly papers from a Google Scholar profile. Specify URL, result count, and sorting criteria to retrieve relevant, cited, or recent publications efficiently.
Instructions
获取学者的论文
Args:
profile_url: 谷歌学术个人主页URL
count: 返回结果数量,默认为5
sort_by: 排序方式,可选值:
- "relevance": 按相关性排序(默认)
- "citations": 按引用量排序
- "date": 按发表日期排序(新到旧)
- "title": 按标题字母顺序排序
Returns:
Dict: 论文列表
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No | ||
profile_url | Yes | ||
sort_by | No | relevance |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"default": 5,
"title": "Count",
"type": "integer"
},
"profile_url": {
"title": "Profile Url",
"type": "string"
},
"sort_by": {
"default": "relevance",
"title": "Sort By",
"type": "string"
}
},
"required": [
"profile_url"
],
"title": "profile_papersArguments",
"type": "object"
}