Skip to content
Snippets Groups Projects
Commit d7bcefa8 authored by Motoki saito's avatar Motoki saito Committed by GitHub
Browse files

add --vector-db option to create-llama (#473)

parent b7b30a53
No related branches found
No related tags found
No related merge requests found
......@@ -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()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment