query-agent
Version:
An AI-powered database query agent that integrates with existing Express apps using Socket.IO and HTTP routes
14 lines (10 loc) • 317 B
JavaScript
// CommonJS wrapper for query-agent
// This will be built into dist/index.cjs
import init from "./index.js";
import { agentLog } from "./work.js";
// Export for CommonJS
module.exports = init;
module.exports.init = init;
module.exports.agentLog = agentLog;
// Also export as default
module.exports.default = init;