File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,6 @@ import fs from "fs";
58
58
import path from "path" ;
59
59
import { fileURLToPath } from "url" ;
60
60
import yargs from "yargs" ;
61
- import { character } from "./character.ts" ;
62
61
import type { DirectClient } from "@ai16z/client-direct" ;
63
62
import { Pool } from "pg" ;
64
63
import { EncryptionUtil } from "@ai16z/eliza" ;
@@ -645,7 +644,7 @@ export function getGlobalDirectClient(): DirectClient | null {
645
644
}
646
645
647
646
const startAgents = async ( ) => {
648
- const directClient = await DirectClientInterface . start ( ) ;
647
+ const directClient = new DirectClient ( ) ;
649
648
const serverPort = parseInt ( settings . SERVER_PORT || "3000" ) ;
650
649
setGlobalDirectClient ( directClient as DirectClient ) ;
651
650
const args = parseArguments ( ) ;
@@ -689,6 +688,7 @@ const startAgents = async () => {
689
688
690
689
startAgents ( ) . catch ( ( error ) => {
691
690
elizaLogger . error ( "Unhandled error in startAgents:" , error ) ;
691
+ console . log ( error ) ; // elizaLogger isn't showing the error
692
692
process . exit ( 1 ) ; // Exit the process after logging
693
693
} ) ;
694
694
You can’t perform that action at this time.
0 commit comments