add_comment
Enable AI assistants to attach comments to specific questions on Fatebook, enhancing context and collaboration for prediction tracking. Requires question ID and comment input.
Instructions
Add a comment to a Fatebook question
Input Schema
Name | Required | Description | Default |
---|---|---|---|
apiKey | No | ||
comment | Yes | ||
questionId | Yes |
Input Schema (JSON Schema)
{
"properties": {
"apiKey": {
"default": "",
"title": "Apikey",
"type": "string"
},
"comment": {
"title": "Comment",
"type": "string"
},
"questionId": {
"title": "Questionid",
"type": "string"
}
},
"required": [
"questionId",
"comment"
],
"title": "add_commentArguments",
"type": "object"
}