Skip to content

Commit 31090f1

Browse files
authored
Revert "feat(new-plugin): suno Eliza plugin (elizaOS#2656)" (elizaOS#2673)
This reverts commit 78df869.
1 parent 78df869 commit 31090f1

14 files changed

+1
-411
lines changed

.env.example

-3
Original file line numberDiff line numberDiff line change
@@ -777,6 +777,3 @@ EMAIL_INCOMING_HOST=imap.example.com
777777
EMAIL_INCOMING_PORT=993 # Default port for secure IMAP
778778
EMAIL_INCOMING_USER=
779779
EMAIL_INCOMING_PASS=
780-
781-
# Suno AI Music Generation
782-
SUNO_API_KEY=

agent/package.json

-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,6 @@
116116
"@elizaos/plugin-0x": "workspace:*",
117117
"@elizaos/plugin-dkg": "workspace:*",
118118
"@elizaos/plugin-email": "workspace:*",
119-
"@elizaos/plugin-suno": "workspace:*",
120119
"readline": "1.3.0",
121120
"ws": "8.18.0",
122121
"yargs": "17.7.2"

agent/src/index.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,6 @@ import path from "path";
127127
import { fileURLToPath } from "url";
128128
import yargs from "yargs";
129129
import { emailPlugin } from "@elizaos/plugin-email";
130-
import { sunoPlugin } from "@elizaos/plugin-suno";
131130

132131
const __filename = fileURLToPath(import.meta.url); // get the resolved path to the file
133132
const __dirname = path.dirname(__filename); // get the name of the directory
@@ -1128,8 +1127,7 @@ export async function createAgent(
11281127
: null,
11291128
getSecret(character, "EMAIL_INCOMING_USER") && getSecret(character, "EMAIL_INCOMING_PASS") ||
11301129
getSecret(character, "EMAIL_OUTGOING_USER") && getSecret(character, "EMAIL_OUTGOING_PASS") ?
1131-
emailPlugin : null,
1132-
getSecret(character, "SUNO_API_KEY") ? sunoPlugin : null
1130+
emailPlugin : null
11331131
].filter(Boolean),
11341132
providers: [],
11351133
actions: [],

packages/plugin-suno/README.md

-134
This file was deleted.

packages/plugin-suno/eslint.config.mjs

-3
This file was deleted.

packages/plugin-suno/package.json

-23
This file was deleted.

packages/plugin-suno/src/actions/customGenerate.ts

-32
This file was deleted.

packages/plugin-suno/src/actions/extend.ts

-23
This file was deleted.

packages/plugin-suno/src/actions/generate.ts

-27
This file was deleted.

packages/plugin-suno/src/index.ts

-22
This file was deleted.

packages/plugin-suno/src/providers/suno.ts

-67
This file was deleted.

0 commit comments

Comments
 (0)