Dblp 工具¶
Configuration File: dblp_tools.json
Tool Type: Local
Tools Count: 3
此页面包含 dblp_tools.json 配置文件中定义的所有工具。
可用工具¶
**DBLP_search_publications**(类型:DBLP工具)¶
在 DBLP 计算机科学文献数据库中搜索出版物。返回包含标题、作者的出版物信息…
DBLP_search_publications 工具规格说明
工具信息:
名称:
DBLP_search_publications类型:
DBLPTool描述:搜索 DBLP 计算机科学文献数据库中的出版物。返回包含标题、作者、年份、发表地点、URL 及电子版链接的出版物信息。
参数:
``query``(字符串)(必填)用于搜索DBLP出版物的查询。使用空格分隔的关键词以细化搜索。
limit(integer) (required) Number of publications to return. This sets the maximum number of publications retrieved from DBLP.
示例用法:
query = {
"name": "DBLP_search_publications",
"arguments": {
"query": "example_value",
"limit": 10
}
}
result = tu.run(query)
DBLP_search_venues (Type: BaseRESTTool)¶
Search DBLP for a publication VENUE (conference or journal) by acronym or full name, resolving it…
DBLP_search_venues tool specification
工具信息:
Name:
DBLP_search_venuesType:
BaseRESTToolDescription: Search DBLP for a publication VENUE (conference or journal) by acronym or full name, resolving it to its canonical DBLP venue record. For example ‘ICML’ resolves to ‘International Conference on Machine Learning (ICML)’ and ‘neurips’ resolves to ‘Conference on Neural Information Processing Systems (NeurIPS)’. Each hit includes the venue name, acronym, type (Conference/Journal), and a DBLP venue URL for browsing its proceedings. DBLP_search_publications only searches papers, not venues.
参数:
query(string) (required) Venue acronym or name to search for (e.g., ‘ICML’, ‘neurips’, ‘VLDB’, ‘Nature Machine Intelligence’).limit(integer) (optional) Maximum number of venue hits to return (default 10, max 1000).
示例用法:
query = {
"name": "DBLP_search_venues",
"arguments": {
"query": "example_value"
}
}
result = tu.run(query)