UNPKG

mongodb-rag

Version:

RAG (Retrieval Augmented Generation) library for MongoDB Vector Search

33 lines (29 loc) 573 B
// bin/commands/index.js // Configuration commands export { showConfig, editConfig, clearConfig, resetConfig, setIndexName } from './config/index.js'; // Index commands export { createIndex, showIndexes, deleteIndex, testIndex } from './index/index.js'; // Data manipulation commands export { searchDocuments, ingestData, generateEmbedding, askQuestion, startChatSession } from './data/index.js'; // Initialization commands export { init, testConnection } from './init/index.js';