get_code_examples
Retrieve curated code examples with explanations for specific topics and libraries. Specify the programming language to find relevant snippets for your development tasks.
Instructions
Get curated code examples for a specific topic and library.
Args:
library: The library to search for examples
topic: The specific topic or feature
language: Programming language for examples
Returns:
Curated code examples with explanations
Input Schema
Name | Required | Description | Default |
---|---|---|---|
language | No | python | |
library | Yes | ||
topic | Yes |
Input Schema (JSON Schema)
{
"properties": {
"language": {
"default": "python",
"title": "Language",
"type": "string"
},
"library": {
"title": "Library",
"type": "string"
},
"topic": {
"title": "Topic",
"type": "string"
}
},
"required": [
"library",
"topic"
],
"title": "get_code_examplesArguments",
"type": "object"
}