Commit 5eb5514 1 parent 9eabb29 commit 5eb5514 Copy full SHA for 5eb5514
File tree 2 files changed +7
-6
lines changed
2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -52,4 +52,4 @@ COPY --from=builder /app/scripts ./scripts
52
52
COPY --from=builder /app/characters ./characters
53
53
54
54
# Set the command to run the application
55
- CMD ["pnpm" , "start" , "--non-interactive" ]
55
+ CMD ["pnpm" , "start" ]
Original file line number Diff line number Diff line change @@ -648,14 +648,15 @@ const startAgents = async () => {
648
648
}
649
649
650
650
// upload some agent functionality into directClient
651
- directClient . startAgent = async character => {
652
- // wrap it so we don't have to inject directClient later
653
- return startAgent ( character , directClient )
651
+ directClient . startAgent = async ( character ) => {
652
+ // wrap it so we don't have to inject directClient later
653
+ return startAgent ( character , directClient ) ;
654
654
} ;
655
655
directClient . start ( serverPort ) ;
656
656
657
- elizaLogger . log ( "Visit the following URL to chat with your agents:" ) ;
658
- elizaLogger . log ( `http://localhost:5173` ) ;
657
+ elizaLogger . log (
658
+ "Run `pnpm start:client` to start the client and visit the outputted URL (http://localhost:5173) to chat with your agents"
659
+ ) ;
659
660
} ;
660
661
661
662
startAgents ( ) . catch ( ( error ) => {
You can’t perform that action at this time.
0 commit comments