From c7a020dafbd55d02d1e232853bff9a62e4a4e8e0 Mon Sep 17 00:00:00 2001 From: Sean Sube Date: Mon, 3 Jun 2024 21:54:10 -0500 Subject: [PATCH] fix some arguments in admin guide --- docs/guides/admin.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/guides/admin.md b/docs/guides/admin.md index fa90e8c..ad8c52b 100644 --- a/docs/guides/admin.md +++ b/docs/guides/admin.md @@ -468,15 +468,20 @@ server: ```bash # Start the TaleWeave AI engine python3 -m taleweave.main \ + --config config.yml \ + --prompts prompts/llama-base.yml prompts/llama-quest.yml prompts/discord-en-us.yml \ --world worlds/outback-animals-1 \ - --world-template ./taleweave/prompts.yml:outback-animals \ + --world-template ./worlds.yml:outback-animals \ --discord \ + --render \ + --render-generated \ --server \ --rooms 3 \ --turns 30 \ --optional-actions \ --actions taleweave.systems.sim:init_actions \ --systems taleweave.systems.sim:init_logic + # TODO: add others ``` This will generate a relatively small world with 3 rooms or areas, run for 30 steps, then save the game and shut down.