tooluniverse 1.0.5__py3-none-any.whl → 1.0.6__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of tooluniverse might be problematic. Click here for more details.
- tooluniverse/__init__.py +39 -0
- tooluniverse/agentic_tool.py +82 -12
- tooluniverse/arxiv_tool.py +113 -0
- tooluniverse/biorxiv_tool.py +97 -0
- tooluniverse/core_tool.py +153 -0
- tooluniverse/crossref_tool.py +73 -0
- tooluniverse/data/arxiv_tools.json +87 -0
- tooluniverse/data/biorxiv_tools.json +70 -0
- tooluniverse/data/core_tools.json +105 -0
- tooluniverse/data/crossref_tools.json +70 -0
- tooluniverse/data/dblp_tools.json +73 -0
- tooluniverse/data/doaj_tools.json +94 -0
- tooluniverse/data/fatcat_tools.json +72 -0
- tooluniverse/data/hal_tools.json +70 -0
- tooluniverse/data/medrxiv_tools.json +70 -0
- tooluniverse/data/openaire_tools.json +85 -0
- tooluniverse/data/osf_preprints_tools.json +77 -0
- tooluniverse/data/pmc_tools.json +109 -0
- tooluniverse/data/pubmed_tools.json +65 -0
- tooluniverse/data/unpaywall_tools.json +86 -0
- tooluniverse/data/wikidata_sparql_tools.json +42 -0
- tooluniverse/data/zenodo_tools.json +82 -0
- tooluniverse/dblp_tool.py +62 -0
- tooluniverse/default_config.py +17 -0
- tooluniverse/doaj_tool.py +124 -0
- tooluniverse/execute_function.py +70 -9
- tooluniverse/fatcat_tool.py +66 -0
- tooluniverse/hal_tool.py +77 -0
- tooluniverse/llm_clients.py +286 -0
- tooluniverse/medrxiv_tool.py +97 -0
- tooluniverse/openaire_tool.py +145 -0
- tooluniverse/osf_preprints_tool.py +67 -0
- tooluniverse/pmc_tool.py +181 -0
- tooluniverse/pubmed_tool.py +110 -0
- tooluniverse/smcp.py +109 -79
- tooluniverse/test/test_claude_sdk.py +11 -4
- tooluniverse/unpaywall_tool.py +63 -0
- tooluniverse/wikidata_sparql_tool.py +61 -0
- tooluniverse/zenodo_tool.py +74 -0
- {tooluniverse-1.0.5.dist-info → tooluniverse-1.0.6.dist-info}/METADATA +2 -1
- {tooluniverse-1.0.5.dist-info → tooluniverse-1.0.6.dist-info}/RECORD +45 -13
- {tooluniverse-1.0.5.dist-info → tooluniverse-1.0.6.dist-info}/entry_points.txt +1 -0
- {tooluniverse-1.0.5.dist-info → tooluniverse-1.0.6.dist-info}/WHEEL +0 -0
- {tooluniverse-1.0.5.dist-info → tooluniverse-1.0.6.dist-info}/licenses/LICENSE +0 -0
- {tooluniverse-1.0.5.dist-info → tooluniverse-1.0.6.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"type": "ArXivTool",
|
|
4
|
+
"name": "ArXiv_search_papers",
|
|
5
|
+
"description": "Search arXiv for papers by keyword using the public arXiv API. Returns papers with title, abstract, authors, publication date, category, and URL.",
|
|
6
|
+
"parameter": {
|
|
7
|
+
"type": "object",
|
|
8
|
+
"properties": {
|
|
9
|
+
"query": {
|
|
10
|
+
"type": "string",
|
|
11
|
+
"description": "Search query for arXiv papers. Use keywords separated by spaces to refine your search."
|
|
12
|
+
},
|
|
13
|
+
"limit": {
|
|
14
|
+
"type": "integer",
|
|
15
|
+
"description": "Number of papers to return. This sets the maximum number of papers retrieved from arXiv.",
|
|
16
|
+
"default": 10
|
|
17
|
+
},
|
|
18
|
+
"sort_by": {
|
|
19
|
+
"type": "string",
|
|
20
|
+
"description": "Sort order for results. Options: 'relevance', 'lastUpdatedDate', 'submittedDate'",
|
|
21
|
+
"default": "relevance"
|
|
22
|
+
},
|
|
23
|
+
"sort_order": {
|
|
24
|
+
"type": "string",
|
|
25
|
+
"description": "Sort direction. Options: 'ascending', 'descending'",
|
|
26
|
+
"default": "descending"
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"required": ["query"]
|
|
30
|
+
},
|
|
31
|
+
"return_schema": {
|
|
32
|
+
"type": "array",
|
|
33
|
+
"description": "List of arXiv papers matching the search query",
|
|
34
|
+
"items": {
|
|
35
|
+
"type": "object",
|
|
36
|
+
"properties": {
|
|
37
|
+
"title": {
|
|
38
|
+
"type": "string",
|
|
39
|
+
"description": "Title of the paper"
|
|
40
|
+
},
|
|
41
|
+
"abstract": {
|
|
42
|
+
"type": "string",
|
|
43
|
+
"description": "Abstract of the paper"
|
|
44
|
+
},
|
|
45
|
+
"authors": {
|
|
46
|
+
"type": "array",
|
|
47
|
+
"items": {"type": "string"},
|
|
48
|
+
"description": "List of author names"
|
|
49
|
+
},
|
|
50
|
+
"published": {
|
|
51
|
+
"type": "string",
|
|
52
|
+
"description": "Publication date in ISO format"
|
|
53
|
+
},
|
|
54
|
+
"updated": {
|
|
55
|
+
"type": "string",
|
|
56
|
+
"description": "Last updated date in ISO format"
|
|
57
|
+
},
|
|
58
|
+
"category": {
|
|
59
|
+
"type": "string",
|
|
60
|
+
"description": "arXiv category (e.g., cs.LG, math.CO)"
|
|
61
|
+
},
|
|
62
|
+
"url": {
|
|
63
|
+
"type": "string",
|
|
64
|
+
"description": "URL to the paper on arXiv"
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
},
|
|
69
|
+
"test_examples": [
|
|
70
|
+
{
|
|
71
|
+
"query": "machine learning",
|
|
72
|
+
"limit": 2,
|
|
73
|
+
"sort_by": "relevance"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"query": "quantum physics",
|
|
77
|
+
"limit": 1,
|
|
78
|
+
"sort_by": "submittedDate",
|
|
79
|
+
"sort_order": "descending"
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"query": "computer vision",
|
|
83
|
+
"limit": 3
|
|
84
|
+
}
|
|
85
|
+
]
|
|
86
|
+
}
|
|
87
|
+
]
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"type": "BioRxivTool",
|
|
4
|
+
"name": "BioRxiv_search_preprints",
|
|
5
|
+
"description": "Search bioRxiv preprints using the public bioRxiv API. Returns preprints with title, authors, year, DOI, and URL.",
|
|
6
|
+
"parameter": {
|
|
7
|
+
"type": "object",
|
|
8
|
+
"properties": {
|
|
9
|
+
"query": {
|
|
10
|
+
"type": "string",
|
|
11
|
+
"description": "Search query for bioRxiv preprints. Use keywords separated by spaces to refine your search."
|
|
12
|
+
},
|
|
13
|
+
"max_results": {
|
|
14
|
+
"type": "integer",
|
|
15
|
+
"description": "Maximum number of preprints to return. Default is 10, maximum is 200.",
|
|
16
|
+
"default": 10
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"required": ["query"]
|
|
20
|
+
},
|
|
21
|
+
"return_schema": {
|
|
22
|
+
"type": "array",
|
|
23
|
+
"description": "List of bioRxiv preprints matching the search query",
|
|
24
|
+
"items": {
|
|
25
|
+
"type": "object",
|
|
26
|
+
"properties": {
|
|
27
|
+
"title": {
|
|
28
|
+
"type": "string",
|
|
29
|
+
"description": "Title of the preprint"
|
|
30
|
+
},
|
|
31
|
+
"authors": {
|
|
32
|
+
"type": "array",
|
|
33
|
+
"items": {"type": "string"},
|
|
34
|
+
"description": "List of author names"
|
|
35
|
+
},
|
|
36
|
+
"year": {
|
|
37
|
+
"type": "integer",
|
|
38
|
+
"description": "Publication year"
|
|
39
|
+
},
|
|
40
|
+
"doi": {
|
|
41
|
+
"type": "string",
|
|
42
|
+
"description": "Digital Object Identifier"
|
|
43
|
+
},
|
|
44
|
+
"url": {
|
|
45
|
+
"type": "string",
|
|
46
|
+
"description": "URL to the preprint on bioRxiv"
|
|
47
|
+
},
|
|
48
|
+
"abstract": {
|
|
49
|
+
"type": "string",
|
|
50
|
+
"description": "Abstract of the preprint"
|
|
51
|
+
},
|
|
52
|
+
"source": {
|
|
53
|
+
"type": "string",
|
|
54
|
+
"description": "Source identifier (always 'bioRxiv')"
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
"test_examples": [
|
|
60
|
+
{
|
|
61
|
+
"query": "genetics",
|
|
62
|
+
"max_results": 2
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"query": "CRISPR",
|
|
66
|
+
"max_results": 1
|
|
67
|
+
}
|
|
68
|
+
]
|
|
69
|
+
}
|
|
70
|
+
]
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"type": "CoreTool",
|
|
4
|
+
"name": "CORE_search_papers",
|
|
5
|
+
"description": "Search for open access academic papers using CORE API. CORE is the world's largest collection of open access research papers, providing access to over 200 million papers from repositories and journals worldwide.",
|
|
6
|
+
"parameter": {
|
|
7
|
+
"type": "object",
|
|
8
|
+
"properties": {
|
|
9
|
+
"query": {
|
|
10
|
+
"type": "string",
|
|
11
|
+
"description": "Search query for CORE papers. Use keywords separated by spaces to refine your search."
|
|
12
|
+
},
|
|
13
|
+
"limit": {
|
|
14
|
+
"type": "integer",
|
|
15
|
+
"description": "Maximum number of papers to return. This sets the maximum number of papers retrieved from CORE.",
|
|
16
|
+
"default": 10,
|
|
17
|
+
"minimum": 1,
|
|
18
|
+
"maximum": 100
|
|
19
|
+
},
|
|
20
|
+
"year_from": {
|
|
21
|
+
"type": "integer",
|
|
22
|
+
"description": "Start year for publication date filter (e.g., 2020). Optional parameter to limit search to papers published from this year onwards."
|
|
23
|
+
},
|
|
24
|
+
"year_to": {
|
|
25
|
+
"type": "integer",
|
|
26
|
+
"description": "End year for publication date filter (e.g., 2024). Optional parameter to limit search to papers published up to this year."
|
|
27
|
+
},
|
|
28
|
+
"language": {
|
|
29
|
+
"type": "string",
|
|
30
|
+
"description": "Language filter for papers (e.g., 'en', 'es', 'fr'). Optional parameter to limit search to papers in specific language."
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"required": ["query"]
|
|
34
|
+
},
|
|
35
|
+
"return_schema": {
|
|
36
|
+
"type": "array",
|
|
37
|
+
"description": "List of open access papers from CORE matching the search query",
|
|
38
|
+
"items": {
|
|
39
|
+
"type": "object",
|
|
40
|
+
"properties": {
|
|
41
|
+
"title": {
|
|
42
|
+
"type": "string",
|
|
43
|
+
"description": "Title of the paper"
|
|
44
|
+
},
|
|
45
|
+
"abstract": {
|
|
46
|
+
"type": "string",
|
|
47
|
+
"description": "Abstract of the paper"
|
|
48
|
+
},
|
|
49
|
+
"authors": {
|
|
50
|
+
"type": "array",
|
|
51
|
+
"items": {"type": "string"},
|
|
52
|
+
"description": "List of author names"
|
|
53
|
+
},
|
|
54
|
+
"year": {
|
|
55
|
+
"type": "string",
|
|
56
|
+
"description": "Publication year"
|
|
57
|
+
},
|
|
58
|
+
"doi": {
|
|
59
|
+
"type": "string",
|
|
60
|
+
"description": "Digital Object Identifier (DOI) of the paper"
|
|
61
|
+
},
|
|
62
|
+
"url": {
|
|
63
|
+
"type": "string",
|
|
64
|
+
"description": "URL to access the paper"
|
|
65
|
+
},
|
|
66
|
+
"venue": {
|
|
67
|
+
"type": "string",
|
|
68
|
+
"description": "Publisher or venue name"
|
|
69
|
+
},
|
|
70
|
+
"language": {
|
|
71
|
+
"type": "string",
|
|
72
|
+
"description": "Language of the paper"
|
|
73
|
+
},
|
|
74
|
+
"open_access": {
|
|
75
|
+
"type": "boolean",
|
|
76
|
+
"description": "Open access status (always true for CORE)"
|
|
77
|
+
},
|
|
78
|
+
"source": {
|
|
79
|
+
"type": "string",
|
|
80
|
+
"description": "Source identifier (always 'CORE')"
|
|
81
|
+
},
|
|
82
|
+
"citations": {
|
|
83
|
+
"type": "integer",
|
|
84
|
+
"description": "Number of citations"
|
|
85
|
+
},
|
|
86
|
+
"downloads": {
|
|
87
|
+
"type": "integer",
|
|
88
|
+
"description": "Number of downloads"
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
"test_examples": [
|
|
94
|
+
{
|
|
95
|
+
"query": "machine learning",
|
|
96
|
+
"limit": 2
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"query": "artificial intelligence",
|
|
100
|
+
"limit": 1,
|
|
101
|
+
"year_from": 2020
|
|
102
|
+
}
|
|
103
|
+
]
|
|
104
|
+
}
|
|
105
|
+
]
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"type": "CrossrefTool",
|
|
4
|
+
"name": "Crossref_search_works",
|
|
5
|
+
"description": "Search Crossref Works API for articles by keyword. Returns articles with title, abstract, journal, year, DOI, and URL. Supports filtering by publication type and date range.",
|
|
6
|
+
"parameter": {
|
|
7
|
+
"type": "object",
|
|
8
|
+
"properties": {
|
|
9
|
+
"query": {
|
|
10
|
+
"type": "string",
|
|
11
|
+
"description": "Search query for Crossref works. Use keywords separated by spaces to refine your search."
|
|
12
|
+
},
|
|
13
|
+
"limit": {
|
|
14
|
+
"type": "integer",
|
|
15
|
+
"description": "Number of articles to return. This sets the maximum number of articles retrieved from Crossref.",
|
|
16
|
+
"default": 10
|
|
17
|
+
},
|
|
18
|
+
"filter": {
|
|
19
|
+
"type": "string",
|
|
20
|
+
"description": "Optional filter string for Crossref API. Examples: 'type:journal-article,from-pub-date:2020-01-01'"
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"required": ["query"]
|
|
24
|
+
},
|
|
25
|
+
"return_schema": {
|
|
26
|
+
"type": "array",
|
|
27
|
+
"description": "List of Crossref articles matching the search query",
|
|
28
|
+
"items": {
|
|
29
|
+
"type": "object",
|
|
30
|
+
"properties": {
|
|
31
|
+
"title": {
|
|
32
|
+
"type": "string",
|
|
33
|
+
"description": "Title of the article"
|
|
34
|
+
},
|
|
35
|
+
"abstract": {
|
|
36
|
+
"type": "string",
|
|
37
|
+
"description": "Abstract of the article (may contain HTML)"
|
|
38
|
+
},
|
|
39
|
+
"journal": {
|
|
40
|
+
"type": "string",
|
|
41
|
+
"description": "Journal name where the article was published"
|
|
42
|
+
},
|
|
43
|
+
"year": {
|
|
44
|
+
"type": "integer",
|
|
45
|
+
"description": "Publication year"
|
|
46
|
+
},
|
|
47
|
+
"doi": {
|
|
48
|
+
"type": "string",
|
|
49
|
+
"description": "Digital Object Identifier"
|
|
50
|
+
},
|
|
51
|
+
"url": {
|
|
52
|
+
"type": "string",
|
|
53
|
+
"description": "URL to the article"
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
"test_examples": [
|
|
59
|
+
{
|
|
60
|
+
"query": "artificial intelligence",
|
|
61
|
+
"limit": 2
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"query": "machine learning",
|
|
65
|
+
"limit": 1,
|
|
66
|
+
"filter": "type:journal-article,from-pub-date:2020-01-01"
|
|
67
|
+
}
|
|
68
|
+
]
|
|
69
|
+
}
|
|
70
|
+
]
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"type": "DBLPTool",
|
|
4
|
+
"name": "DBLP_search_publications",
|
|
5
|
+
"description": "Search DBLP Computer Science Bibliography for publications. Returns publications with title, authors, year, venue, URL, and electronic edition link.",
|
|
6
|
+
"parameter": {
|
|
7
|
+
"type": "object",
|
|
8
|
+
"properties": {
|
|
9
|
+
"query": {
|
|
10
|
+
"type": "string",
|
|
11
|
+
"description": "Search query for DBLP publications. Use keywords separated by spaces to refine your search."
|
|
12
|
+
},
|
|
13
|
+
"limit": {
|
|
14
|
+
"type": "integer",
|
|
15
|
+
"description": "Number of publications to return. This sets the maximum number of publications retrieved from DBLP.",
|
|
16
|
+
"default": 10
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"required": ["query"]
|
|
20
|
+
},
|
|
21
|
+
"return_schema": {
|
|
22
|
+
"type": "array",
|
|
23
|
+
"description": "List of DBLP publications matching the search query",
|
|
24
|
+
"items": {
|
|
25
|
+
"type": "object",
|
|
26
|
+
"properties": {
|
|
27
|
+
"title": {
|
|
28
|
+
"type": "string",
|
|
29
|
+
"description": "Title of the publication"
|
|
30
|
+
},
|
|
31
|
+
"authors": {
|
|
32
|
+
"type": "array",
|
|
33
|
+
"items": {
|
|
34
|
+
"type": "object",
|
|
35
|
+
"properties": {
|
|
36
|
+
"@pid": {"type": "string"},
|
|
37
|
+
"text": {"type": "string"}
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"description": "List of authors with DBLP person IDs"
|
|
41
|
+
},
|
|
42
|
+
"year": {
|
|
43
|
+
"type": "string",
|
|
44
|
+
"description": "Publication year"
|
|
45
|
+
},
|
|
46
|
+
"venue": {
|
|
47
|
+
"type": "array",
|
|
48
|
+
"items": {"type": "string"},
|
|
49
|
+
"description": "Venue information (conference/journal names)"
|
|
50
|
+
},
|
|
51
|
+
"url": {
|
|
52
|
+
"type": "string",
|
|
53
|
+
"description": "URL to the publication on DBLP"
|
|
54
|
+
},
|
|
55
|
+
"ee": {
|
|
56
|
+
"type": "string",
|
|
57
|
+
"description": "Electronic edition URL (DOI or publisher link)"
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
"test_examples": [
|
|
63
|
+
{
|
|
64
|
+
"query": "computer science",
|
|
65
|
+
"limit": 2
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"query": "machine learning",
|
|
69
|
+
"limit": 1
|
|
70
|
+
}
|
|
71
|
+
]
|
|
72
|
+
}
|
|
73
|
+
]
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"type": "DOAJTool",
|
|
4
|
+
"name": "DOAJ_search_articles",
|
|
5
|
+
"description": "Search DOAJ (Directory of Open Access Journals) for open-access articles. Returns articles with title, authors, year, DOI, venue, and URL.",
|
|
6
|
+
"parameter": {
|
|
7
|
+
"type": "object",
|
|
8
|
+
"properties": {
|
|
9
|
+
"query": {
|
|
10
|
+
"type": "string",
|
|
11
|
+
"description": "Search query for DOAJ articles. Supports Lucene syntax for advanced queries."
|
|
12
|
+
},
|
|
13
|
+
"max_results": {
|
|
14
|
+
"type": "integer",
|
|
15
|
+
"description": "Maximum number of articles to return. Default is 10, maximum is 100.",
|
|
16
|
+
"default": 10
|
|
17
|
+
},
|
|
18
|
+
"type": {
|
|
19
|
+
"type": "string",
|
|
20
|
+
"description": "Type of search: 'articles' or 'journals'. Default is 'articles'.",
|
|
21
|
+
"default": "articles"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"required": ["query"]
|
|
25
|
+
},
|
|
26
|
+
"return_schema": {
|
|
27
|
+
"type": "array",
|
|
28
|
+
"description": "List of DOAJ articles or journals matching the search query",
|
|
29
|
+
"items": {
|
|
30
|
+
"type": "object",
|
|
31
|
+
"properties": {
|
|
32
|
+
"title": {
|
|
33
|
+
"type": "string",
|
|
34
|
+
"description": "Title of the article or journal"
|
|
35
|
+
},
|
|
36
|
+
"authors": {
|
|
37
|
+
"type": "array",
|
|
38
|
+
"items": {"type": "string"},
|
|
39
|
+
"description": "List of author names (for articles)"
|
|
40
|
+
},
|
|
41
|
+
"year": {
|
|
42
|
+
"type": "integer",
|
|
43
|
+
"description": "Publication year"
|
|
44
|
+
},
|
|
45
|
+
"doi": {
|
|
46
|
+
"type": "string",
|
|
47
|
+
"description": "Digital Object Identifier"
|
|
48
|
+
},
|
|
49
|
+
"venue": {
|
|
50
|
+
"type": "string",
|
|
51
|
+
"description": "Journal name (for articles)"
|
|
52
|
+
},
|
|
53
|
+
"url": {
|
|
54
|
+
"type": "string",
|
|
55
|
+
"description": "URL to the article or journal"
|
|
56
|
+
},
|
|
57
|
+
"source": {
|
|
58
|
+
"type": "string",
|
|
59
|
+
"description": "Source identifier (always 'DOAJ')"
|
|
60
|
+
},
|
|
61
|
+
"publisher": {
|
|
62
|
+
"type": "string",
|
|
63
|
+
"description": "Publisher name (for journals)"
|
|
64
|
+
},
|
|
65
|
+
"eissn": {
|
|
66
|
+
"type": "string",
|
|
67
|
+
"description": "Electronic ISSN (for journals)"
|
|
68
|
+
},
|
|
69
|
+
"pissn": {
|
|
70
|
+
"type": "string",
|
|
71
|
+
"description": "Print ISSN (for journals)"
|
|
72
|
+
},
|
|
73
|
+
"subjects": {
|
|
74
|
+
"type": "array",
|
|
75
|
+
"items": {"type": "string"},
|
|
76
|
+
"description": "Subject categories (for journals)"
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
"test_examples": [
|
|
82
|
+
{
|
|
83
|
+
"query": "open access",
|
|
84
|
+
"max_results": 2,
|
|
85
|
+
"type": "articles"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"query": "biology",
|
|
89
|
+
"max_results": 1,
|
|
90
|
+
"type": "journals"
|
|
91
|
+
}
|
|
92
|
+
]
|
|
93
|
+
}
|
|
94
|
+
]
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"type": "FatcatScholarTool",
|
|
4
|
+
"name": "Fatcat_search_scholar",
|
|
5
|
+
"description": "Search Internet Archive Scholar via Fatcat releases search. Fatcat is the underlying database powering Internet Archive Scholar, providing access to millions of research papers and academic publications.",
|
|
6
|
+
"parameter": {
|
|
7
|
+
"type": "object",
|
|
8
|
+
"properties": {
|
|
9
|
+
"query": {
|
|
10
|
+
"type": "string",
|
|
11
|
+
"description": "Search query for Fatcat releases. Use keywords to search across titles, abstracts, and metadata of research papers."
|
|
12
|
+
},
|
|
13
|
+
"max_results": {
|
|
14
|
+
"type": "integer",
|
|
15
|
+
"description": "Maximum number of results to return. Default is 10, maximum is 100.",
|
|
16
|
+
"default": 10,
|
|
17
|
+
"minimum": 1,
|
|
18
|
+
"maximum": 100
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"required": ["query"]
|
|
22
|
+
},
|
|
23
|
+
"return_schema": {
|
|
24
|
+
"type": "array",
|
|
25
|
+
"description": "List of Fatcat releases matching the search query",
|
|
26
|
+
"items": {
|
|
27
|
+
"type": "object",
|
|
28
|
+
"properties": {
|
|
29
|
+
"title": {
|
|
30
|
+
"type": "string",
|
|
31
|
+
"description": "Title of the research paper"
|
|
32
|
+
},
|
|
33
|
+
"authors": {
|
|
34
|
+
"type": "array",
|
|
35
|
+
"items": {"type": "string"},
|
|
36
|
+
"description": "List of author names"
|
|
37
|
+
},
|
|
38
|
+
"year": {
|
|
39
|
+
"type": "integer",
|
|
40
|
+
"description": "Publication year"
|
|
41
|
+
},
|
|
42
|
+
"doi": {
|
|
43
|
+
"type": "string",
|
|
44
|
+
"description": "Digital Object Identifier"
|
|
45
|
+
},
|
|
46
|
+
"url": {
|
|
47
|
+
"type": "string",
|
|
48
|
+
"description": "URL to the paper on Fatcat"
|
|
49
|
+
},
|
|
50
|
+
"source": {
|
|
51
|
+
"type": "string",
|
|
52
|
+
"description": "Source identifier (always 'Fatcat/IA Scholar')"
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
"test_examples": [
|
|
58
|
+
{
|
|
59
|
+
"query": "machine learning",
|
|
60
|
+
"max_results": 2
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"query": "quantum physics",
|
|
64
|
+
"max_results": 1
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"query": "artificial intelligence",
|
|
68
|
+
"max_results": 1
|
|
69
|
+
}
|
|
70
|
+
]
|
|
71
|
+
}
|
|
72
|
+
]
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"type": "HALTool",
|
|
4
|
+
"name": "HAL_search_archive",
|
|
5
|
+
"description": "Search the French HAL open archive via its public API. Returns documents with title, authors, year, DOI, URL, abstract, and source.",
|
|
6
|
+
"parameter": {
|
|
7
|
+
"type": "object",
|
|
8
|
+
"properties": {
|
|
9
|
+
"query": {
|
|
10
|
+
"type": "string",
|
|
11
|
+
"description": "Search query for HAL archive. Supports Lucene syntax for advanced queries."
|
|
12
|
+
},
|
|
13
|
+
"max_results": {
|
|
14
|
+
"type": "integer",
|
|
15
|
+
"description": "Maximum number of documents to return. Default is 10, maximum is 100.",
|
|
16
|
+
"default": 10
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"required": ["query"]
|
|
20
|
+
},
|
|
21
|
+
"return_schema": {
|
|
22
|
+
"type": "array",
|
|
23
|
+
"description": "List of HAL documents matching the search query",
|
|
24
|
+
"items": {
|
|
25
|
+
"type": "object",
|
|
26
|
+
"properties": {
|
|
27
|
+
"title": {
|
|
28
|
+
"type": "string",
|
|
29
|
+
"description": "Title of the document"
|
|
30
|
+
},
|
|
31
|
+
"authors": {
|
|
32
|
+
"type": "array",
|
|
33
|
+
"items": {"type": "string"},
|
|
34
|
+
"description": "List of author names"
|
|
35
|
+
},
|
|
36
|
+
"year": {
|
|
37
|
+
"type": "integer",
|
|
38
|
+
"description": "Publication year"
|
|
39
|
+
},
|
|
40
|
+
"doi": {
|
|
41
|
+
"type": "string",
|
|
42
|
+
"description": "Digital Object Identifier (if available)"
|
|
43
|
+
},
|
|
44
|
+
"url": {
|
|
45
|
+
"type": "string",
|
|
46
|
+
"description": "URL to the document on HAL"
|
|
47
|
+
},
|
|
48
|
+
"abstract": {
|
|
49
|
+
"type": "string",
|
|
50
|
+
"description": "Abstract of the document"
|
|
51
|
+
},
|
|
52
|
+
"source": {
|
|
53
|
+
"type": "string",
|
|
54
|
+
"description": "Source identifier (always 'HAL')"
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
"test_examples": [
|
|
60
|
+
{
|
|
61
|
+
"query": "mathematics",
|
|
62
|
+
"max_results": 2
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"query": "physics",
|
|
66
|
+
"max_results": 1
|
|
67
|
+
}
|
|
68
|
+
]
|
|
69
|
+
}
|
|
70
|
+
]
|