With the amount of new subnets being added it can be hard to get up to date information across all subnets, so data may be slightly out of date from time to time
Bittensor Subnet 11, known as Dippy Roleplay, is developed by Impel Intelligence with the primary objective of creating the world’s best open-source roleplay Large Language Model (LLM). This initiative stems from the observation that current state-of-the-art (SOTA) LLMs, such as those from OpenAI or Anthropic (Claude), are predominantly optimized for assistant-like functionalities and often lack the empathetic and nuanced conversational abilities required for engaging roleplay experiences. The subnet aims to address the gap where open-source roleplay LLMs significantly lag behind their closed-source counterparts like Character AI or Inflection AI. The development of Dippy Roleplay is also a response to the broader trend in LLM development that has historically prioritized objective reasoning over creative and empathetic roleplay capabilities, thereby underscoring the need for robust open-source alternatives in this domain.
The subnet is intrinsically linked to the Dippy app, which is described as a leading AI companion application boasting over one million users and achieving high engagement metrics, such as an average session length exceeding one hour and top App Store rankings in several countries (e.g., #3 in Germany). This existing user base is positioned as a valuable asset for generating data and refining the roleplay models developed on the subnet
Bittensor Subnet 11, known as Dippy Roleplay, is developed by Impel Intelligence with the primary objective of creating the world’s best open-source roleplay Large Language Model (LLM). This initiative stems from the observation that current state-of-the-art (SOTA) LLMs, such as those from OpenAI or Anthropic (Claude), are predominantly optimized for assistant-like functionalities and often lack the empathetic and nuanced conversational abilities required for engaging roleplay experiences. The subnet aims to address the gap where open-source roleplay LLMs significantly lag behind their closed-source counterparts like Character AI or Inflection AI. The development of Dippy Roleplay is also a response to the broader trend in LLM development that has historically prioritized objective reasoning over creative and empathetic roleplay capabilities, thereby underscoring the need for robust open-source alternatives in this domain.
The subnet is intrinsically linked to the Dippy app, which is described as a leading AI companion application boasting over one million users and achieving high engagement metrics, such as an average session length exceeding one hour and top App Store rankings in several countries (e.g., #3 in Germany). This existing user base is positioned as a valuable asset for generating data and refining the roleplay models developed on the subnet
The core purpose, as reiterated across multiple sources including the official GitHub repository, news analyses, and community discussions, is to incentivize the decentralized creation and continuous improvement of high-quality, open-source LLMs specifically tailored for role-playing scenarios. This is achieved by fostering a competitive environment where miners contribute models and validators evaluate them based on sophisticated scoring mechanisms.
Key goals highlighted include:
Mechanism and Functionality
The Dippy Roleplay subnet (SN11) operates on a competitive, incentive-based mechanism inherent to the Bittensor network, specifically tailored to foster the creation of high-quality open-source roleplaying LLMs. The core of its functionality revolves around the interaction between two key participants: miners and validators, with the ultimate product being the refined LLMs themselves and the data/insights generated through their evaluation.
Miner Participation:
Miners on Subnet 11 are tasked with developing and submitting LLMs optimized for roleplay. Their process generally involves:
Validator Participation and Evaluation Process:
Validators are crucial for assessing the quality and performance of the models submitted by miners. Their role involves a multi-faceted evaluation process:
Incentive Mechanism and Product Output:
The overarching incentive mechanism follows the Bittensor standard: miners who produce high-performing models (as determined by validator scoring and win rates) receive a greater share of the TAO emissions allocated to Subnet 11. The collective output of this process is a continuously improving, open-source roleplay LLM, with the best-performing models potentially being integrated into the Dippy.ai application and made available to its large user base. This also generates valuable data on model performance and user preferences in roleplay scenarios.
Technical Architecture
The Dippy Roleplay subnet (SN11) is built using Python (version 3.9+) and leverages several key components and integrations to facilitate its operations. The technical architecture is designed to support the submission, evaluation, and ranking of roleplay LLMs in a decentralized manner.
Core Components (from the impel-intelligence/dippy-bittensor-subnet GitHub repository):
Neuron Implementations:
Scoring Mechanism (scoring/ directory): This directory is critical as it contains all the code related to the LLM scoring process. This includes the implementation of the multi-phase evaluation (Evaluation Score, Creativity Score, Judge Score, Coherence Score, Post Evaluation Score) and the logic for comparing models against datasets and benchmarks. It also includes Jinja templates (scoring/prompt_templates) for common foundational models to handle different token systems and instruct syntaxes.
Utilities (utilities/ directory): Provides a collection of common utility functions essential for the subnet’s operation. This can include helper functions for interacting with the Bittensor network, managing Hugging Face repository interactions, and other validation support functions.
Documentation (docs/ directory): A comprehensive set of Markdown files offering guidance for participants. Key documents include:
Worker API (worker_api/ directory): This component defines an API for model validation tasks. It is primarily utilized by validators and the subnet operators to manage the evaluation pipeline. Dockerfiles (evaluator.Dockerfile for the scoring worker and vapi.Dockerfile for the worker API) are provided to facilitate the deployment of these services. The scoring worker is responsible for executing the computationally intensive model evaluation tasks.
Key Dependencies and Integrations:
Model Worker Orchestration:
An important architectural detail noted in the GitHub repository is that, at the time of the documentation, general validators call a model worker orchestration service hosted by the Dippy subnet owners (Impel Intelligence). This service likely manages the distribution of evaluation tasks to a pool of scoring workers. While the code for local worker orchestration might exist, it was disabled for general validators, centralizing the execution of the core evaluation computation to some extent, likely for consistency, resource management, and to prevent abuse during the initial phases of the subnet.
Evolution from Other Subnets:
The Dippy subnet’s codebase initially drew inspiration from concepts found in Nous Research’s and MyShell’s subnets. However, it has reportedly diverged significantly to cater to its specific focus on roleplay LLM evaluation and development.
The core purpose, as reiterated across multiple sources including the official GitHub repository, news analyses, and community discussions, is to incentivize the decentralized creation and continuous improvement of high-quality, open-source LLMs specifically tailored for role-playing scenarios. This is achieved by fostering a competitive environment where miners contribute models and validators evaluate them based on sophisticated scoring mechanisms.
Key goals highlighted include:
Mechanism and Functionality
The Dippy Roleplay subnet (SN11) operates on a competitive, incentive-based mechanism inherent to the Bittensor network, specifically tailored to foster the creation of high-quality open-source roleplaying LLMs. The core of its functionality revolves around the interaction between two key participants: miners and validators, with the ultimate product being the refined LLMs themselves and the data/insights generated through their evaluation.
Miner Participation:
Miners on Subnet 11 are tasked with developing and submitting LLMs optimized for roleplay. Their process generally involves:
Validator Participation and Evaluation Process:
Validators are crucial for assessing the quality and performance of the models submitted by miners. Their role involves a multi-faceted evaluation process:
Incentive Mechanism and Product Output:
The overarching incentive mechanism follows the Bittensor standard: miners who produce high-performing models (as determined by validator scoring and win rates) receive a greater share of the TAO emissions allocated to Subnet 11. The collective output of this process is a continuously improving, open-source roleplay LLM, with the best-performing models potentially being integrated into the Dippy.ai application and made available to its large user base. This also generates valuable data on model performance and user preferences in roleplay scenarios.
Technical Architecture
The Dippy Roleplay subnet (SN11) is built using Python (version 3.9+) and leverages several key components and integrations to facilitate its operations. The technical architecture is designed to support the submission, evaluation, and ranking of roleplay LLMs in a decentralized manner.
Core Components (from the impel-intelligence/dippy-bittensor-subnet GitHub repository):
Neuron Implementations:
Scoring Mechanism (scoring/ directory): This directory is critical as it contains all the code related to the LLM scoring process. This includes the implementation of the multi-phase evaluation (Evaluation Score, Creativity Score, Judge Score, Coherence Score, Post Evaluation Score) and the logic for comparing models against datasets and benchmarks. It also includes Jinja templates (scoring/prompt_templates) for common foundational models to handle different token systems and instruct syntaxes.
Utilities (utilities/ directory): Provides a collection of common utility functions essential for the subnet’s operation. This can include helper functions for interacting with the Bittensor network, managing Hugging Face repository interactions, and other validation support functions.
Documentation (docs/ directory): A comprehensive set of Markdown files offering guidance for participants. Key documents include:
Worker API (worker_api/ directory): This component defines an API for model validation tasks. It is primarily utilized by validators and the subnet operators to manage the evaluation pipeline. Dockerfiles (evaluator.Dockerfile for the scoring worker and vapi.Dockerfile for the worker API) are provided to facilitate the deployment of these services. The scoring worker is responsible for executing the computationally intensive model evaluation tasks.
Key Dependencies and Integrations:
Model Worker Orchestration:
An important architectural detail noted in the GitHub repository is that, at the time of the documentation, general validators call a model worker orchestration service hosted by the Dippy subnet owners (Impel Intelligence). This service likely manages the distribution of evaluation tasks to a pool of scoring workers. While the code for local worker orchestration might exist, it was disabled for general validators, centralizing the execution of the core evaluation computation to some extent, likely for consistency, resource management, and to prevent abuse during the initial phases of the subnet.
Evolution from Other Subnets:
The Dippy subnet’s codebase initially drew inspiration from concepts found in Nous Research’s and MyShell’s subnets. However, it has reportedly diverged significantly to cater to its specific focus on roleplay LLM evaluation and development.
The primary developer and owner of Bittensor Subnet 11 (Dippy Roleplay) is Impel Intelligence. This is consistently indicated across the official GitHub repository, news articles (like Bitget), and research reports (like OAK Research). The team behind Impel Intelligence is also closely associated with the Dippy.ai application, which the subnet aims to support. The team from Impel includes members with backgrounds from prestigious companies like Microsoft, IBM, and Twitter, who have collectively created apps with over 100 million downloads that were groundbreaking in the AI space. The Impel team is focused on creating AI models that not only offer utility but also incorporate emotional intelligence elements like compassion, empathy, and humor to enhance user engagement. After experiencing success with the viral app “Wombo,” the Impel founders decided to shift their focus to creating AI products with a proactive and context-aware approach, aiming to cater to billions of consumers. Despite being a young company founded in August 2023, impel quickly secured a significant 2.1 million preseed funding round within just a month of incorporation, showcasing rapid growth and potential.
Key individuals associated with Impel Intelligence and the Dippy subnet, as identified from various sources, include:
Akshat Jagga – CEO
Angad Arneja – COO
These two individuals from the Impel team were featured on the Bittensor Guru podcast (Episode 31) discussing Subnet 11 and Dippy.ai. Their names also appear as contributors on the subnet’s GitHub repository. They are the core members driving the vision and development of both the Dippy app and its associated Bittensor subnet.
Donald Knoller
Appears as a frequent and significant contributor in the commit history of the dippy-bittensor-subnet GitHub repository, suggesting a key technical role in the subnet’s development and maintenance.
The primary developer and owner of Bittensor Subnet 11 (Dippy Roleplay) is Impel Intelligence. This is consistently indicated across the official GitHub repository, news articles (like Bitget), and research reports (like OAK Research). The team behind Impel Intelligence is also closely associated with the Dippy.ai application, which the subnet aims to support. The team from Impel includes members with backgrounds from prestigious companies like Microsoft, IBM, and Twitter, who have collectively created apps with over 100 million downloads that were groundbreaking in the AI space. The Impel team is focused on creating AI models that not only offer utility but also incorporate emotional intelligence elements like compassion, empathy, and humor to enhance user engagement. After experiencing success with the viral app “Wombo,” the Impel founders decided to shift their focus to creating AI products with a proactive and context-aware approach, aiming to cater to billions of consumers. Despite being a young company founded in August 2023, impel quickly secured a significant 2.1 million preseed funding round within just a month of incorporation, showcasing rapid growth and potential.
Key individuals associated with Impel Intelligence and the Dippy subnet, as identified from various sources, include:
Akshat Jagga – CEO
Angad Arneja – COO
These two individuals from the Impel team were featured on the Bittensor Guru podcast (Episode 31) discussing Subnet 11 and Dippy.ai. Their names also appear as contributors on the subnet’s GitHub repository. They are the core members driving the vision and development of both the Dippy app and its associated Bittensor subnet.
Donald Knoller
Appears as a frequent and significant contributor in the commit history of the dippy-bittensor-subnet GitHub repository, suggesting a key technical role in the subnet’s development and maintenance.
The Dippy Roleplay subnet (SN11) outlined a phased roadmap in its initial documentation, focusing on progressively enhancing its capabilities and integration with the Dippy.ai application. The roadmap, as detailed in the impel-intelligence/dippy-bittensor-subnet GitHub repository, is structured as follows:
Phase 1: Foundation and Initial Evaluation
Phase 2: Integration and Expansion
Phase 3: SOTA Advancement and Data-Driven Refinement
While specific timelines for each phase were not explicitly detailed in the initial public documentation, the phased approach indicates a clear progression from foundational infrastructure to advanced model development and deep application integration. The progress through these phases would likely be communicated through the project’s official channels, such as their GitHub repository, X/Twitter accounts, and potentially the Bittensor Discord.
The Dippy Roleplay subnet (SN11) outlined a phased roadmap in its initial documentation, focusing on progressively enhancing its capabilities and integration with the Dippy.ai application. The roadmap, as detailed in the impel-intelligence/dippy-bittensor-subnet GitHub repository, is structured as follows:
Phase 1: Foundation and Initial Evaluation
Phase 2: Integration and Expansion
Phase 3: SOTA Advancement and Data-Driven Refinement
While specific timelines for each phase were not explicitly detailed in the initial public documentation, the phased approach indicates a clear progression from foundational infrastructure to advanced model development and deep application integration. The progress through these phases would likely be communicated through the project’s official channels, such as their GitHub repository, X/Twitter accounts, and potentially the Bittensor Discord.
Huge thanks to Keith Singery (aka Bittensor Guru) for all of his fantastic work in the Bittensor community. Make sure to check out his other video/audio interviews by clicking HERE.
Angad and Akshat from the Impel team join Keith to discuss their launch on Bittensor’s Subnet 11, aimed at incentivizing the decentralized creation of roleplay models for their app Dippy.ai. Learn about the team, their impressive backgrounds, and their ambitious goal of becoming the open-source leaders in roleplaying LLMs.
Angad and Akshat join the pod for the second time to talk evolution of Dippy.ai and how they are using multiple subnets and integration within Bittensor’s network to further the reach and capabilities of their viral roleplaying app. With a successful subnet (S11) and second subnet (S58) launched to add voice to their offering, this team is becoming a major force both in and outside of Bittensor.
Keep ahead of the Bittensor exponential development curve…
Subnet Alpha is an informational platform for Bittensor Subnets.
This site is not affiliated with the Opentensor Foundation or TaoStats.
The content provided on this website is for informational purposes only. We make no guarantees regarding the accuracy or currency of the information at any given time.
Subnet Alpha is created and maintained by The Realistic Trader. If you have any suggestions or encounter any issues, please contact us at [email protected].
Copyright 2024