mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2024-11-11 09:10:13 +01:00
22 lines
462 B
JavaScript
22 lines
462 B
JavaScript
|
const { SqlAgentGetTableSchema } = require("./get-table-schema");
|
||
|
const { SqlAgentListDatabase } = require("./list-database");
|
||
|
const { SqlAgentListTables } = require("./list-table");
|
||
|
const { SqlAgentQuery } = require("./query");
|
||
|
|
||
|
const sqlAgent = {
|
||
|
name: "sql-agent",
|
||
|
startupConfig: {
|
||
|
params: {},
|
||
|
},
|
||
|
plugin: [
|
||
|
SqlAgentListDatabase,
|
||
|
SqlAgentListTables,
|
||
|
SqlAgentGetTableSchema,
|
||
|
SqlAgentQuery,
|
||
|
],
|
||
|
};
|
||
|
|
||
|
module.exports = {
|
||
|
sqlAgent,
|
||
|
};
|