From 569299724ab81836c8ab0b6459b80f084e31c5f8 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) --- packages/create-llama/index.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/packages/create-llama/index.ts b/packages/create-llama/index.ts index 935637e6d..26592ec1a 100644 --- a/packages/create-llama/index.ts +++ b/packages/create-llama/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