We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 75e9de5 + f415a16 commit d962442Copy full SHA for d962442
agent/src/index.ts
@@ -422,7 +422,8 @@ export async function initializeClients(
422
character.clients?.map((str) => str.toLowerCase()) || [];
423
elizaLogger.log("initializeClients", clientTypes, "for", character.name);
424
425
- if (clientTypes.includes(Clients.DIRECT)) {
+ // Start Auto Client if "auto" detected as a configured client
426
+ if (clientTypes.includes(Clients.AUTO)) {
427
const autoClient = await AutoClientInterface.start(runtime);
428
if (autoClient) clients.auto = autoClient;
429
}
0 commit comments