bittensor_image
Generate images from text descriptions using Bittensor's decentralized AI network. Provides image URLs for creative and practical applications through a pay-per-use model.
Instructions
Text-to-image synthesis via Bittensor subnet 5. Returns an image URL. Cost: $0.075 per call.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| prompt | Yes | Image description to generate |
Implementation Reference
- src/index.ts:270-272 (handler)The handler logic for "bittensor_image" which calls the gateway with the "bittensor-image" route.
case "bittensor_image": result = await callGateway({ route: "bittensor-image", prompt: a.prompt }); break; - src/index.ts:96-106 (schema)Definition of the "bittensor_image" tool, including its description and input schema.
name: "bittensor_image", description: "Text-to-image synthesis via Bittensor subnet 5. Returns an image URL. Cost: $0.075 per call.", inputSchema: { type: "object", properties: { prompt: { type: "string", description: "Image description to generate" }, }, required: ["prompt"], }, },