We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 579dc50 + 3834c54 commit 153d242Copy full SHA for 153d242
packages/client-auto/src/index.ts
@@ -1,4 +1,4 @@
1
-import { Client, IAgentRuntime } from "@ai16z/eliza";
+import { Client, IAgentRuntime, elizaLogger } from "@ai16z/eliza";
2
3
export class AutoClient {
4
interval: NodeJS.Timeout;
@@ -10,7 +10,7 @@ export class AutoClient {
10
// start a loop that runs every x seconds
11
this.interval = setInterval(
12
async () => {
13
- console.log("running auto client...");
+ elizaLogger.log("running auto client...");
14
},
15
60 * 60 * 1000
16
); // 1 hour in milliseconds
packages/core/src/types.ts
@@ -611,6 +611,7 @@ export enum Clients {
611
TWITTER = "twitter",
612
TELEGRAM = "telegram",
613
FARCASTER = "farcaster",
614
+ AUTO = "auto",
615
}
616
/**
617
* Configuration for an agent character
0 commit comments