({
schema,
question,
conversationHistory,
currentQuery,
})
| 33 | } |
| 34 | |
| 35 | function generateQuery({ |
| 36 | schema, |
| 37 | question, |
| 38 | conversationHistory, |
| 39 | currentQuery, |
| 40 | }) { |
| 41 | return generateSqlQuery(schema, question, conversationHistory, currentQuery); |
| 42 | } |
| 43 | |
| 44 | module.exports = { |
| 45 | applyVariables: sqlProtocol.applyVariables, |
nothing calls this directly
no test coverage detected