get-code-examples
Generate Node.js or Python code examples for PaymanAI integration based on specific features, aiding developers in building efficient integrations with ease.
Instructions
Get Node.js or Python code examples for PaymanAI integration
Input Schema
Name | Required | Description | Default |
---|---|---|---|
feature | Yes | The feature or functionality you need code examples for | |
language | No | Programming language (nodejs or python) | nodejs |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"feature": {
"description": "The feature or functionality you need code examples for",
"type": "string"
},
"language": {
"default": "nodejs",
"description": "Programming language (nodejs or python)",
"enum": [
"nodejs",
"python"
],
"type": "string"
}
},
"required": [
"feature"
],
"type": "object"
}