ragvault
Version:
Securely manage and query your private data using a local vector database. Your private RAG.
18 lines (17 loc) • 463 B
JavaScript
import inquirer from "inquirer";
export async function SettingsCommands() {
const { action } = await inquirer.prompt([
{
type: "list",
name: "action",
message: "Here are the list of settings",
choices: [
"Add AI Providers Keys",
"Choose Remote LLM",
"Choose Embedding Model",
"Back",
],
},
]);
return action;
}