diff --git a/helpers/index.ts b/helpers/index.ts index 010bc6bd1f49ac424ba7449cab6de2f8a1bf8022..237bbecae695ca7912c2660d28a574c620d89df2 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 e1b5824f2ae4bf71456fb80c4dbba5e2b3faf206..dc42fa06fda570b27fb1c6318f5ea58d90b62edc 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; };