We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3ac8116 + e30a734 commit d3ee3a1Copy full SHA for d3ee3a1
Dockerfile
@@ -52,4 +52,4 @@ COPY --from=builder /app/scripts ./scripts
52
COPY --from=builder /app/characters ./characters
53
54
# Set the command to run the application
55
-CMD ["pnpm", "start"]
+CMD ["pnpm", "start", "--non-interactive"]
agent/src/index.ts
@@ -485,7 +485,9 @@ const startAgents = async () => {
485
}
486
487
elizaLogger.log("Chat started. Type 'exit' to quit.");
488
- chat();
+ if (!args["non-interactive"]) {
489
+ chat();
490
+ }
491
};
492
493
startAgents().catch((error) => {
0 commit comments