sch_search
Perform scholarly research by querying academic sources within TOOL4LM. Input a search term, adjust result limits, and retrieve relevant scholarly data directly.
Instructions
Alias of sch.search
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
q | Yes | ||
top | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"type": "integer"
},
"q": {
"type": "string"
},
"top": {
"type": "integer"
}
},
"required": [
"q"
],
"type": "object"
}