bittensor_llm
Run fine-tuned LLM inference through Bittensor subnet 6 for text generation tasks, costing $0.01 per prompt call.
Instructions
Fine-tuned LLM inference via Bittensor subnet 6 (Nous Research). Cost: $0.01 per call.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| prompt | Yes | Your prompt |
Implementation Reference
- src/index.ts:273-275 (handler)The handler for bittensor_llm calls the gateway with the route "bittensor-llm".
case "bittensor_llm": result = await callGateway({ route: "bittensor-llm", prompt: a.prompt }); break; - src/index.ts:108-118 (schema)The tool definition for bittensor_llm, including its description and input schema.
name: "bittensor_llm", description: "Fine-tuned LLM inference via Bittensor subnet 6 (Nous Research). Cost: $0.01 per call.", inputSchema: { type: "object", properties: { prompt: { type: "string", description: "Your prompt" }, }, required: ["prompt"], }, },