UNPKG

ragvault

Version:

Securely manage and query your private data using a local vector database. Your private RAG.

13 lines (12 loc) 352 B
import inquirer from "inquirer"; export async function AskAQuestionCommands() { const { action } = await inquirer.prompt([ { type: "list", name: "action", message: "What would you like to do?", choices: ["Using Local LLM", "Using Remote LLM", "Back"], }, ]); return action; }