Introduction

Bittensor is a mining network, similar to Bitcoin, that includes built-in incentives designed to encourage computers to provide access to machine learning models in an efficient and censorship-resistant manner, for instance; generating text, audio, and images, or for extracting numerical representations of these input types a.k.a embeddings.

There are three primary ways to interact with Bittensor which this documentation covers.


Users, researchers or companies, seeking to access bittensor directly using client facing APIs.

1import bittensor
2llm = bittensor.BittensorLLM()
3llm( "Heraclitus was a ?" )
4
5Out[1]: 'Greek philosopher known for his doctrine of change and the famous quote, "No man ever steps in the same river twice."'

Individuals contributing compute, expertise or innovation into Bittensor and looking to get paid for it.

1bittensor/
2    neurons/
3        text_prompting/
4            miners/
5                GPT4ALL/
6                    neuron.py

Tao holders looking to govern Bittensor directly and use the network at its full capactiy bandwidth and fidelity.

1bittensor/
2    neurons/
3        text_to_embedding/
4        text_prompting/
5            validators/
6                core/
7                    neuron.py