bittensor_forecast
Forecast financial and crypto time series using Bittensor subnet 8. Submit prompts like 'Forecast BTC price for next 7 days' for predictions.
Instructions
Financial and crypto time series forecasting via Bittensor subnet 8. Cost: $0.05 per call.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| prompt | Yes | Forecasting request, e.g. 'Forecast BTC price for next 7 days' |
Implementation Reference
- src/index.ts:276-278 (handler)The handler for the bittensor_forecast tool, which delegates to a gateway service.
case "bittensor_forecast": result = await callGateway({ route: "bittensor-forecast", prompt: a.prompt }); break; - src/index.ts:119-133 (schema)Registration and input schema definition for the bittensor_forecast tool.
{ name: "bittensor_forecast", description: "Financial and crypto time series forecasting via Bittensor subnet 8. Cost: $0.05 per call.", inputSchema: { type: "object", properties: { prompt: { type: "string", description: "Forecasting request, e.g. 'Forecast BTC price for next 7 days'", }, }, required: ["prompt"], }, },