find_code_examples
Discover code examples in Bear notes by specifying a programming language and topic. Extract code blocks from relevant notes to solve coding challenges or learn new concepts efficiently.
Instructions
Find code examples in Bear notes
Args: language: Programming language (python, javascript, go, etc.) topic: Topic to search for (docker, api, database, etc.) limit: Maximum number of results
Returns: Notes containing code examples with extracted code blocks
Input Schema
Name | Required | Description | Default |
---|---|---|---|
language | No | ||
limit | No | ||
topic | No |
Input Schema (JSON Schema)
{
"properties": {
"language": {
"default": "",
"title": "Language",
"type": "string"
},
"limit": {
"default": 15,
"title": "Limit",
"type": "integer"
},
"topic": {
"default": "",
"title": "Topic",
"type": "string"
}
},
"type": "object"
}