We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6cab7ef commit ee4db04Copy full SHA for ee4db04
agent/src/index.ts
@@ -10,6 +10,7 @@ import {
10
AgentRuntime,
11
CacheManager,
12
Character,
13
+ Clients,
14
DbCacheAdapter,
15
defaultCharacter,
16
elizaLogger,
@@ -354,7 +355,9 @@ export async function initializeClients(
354
355
}
356
357
if (clientTypes.includes(Clients.TWITTER)) {
- TwitterClientInterface.enableSearch = !isFalsish(getSecret(character, "TWITTER_SEARCH_ENABLE"));
358
+ TwitterClientInterface.enableSearch = !isFalsish(
359
+ getSecret(character, "TWITTER_SEARCH_ENABLE")
360
+ );
361
const twitterClient = await TwitterClientInterface.start(runtime);
362
// TODO: This might be incorrect, please test if you are concerned about this functionality
363
// By default we have disabled this because it is annoying for users
0 commit comments