initial checkin

This commit is contained in:
Dave Horton
2024-04-10 16:30:41 -04:00
commit 39d2611cc3
13 changed files with 2215 additions and 0 deletions

22
package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "talk-to-your-llm",
"version": "0.0.1",
"description": "jambonz websocket application",
"main": "app.js",
"scripts": {
"start": "node app",
"jslint": "eslint app.js lib"
},
"author": "",
"license": "MIT",
"dependencies": {
"@jambonz/node-client-ws": "^0.1.41",
"bent": "^7.3.12",
"openai": "^4.33.0",
"pino": "^8.20.0"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-plugin-promise": "^6.1.1"
}
}