From ae8c5f97c61f041f29b2866b5fac2b565faee0b6 Mon Sep 17 00:00:00 2001
From: Marcus Schiesser <mail@marcusschiesser.de>
Date: Thu, 1 Feb 2024 15:26:48 +0700
Subject: [PATCH] fix: clarify CLI output for create-llama

---
 helpers/index.ts | 5 ++---
 questions.ts     | 7 +++++--
 2 files changed, 7 insertions(+), 5 deletions(-)

diff --git a/helpers/index.ts b/helpers/index.ts
index 010bc6bd..237bbeca 100644
--- a/helpers/index.ts
+++ b/helpers/index.ts
@@ -79,7 +79,7 @@ const createEnvLocalFile = async (
   }
 };
 
-const installDependencies = async (
+const generateContextData = async (
   framework: TemplateFramework,
   packageManager?: PackageManager,
   openAiKey?: string,
@@ -211,13 +211,12 @@ export const installTemplate = async (
         props.postInstallAction === "runApp" ||
         props.postInstallAction === "dependencies"
       ) {
-        await installDependencies(
+        await generateContextData(
           props.framework,
           props.packageManager,
           props.openAiKey,
           props.vectorDb,
         );
-        console.log("installed dependencies");
       }
     }
   } else {
diff --git a/questions.ts b/questions.ts
index e1b5824f..dc42fa06 100644
--- a/questions.ts
+++ b/questions.ts
@@ -113,7 +113,7 @@ const getDataSourceChoices = (framework: TemplateFramework) => {
   ];
   if (process.platform === "win32" || process.platform === "darwin") {
     choices.push({
-      title: `Use a local file (${supportedContextFileTypes})`,
+      title: `Use a local file (${supportedContextFileTypes.join(", ")})`,
       value: "localFile",
     });
     choices.push({
@@ -122,7 +122,10 @@ const getDataSourceChoices = (framework: TemplateFramework) => {
     });
   }
   if (framework === "fastapi") {
-    choices.push({ title: "Use website content", value: "web" });
+    choices.push({
+      title: "Use website content (requires Chrome)",
+      value: "web",
+    });
   }
   return choices;
 };
-- 
GitLab