resolve_question
Resolve Fatebook predictions with YES/NO/AMBIGUOUS outcomes by specifying question ID, resolution, and type. Streamlines decision tracking for AI assistants.
Instructions
Resolve a Fatebook question with YES/NO/AMBIGUOUS resolution
Input Schema
Name | Required | Description | Default |
---|---|---|---|
apiKey | No | ||
questionId | Yes | ||
questionType | Yes | ||
resolution | Yes |
Input Schema (JSON Schema)
{
"properties": {
"apiKey": {
"default": "",
"title": "Apikey",
"type": "string"
},
"questionId": {
"title": "Questionid",
"type": "string"
},
"questionType": {
"title": "Questiontype",
"type": "string"
},
"resolution": {
"title": "Resolution",
"type": "string"
}
},
"required": [
"questionId",
"resolution",
"questionType"
],
"title": "resolve_questionArguments",
"type": "object"
}