Skip to content

Commit e49b051

Browse files
committed
fix bad merge
1 parent 0d80c0a commit e49b051

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

agent/src/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ import fs from "fs";
5858
import path from "path";
5959
import { fileURLToPath } from "url";
6060
import yargs from "yargs";
61-
import { character } from "./character.ts";
6261
import type { DirectClient } from "@ai16z/client-direct";
6362
import { Pool } from "pg";
6463
import { EncryptionUtil } from "@ai16z/eliza";
@@ -645,7 +644,7 @@ export function getGlobalDirectClient(): DirectClient | null {
645644
}
646645

647646
const startAgents = async () => {
648-
const directClient = await DirectClientInterface.start();
647+
const directClient = new DirectClient();
649648
const serverPort = parseInt(settings.SERVER_PORT || "3000");
650649
setGlobalDirectClient(directClient as DirectClient);
651650
const args = parseArguments();
@@ -689,6 +688,7 @@ const startAgents = async () => {
689688

690689
startAgents().catch((error) => {
691690
elizaLogger.error("Unhandled error in startAgents:", error);
691+
console.log(error); // elizaLogger isn't showing the error
692692
process.exit(1); // Exit the process after logging
693693
});
694694

0 commit comments

Comments
 (0)