From d7bcefa81c1ed238bb476cb53245d30476068d88 Mon Sep 17 00:00:00 2001
From: Motoki saito <stmtk1@users.noreply.github.com>
Date: Tue, 30 Jan 2024 17:24:35 +0900
Subject: [PATCH] add --vector-db option to create-llama (#473)

---
 index.ts | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/index.ts b/index.ts
index 935637e6..26592ec1 100644
--- a/index.ts
+++ b/index.ts
@@ -132,6 +132,13 @@ const program = new Commander.Command(packageJson.name)
     `
 
   Choose an action after installation. For example, 'runApp' or 'dependencies'. The default option is just to generate the app.
+`,
+  )
+  .option(
+    "--vector-db <vectorDb>",
+    `
+
+  Select which vector database you would like to use, such as 'none', 'pg' or 'mongo'. The default option is not to use a vector database and use the local filesystem instead ('none').
 `,
   )
   .allowUnknownOption()
-- 
GitLab