organize modules

This commit is contained in:
Daniel Avila 2023-02-25 09:04:32 -05:00
parent 78c9f3dc74
commit 0f6fcd5928
5 changed files with 111 additions and 78 deletions

9
app/index.js Normal file
View file

@ -0,0 +1,9 @@
const { titleConvo } = require('./chatgpt');
const { askClient } = require('./chatgpt-client');
const { askBing } = require('./bingai');
module.exports = {
titleConvo,
askClient,
askBing,
};