solve-problem
Resolve PaymanAI integration issues by describing the problem and specifying the SDK (nodejs or python) for targeted assistance.
Instructions
Get help with common PaymanAI integration issues
Input Schema
Name | Required | Description | Default |
---|---|---|---|
problem | Yes | Describe the issue you're experiencing | |
sdk | No | Which SDK you're using (nodejs or python) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"problem": {
"description": "Describe the issue you're experiencing",
"type": "string"
},
"sdk": {
"description": "Which SDK you're using (nodejs or python)",
"enum": [
"nodejs",
"python"
],
"type": "string"
}
},
"required": [
"problem"
],
"type": "object"
}