Skip to content

Commit 52660d5

Browse files
benliang99kenobijonwtfsayo
authored
feat(new-plugin): bittensor bitmind api for eliza (#2682)
* Initial implementation of bittensor plugin * Updated naming of BitMind API key secret to be more consistent * Added native twitter image detection functionality * Added image detections to agent memory, new analysis report generation action, and general refactoring of code * Added BitMind fields in .env.example * Reduced logging * remove commenting * fixing formatting * improve initialization --------- Co-authored-by: kenobijon <kenjonmiyachi@gmail.com> Co-authored-by: Sayo <hi@sayo.wtf>
1 parent 97b067f commit 52660d5

File tree

17 files changed

+731
-4
lines changed

17 files changed

+731
-4
lines changed

.env.example

+4
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ LOG_JSON_FORMAT=false # Print everything in logger as json; false by
2929
#### Client Configurations ####
3030
###############################
3131

32+
# BitMind Bittensor API
33+
BITMIND=true
34+
BITMIND_API_TOKEN=
35+
3236
# Discord Configuration
3337
DISCORD_APPLICATION_ID=
3438
DISCORD_API_TOKEN= # Bot token

agent/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@
120120
"@elizaos/plugin-router-nitro": "workspace:*",
121121
"@elizaos/plugin-nvidia-nim": "workspace:*",
122122
"@elizaos/plugin-0x": "workspace:*",
123+
"@elizaos/plugin-bittensor": "workspace:*",
123124
"@elizaos/plugin-chainbase": "workspace:*",
124125
"@elizaos/plugin-dkg": "workspace:*",
125126
"@elizaos/plugin-email": "workspace:*",

agent/src/index.ts

+2-3
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ import { avalanchePlugin } from "@elizaos/plugin-avalanche"
6262
import { b2Plugin } from "@elizaos/plugin-b2"
6363
import { binancePlugin } from "@elizaos/plugin-binance"
6464
import { birdeyePlugin } from "@elizaos/plugin-birdeye"
65+
import { bittensorPlugin } from "@elizaos/plugin-bittensor";
6566
import { bnbPlugin } from "@elizaos/plugin-bnb"
6667
import { advancedTradePlugin, coinbaseCommercePlugin, coinbaseMassPaymentsPlugin, tokenContractPlugin, tradePlugin, webhookPlugin } from "@elizaos/plugin-coinbase"
6768
import { coingeckoPlugin } from "@elizaos/plugin-coingecko"
@@ -487,8 +488,6 @@ export function getTokenForProvider(provider: ModelProviderName, character: Char
487488
return character.settings?.secrets?.ATOMASDK_BEARER_AUTH || settings.ATOMASDK_BEARER_AUTH
488489
case ModelProviderName.NVIDIA:
489490
return character.settings?.secrets?.NVIDIA_API_KEY || settings.NVIDIA_API_KEY
490-
case ModelProviderName.NVIDIA:
491-
return character.settings?.secrets?.NVIDIA_API_KEY || settings.NVIDIA_API_KEY
492491
case ModelProviderName.AKASH_CHAT_API:
493492
return character.settings?.secrets?.AKASH_CHAT_API_KEY || settings.AKASH_CHAT_API_KEY
494493
case ModelProviderName.GOOGLE:
@@ -747,6 +746,7 @@ export async function createAgent(character: Character, db: IDatabaseAdapter, ca
747746
character,
748747
// character.plugins are handled when clients are added
749748
plugins: [
749+
parseBooleanFromText(getSecret(character, "BITMIND")) && getSecret(character, "BITMIND_API_TOKEN") ? bittensorPlugin : null,
750750
parseBooleanFromText(getSecret(character, "EMAIL_AUTOMATION_ENABLED")) ? emailAutomationPlugin : null,
751751
getSecret(character, "IQ_WALLET_ADDRESS") && getSecret(character, "IQSOlRPC") ? elizaCodeinPlugin : null,
752752
bootstrapPlugin,
@@ -841,7 +841,6 @@ export async function createAgent(character: Character, db: IDatabaseAdapter, ca
841841
getSecret(character, "INITIA_PRIVATE_KEY") ? initiaPlugin : null,
842842
getSecret(character, "HOLDSTATION_PRIVATE_KEY") ? holdstationPlugin : null,
843843
getSecret(character, "NVIDIA_NIM_API_KEY") || getSecret(character, "NVIDIA_NGC_API_KEY") ? nvidiaNimPlugin : null,
844-
getSecret(character, "INITIA_PRIVATE_KEY") && getSecret(character, "INITIA_NODE_URL") ? initiaPlugin : null,
845844
getSecret(character, "BNB_PRIVATE_KEY") || getSecret(character, "BNB_PUBLIC_KEY")?.startsWith("0x") ? bnbPlugin : null,
846845
(getSecret(character, "EMAIL_INCOMING_USER") && getSecret(character, "EMAIL_INCOMING_PASS")) || (getSecret(character, "EMAIL_OUTGOING_USER") && getSecret(character, "EMAIL_OUTGOING_PASS")) ? emailPlugin : null,
847846
getSecret(character, "SEI_PRIVATE_KEY") ? seiPlugin : null,

packages/client-twitter/src/interactions.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,10 @@ export class TwitterInteractionClient {
277277
);
278278

279279
const message = {
280-
content: { text: tweet.text },
280+
content: {
281+
text: tweet.text,
282+
imageUrls: tweet.photos?.map(photo => photo.url) || []
283+
},
281284
agentId: this.runtime.agentId,
282285
userId: userIdUUID,
283286
roomId,
@@ -389,6 +392,7 @@ export class TwitterInteractionClient {
389392
content: {
390393
text: tweet.text,
391394
url: tweet.permanentUrl,
395+
imageUrls: tweet.photos?.map(photo => photo.url) || [],
392396
inReplyTo: tweet.inReplyToStatusId
393397
? stringToUuid(
394398
tweet.inReplyToStatusId +
@@ -583,6 +587,7 @@ export class TwitterInteractionClient {
583587
text: currentTweet.text,
584588
source: "twitter",
585589
url: currentTweet.permanentUrl,
590+
imageUrls: currentTweet.photos?.map(photo => photo.url) || [],
586591
inReplyTo: currentTweet.inReplyToStatusId
587592
? stringToUuid(
588593
currentTweet.inReplyToStatusId +

packages/plugin-bittensor/.npmignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
*
2+
3+
!dist/**
4+
!package.json
5+
!readme.md
6+
!tsup.config.ts

packages/plugin-bittensor/README.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# @elizaos/plugin-bittensor
2+
3+
A plugin that integrates BitMind's API into ElizaOS agents, enabling access to AI services and digital assets powered by the Bittensor network.
4+
5+
## Description
6+
The Bittensor plugin enables agents to interact with BitMind's API to access a range of AI capabilities on Bittensor's decentralized network, including inference, media generation, and deepfake detection services. Currently, the plugin offers image detection functionality to determine if images are AI-generated, with additional capabilities planned for future releases through the BitMind API.
7+
8+
## Installation
9+
10+
```bash
11+
pnpm install @elizaos/plugin-bittensor
12+
```
13+
14+
## Features
15+
16+
### SN34 - Deepfake Detection
17+
The plugin currently implements BitMind's SN34 subnet for AI-generated image detection. This subnet provides:
18+
- Real-time analysis of image authenticity
19+
- Confidence scoring for AI influence detection
20+
- Detailed response formatting with:
21+
- Binary classification (AI vs Natural image)
22+
- Percentage-based AI influence rating
23+
- Risk assessment based on confidence levels
24+
- Visual indicators for quick interpretation (🤖, 📸, ⚠️, ⚡, ✅)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import eslintGlobalConfig from "../../eslint.config.mjs";
2+
3+
export default [...eslintGlobalConfig];
+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"name": "@elizaos/plugin-bittensor",
3+
"version": "0.1.0",
4+
"type": "module",
5+
"main": "dist/index.js",
6+
"module": "dist/index.js",
7+
"types": "dist/index.d.ts",
8+
"exports": {
9+
".": {
10+
"types": "./dist/index.d.ts",
11+
"import": "./dist/index.js",
12+
"default": "./dist/index.js"
13+
},
14+
"./package.json": "./package.json"
15+
},
16+
"files": [
17+
"dist"
18+
],
19+
"dependencies": {
20+
"@elizaos/client-twitter": "workspace:*",
21+
"@elizaos/core": "workspace:*",
22+
"tsup": "8.3.5"
23+
},
24+
"scripts": {
25+
"build": "tsup --format esm --dts",
26+
"dev": "tsup --format esm --dts --watch",
27+
"lint": "eslint --fix --cache ."
28+
},
29+
"peerDependencies": {
30+
"whatwg-url": "7.1.0"
31+
}
32+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from "./sn34.ts";

0 commit comments

Comments
 (0)