Skip to content

Commit 1417f0b

Browse files
mods
1 parent dce8bae commit 1417f0b

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

core/src/clients/discord/index.ts

+7-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ export class DiscordClient extends EventEmitter {
3737

3838
constructor(runtime: IAgentRuntime) {
3939
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;
4143
this.client = new Client({
4244
intents: [
4345
GatewayIntentBits.Guilds,
@@ -120,7 +122,10 @@ export class DiscordClient extends EventEmitter {
120122
try {
121123
await rest.put(
122124
Routes.applicationCommands(
123-
this.runtime.getSetting("DISCORD_APPLICATION_ID")
125+
this.runtime.getSetting(
126+
"DISCORD_APPLICATION_ID_" +
127+
this.runtime.character.name.toUpperCase()
128+
)
124129
),
125130
{ body: commands }
126131
);

core/src/clients/twitter/generate.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ export class TwitterGenerationClient extends ClientBase {
109109
const newTweetContent = await generateText({
110110
runtime: this.runtime,
111111
context,
112-
modelClass: ModelClass.LARGE,
112+
modelClass: ModelClass.SMALL,
113113
});
114114
console.log("New Tweet:", newTweetContent);
115115
log_to_file(

0 commit comments

Comments
 (0)