initial commit

This commit is contained in:
2025-09-03 19:25:52 +00:00
parent f67abb34c7
commit 54ef2e003a
17 changed files with 3834 additions and 0 deletions

28
package.json Normal file
View File

@@ -0,0 +1,28 @@
{
"name": "jlinc-tracer",
"version": "0.1.0",
"description": "A LangChain callback plugin that logs events to the JLINC API.",
"main": "dist/tracer.js",
"types": "dist/tracer.d.ts",
"scripts": {
"test": "node test/test_tracer.js",
"build": "tsc && cp src/tracer.js dist/"
},
"keywords": [
"jlinc",
"langchain",
"plugin",
"tracer"
],
"author": "Ben Curtis",
"license": "MIT",
"dependencies": {
"axios": "^1.6.0",
"langchain": "^0.3.29"
},
"devDependencies": {
"@langchain/community": "^0.3.48",
"nodemon": "^3.1.10",
"typescript": "^5.8.3"
}
}