llamaindex
Version:
<p align="center"> <img height="100" width="100" alt="LlamaIndex logo" src="https://ts.llamaindex.ai/square.svg" /> </p> <h1 align="center">LlamaIndex.TS</h1> <h3 align="center"> Data framework for your LLM application. </h3>
31 lines (30 loc) • 1.09 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "SimpleDocumentStore", {
enumerable: true,
get: function() {
return _SimpleDocumentStore.SimpleDocumentStore;
}
});
_export_star(require("@llamaindex/core/storage/chat-store"), exports);
_export_star(require("@llamaindex/core/storage/doc-store"), exports);
_export_star(require("@llamaindex/core/storage/index-store"), exports);
_export_star(require("@llamaindex/core/storage/kv-store"), exports);
const _SimpleDocumentStore = require("./docStore/SimpleDocumentStore.js");
_export_star(require("./FileSystem.js"), exports);
_export_star(require("./StorageContext.js"), exports);
function _export_star(from, to) {
Object.keys(from).forEach(function(k) {
if (k !== "default" && !Object.prototype.hasOwnProperty.call(to, k)) {
Object.defineProperty(to, k, {
enumerable: true,
get: function() {
return from[k];
}
});
}
});
return from;
}