UNPKG

ragvault

Version:

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

13 lines (12 loc) 349 B
import inquirer from "inquirer"; export async function HeadOutCommands() { const { action } = await inquirer.prompt([ { type: "list", name: "action", message: "What would you like to do?", choices: ["Exit(Session will be saved)", "Logout", "Back"], }, ]); return action; }