evaluate_articles_quality
Assess journal quality of articles in bulk by querying local cache or EasyScholar API. Designed for filtering and evaluating academic research quality in literature search results.
Instructions
批量评估文献的期刊质量
功能说明:
为文献列表中的每篇文献评估其期刊质量
先从本地缓存查询,没有则调用EasyScholar API
返回包含期刊质量信息的完整文献列表
参数说明:
articles: 必需,文献列表(来自搜索结果)
secret_key: 可选,EasyScholar API密钥(可从环境变量EASYSCHOLAR_SECRET_KEY获取)
返回值说明:
evaluated_articles: 包含期刊质量信息的文献列表
total_count: 评估的文献总数
message: 处理信息
error: 错误信息(如果有)
使用场景:
批量评估搜索结果的期刊质量
文献质量筛选
学术研究质量评估
Input Schema
Name | Required | Description | Default |
---|---|---|---|
articles | Yes | ||
secret_key | No |
Input Schema (JSON Schema)
{
"properties": {
"articles": {
"items": {
"additionalProperties": true,
"type": "object"
},
"title": "Articles",
"type": "array"
},
"secret_key": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Secret Key"
}
},
"required": [
"articles"
],
"type": "object"
}