File tree 2 files changed +8
-3
lines changed
2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,9 @@ export class DiscordClient extends EventEmitter {
37
37
38
38
constructor ( runtime : IAgentRuntime ) {
39
39
super ( ) ;
40
- this . apiToken = runtime . getSetting ( "DISCORD_API_TOKEN" ) as string ;
40
+ this . apiToken = runtime . getSetting (
41
+ "DISCORD_API_TOKEN_" + runtime . character . name . toUpperCase ( )
42
+ ) as string ;
41
43
this . client = new Client ( {
42
44
intents : [
43
45
GatewayIntentBits . Guilds ,
@@ -120,7 +122,10 @@ export class DiscordClient extends EventEmitter {
120
122
try {
121
123
await rest . put (
122
124
Routes . applicationCommands (
123
- this . runtime . getSetting ( "DISCORD_APPLICATION_ID" )
125
+ this . runtime . getSetting (
126
+ "DISCORD_APPLICATION_ID_" +
127
+ this . runtime . character . name . toUpperCase ( )
128
+ )
124
129
) ,
125
130
{ body : commands }
126
131
) ;
Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ export class TwitterGenerationClient extends ClientBase {
109
109
const newTweetContent = await generateText ( {
110
110
runtime : this . runtime ,
111
111
context,
112
- modelClass : ModelClass . LARGE ,
112
+ modelClass : ModelClass . SMALL ,
113
113
} ) ;
114
114
console . log ( "New Tweet:" , newTweetContent ) ;
115
115
log_to_file (
You can’t perform that action at this time.
0 commit comments