add_forecast
Submit a numerical forecast to a specific question on Fatebook to track predictions. Enables AI assistants and users to input and manage probability estimates for better decision-making.
Instructions
Add a forecast to a Fatebook question
Input Schema
Name | Required | Description | Default |
---|---|---|---|
apiKey | No | ||
forecast | Yes | ||
optionId | No | ||
questionId | Yes |
Input Schema (JSON Schema)
{
"properties": {
"apiKey": {
"default": "",
"title": "Apikey",
"type": "string"
},
"forecast": {
"title": "Forecast",
"type": "number"
},
"optionId": {
"default": "",
"title": "Optionid",
"type": "string"
},
"questionId": {
"title": "Questionid",
"type": "string"
}
},
"required": [
"questionId",
"forecast"
],
"title": "add_forecastArguments",
"type": "object"
}