UNPKG

ragvault

Version:

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

13 lines (12 loc) 357 B
import inquirer from "inquirer"; export async function promptUnauthenticatedUser() { const { action } = await inquirer.prompt([ { type: "list", name: "action", message: "What would you like to do?", choices: ["Login", "Register", "Reset Password", "Exit"], }, ]); return action; }