Implement LLaMA chat client as interaction

This commit is contained in:
James Shiffer
2024-02-06 17:57:10 -08:00
parent a68f632125
commit c37d2eace8
6 changed files with 558 additions and 60 deletions

View File

@@ -4,9 +4,9 @@
"dependencies": {
"discord.js": "^14.13.0",
"dotenv": "^16.3.1",
"modelfusion": "^0.135.1",
"jsdom": "^22.1.0",
"node-fetch": "^3.3.2",
"modelfusion": "^0.135.1",
"node-fetch": "^2.7.0",
"sqlite": "^5.0.1",
"sqlite3": "^5.1.6"
},
@@ -15,6 +15,7 @@
},
"scripts": {
"start": "npx tsc && node bot.js",
"sync": "npx tsc && node sync.js"
"sync": "npx tsc && node sync.js",
"deploy": "npx tsc && node deploy.js"
}
}