search_onyx_docs
Search Onyx programming language documentation to quickly find accurate information. Retrieve up to a specified number of results for efficient access to official resources.
Instructions
Search official Onyx programming language documentation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of results | |
query | Yes | Search query for documentation |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 5,
"description": "Maximum number of results",
"type": "number"
},
"query": {
"description": "Search query for documentation",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}