rajesh1501's picture
Upload folder using huggingface_hub
a85c9b8 verified
raw
history blame contribute delete
186 Bytes
const { EmbedChainApp } = require("./embedchain/embedchain");
async function App() {
const app = new EmbedChainApp();
await app.init_app;
return app;
}
module.exports = { App };