Dblp 工具

Configuration File: dblp_tools.json Tool Type: Local Tools Count: 3

此页面包含 dblp_tools.json 配置文件中定义的所有工具。

可用工具

DBLP_search_authors (Type: BaseRESTTool)

Search and disambiguate authors in the DBLP Computer Science Bibliography by name. Resolves an au…

DBLP_search_authors tool specification

工具信息:

  • Name: DBLP_search_authors

  • Type: BaseRESTTool

  • Description: Search and disambiguate authors in the DBLP Computer Science Bibliography by name. Resolves an author name to canonical DBLP author records, each with a stable PID URL (e.g., https://dblp.org/pid/l/JureLeskovec) plus, when available, affiliation notes, name aliases, and awards (e.g., ‘Turing Award’). The PID is the gateway to that author’s deduplicated publication list. Use this to identify the correct author before fetching their bibliography; DBLP_search_publications only searches papers, not authors.

参数:

  • query (string) (required) Author name to search for (e.g., ‘jure leskovec’, ‘yann lecun’, ‘Geoffrey Hinton’). Spaces are treated as prefix-matched terms by DBLP.

  • limit (integer) (optional) Maximum number of author hits to return (default 10, max 1000).

示例用法:

query = {
    "name": "DBLP_search_authors",
    "arguments": {
        "query": "example_value"
    }
}
result = tu.run(query)

**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_venues

  • Type: BaseRESTTool

  • Description: 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)