bittensor_text
Process text prompts for conversational AI, general questions, and summaries using Bittensor's text generation capabilities.
Instructions
Conversational AI via Bittensor subnet 1 (Text Prompting). Good for general questions, summaries, and chat. Cost: $0.005 per call.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| prompt | Yes | Your text prompt |
Implementation Reference
- src/index.ts:261-263 (handler)Handler implementation for bittensor_text tool, which calls the remote gateway API with the 'bittensor-text' route.
case "bittensor_text": result = await callGateway({ route: "bittensor-text", prompt: a.prompt }); break; - src/index.ts:56-67 (schema)Input schema and metadata definition for the bittensor_text tool.
{ name: "bittensor_text", description: "Conversational AI via Bittensor subnet 1 (Text Prompting). Good for general questions, summaries, and chat. Cost: $0.005 per call.", inputSchema: { type: "object", properties: { prompt: { type: "string", description: "Your text prompt" }, }, required: ["prompt"], }, },