From 7e245b14f05a440cc99b0b0738451fad381eb6de Mon Sep 17 00:00:00 2001
From: Marcus Schiesser <mail@marcusschiesser.de>
Date: Wed, 15 Nov 2023 11:06:26 +0700
Subject: [PATCH] fix: label for simple chat

---
 README.md | 2 +-
 index.ts  | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md
index 5c04f349..29326943 100644
--- a/README.md
+++ b/README.md
@@ -31,7 +31,7 @@ You will be asked for the name of your project, along with other configuration o
 Here is an example:
 
 ```bash
->> npm create llama
+>> npm create llama@latest
 Need to install the following packages:
   create-llama@latest
 Ok to proceed? (y) y
diff --git a/index.ts b/index.ts
index 8d87124d..14571b74 100644
--- a/index.ts
+++ b/index.ts
@@ -290,8 +290,8 @@ async function run(): Promise<void> {
             choices: [
               { title: "ContextChatEngine", value: "context" },
               {
-                title: "SimpleChatEngine",
-                value: "simple (no data, just chat)",
+                title: "SimpleChatEngine (no data, just chat)",
+                value: "simple",
               },
             ],
             initial: 0,
-- 
GitLab