search_github_examples
Find Onyx code examples by topic from GitHub repositories using AI-powered search. Specify a topic and optional limit to retrieve relevant examples for programming tasks.
Instructions
Search Onyx code examples from GitHub repositories by topic
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of examples | |
topic | Yes | Topic to search for |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 5,
"description": "Maximum number of examples",
"type": "number"
},
"topic": {
"description": "Topic to search for",
"type": "string"
}
},
"required": [
"topic"
],
"type": "object"
}