From c92c95b598eab453344b3df8614f21c628632d86 Mon Sep 17 00:00:00 2001 From: Raj Karamchedu Date: Wed, 21 Feb 2024 10:52:15 -0800 Subject: [PATCH] Updating link to text prompting subnet repo --- docs/index.md | 2 +- docs/learn/anatomy-of-incentive-mechanism.md | 4 +- docs/learn/bittensor-building-blocks.md | 2 +- docs/learn/introduction.md | 2 +- docs/subnet-pages/subnet-1.md | 2 +- .../code-walkthrough-text-prompting.md | 66 +++++++++---------- 6 files changed, 39 insertions(+), 39 deletions(-) diff --git a/docs/index.md b/docs/index.md index 1029cb9a3a..d0b271d5bf 100644 --- a/docs/index.md +++ b/docs/index.md @@ -32,7 +32,7 @@ See [what's new in docs](./whats-new-in-docs.md). ::: -**Welcome!** Bittensor is a protocol for decentralized subnets. Subnets exist to produce decentralized intelligence. Each subnet is an incentive-based competitive market in action, to produce the best decentralized intelligence. For example, the [text prompting subnet](https://github.com/opentensor/text-prompting) incentivizes subnet miners who produce the best prompt completions in response to the prompts sent by the subnet validators in that subnet. +**Welcome!** Bittensor is a protocol for decentralized subnets. Subnets exist to produce decentralized intelligence. Each subnet is an incentive-based competitive market in action, to produce the best decentralized intelligence. For example, the [text prompting subnet](https://github.com/opentensor/prompting) incentivizes subnet miners who produce the best prompt completions in response to the prompts sent by the subnet validators in that subnet. Subnets run on blockchain and constitute the core of the Bittensor ecosystem. **The rewards for subnet participants are in the form of TAO tokens.** diff --git a/docs/learn/anatomy-of-incentive-mechanism.md b/docs/learn/anatomy-of-incentive-mechanism.md index 33c54b721a..7ba2d82a06 100644 --- a/docs/learn/anatomy-of-incentive-mechanism.md +++ b/docs/learn/anatomy-of-incentive-mechanism.md @@ -52,8 +52,8 @@ When a developer is getting ready to participate in a subnet, they will follow a After a subnet validator registers into your subnet, they will run the validator module to begin the validation operation. Similarly a subnet miner will register and then run the miner module. For example, see the following documents in the text prompting subnet for a quick view of these steps: -- [Running a validator](https://github.com/opentensor/text-prompting/blob/main/docs/running_a_validator.md). -- [Running a miner](https://github.com/opentensor/text-prompting/blob/main/docs/running_a_miner.md). +- [Running a validator](https://github.com/opentensor/prompting/blob/main/docs/running_a_validator.md). +- [Running a miner](https://github.com/opentensor/prompting/blob/main/docs/running_a_miner.md). ## Components of incentive mechanism diff --git a/docs/learn/bittensor-building-blocks.md b/docs/learn/bittensor-building-blocks.md index 036208ba46..a38cdf5dbd 100644 --- a/docs/learn/bittensor-building-blocks.md +++ b/docs/learn/bittensor-building-blocks.md @@ -82,7 +82,7 @@ then the subnet validator: Synapse is a data object. Subnet validators and subnet miners use Synapse data objects as the main vehicle to exchange information. The Synapse class inherits from the `BaseModel` of the Pydantic data validation library. -For example, in the [Text Prompting Subnet](https://github.com/opentensor/text-prompting/blob/6c493cbce0c621e28ded203d947ce47a9ae062ea/prompting/protocol.py#L27), the subnet validator creates a Synapse object, called Prompting, with three fields. The fields `roles` and `messages` are set by the subnet validator during the initialization of this Prompting data object and they cannot be changed after that. A third field, `completion`, is mutable. When a subnet miner receives this Prompting object from the subnet validator, the subnet miner updates this `completion` field. The subnet validator then reads this updated `completion` field. +For example, in the [Text Prompting Subnet](https://github.com/opentensor/prompting/blob/6c493cbce0c621e28ded203d947ce47a9ae062ea/prompting/protocol.py#L27), the subnet validator creates a Synapse object, called Prompting, with three fields. The fields `roles` and `messages` are set by the subnet validator during the initialization of this Prompting data object and they cannot be changed after that. A third field, `completion`, is mutable. When a subnet miner receives this Prompting object from the subnet validator, the subnet miner updates this `completion` field. The subnet validator then reads this updated `completion` field. ## Metagraph diff --git a/docs/learn/introduction.md b/docs/learn/introduction.md index 3c23cd76cd..741872cf01 100644 --- a/docs/learn/introduction.md +++ b/docs/learn/introduction.md @@ -22,7 +22,7 @@ The Bittensor ecosystem consists of the following three components (refer to the 1. **An incentive-based competition mechanism**: You can either create your custom incentive mechanism for your own competition or join a competition that already exists in the Bittensor ecosystem. Each such incentive-based competition market is called a **subnet**. Subnets constitute the core of the Bittensor ecosystem. :::tip Text prompting subnet -For example, the [text prompting subnet](https://github.com/opentensor/text-prompting), developed by the Open Tensor foundation, incentivizes subnet miners that produce the best prompt completions in response to the prompts sent by the subnet validators in that subnet. +For example, the [text prompting subnet](https://github.com/opentensor/prompting), developed by the Open Tensor foundation, incentivizes subnet miners that produce the best prompt completions in response to the prompts sent by the subnet validators in that subnet. ::: 2. A **blockchain** that runs the above subnets and supports their proper functioning so that the incentive-based competition market is decentralized, is permissionless and is collusion-resistant, i.e., is resistant to market manipulation. diff --git a/docs/subnet-pages/subnet-1.md b/docs/subnet-pages/subnet-1.md index 4352de9699..d39b006a1c 100644 --- a/docs/subnet-pages/subnet-1.md +++ b/docs/subnet-pages/subnet-1.md @@ -21,7 +21,7 @@ Opentensor Foundation ## GitHub -https://github.com/opentensor/text-prompting +https://github.com/opentensor/prompting