Skip to content

Commit d962442

Browse files
authored
Merge pull request elizaOS#2007 from elizaOS/bug/fix-auto-client
fix: Auto Client bug
2 parents 75e9de5 + f415a16 commit d962442

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

agent/src/index.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,8 @@ export async function initializeClients(
422422
character.clients?.map((str) => str.toLowerCase()) || [];
423423
elizaLogger.log("initializeClients", clientTypes, "for", character.name);
424424

425-
if (clientTypes.includes(Clients.DIRECT)) {
425+
// Start Auto Client if "auto" detected as a configured client
426+
if (clientTypes.includes(Clients.AUTO)) {
426427
const autoClient = await AutoClientInterface.start(runtime);
427428
if (autoClient) clients.auto = autoClient;
428429
}

0 commit comments

Comments
 (0)