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>
27 lines (26 loc) • 841 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "OpenAIContextAwareAgent", {
enumerable: true,
get: function() {
return OpenAIContextAwareAgent;
}
});
const _openai = _export_star(require("@llamaindex/openai"), exports);
const _contextAwareMixin = require("./contextAwareMixin.js");
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;
}
const OpenAIContextAwareAgent = (0, _contextAwareMixin.withContextAwareness)(_openai.OpenAIAgent);