@agent-inspect/langchain 6.14.0 → 6.14.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -0
  2. package/package.json +11 -3
package/README.md CHANGED
@@ -9,6 +9,7 @@ LangChain callback handler → local AgentInspect traces.
9
9
 
10
10
  - LangChain or LangGraph apps using `@langchain/core` callbacks
11
11
  - You want `persist: true` local JSONL without a hosted backend
12
+ - Evidence-first CI / TraceContract gates over LangGraph runs (`init --framework langgraph`)
12
13
 
13
14
  ## When not to use
14
15
 
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@agent-inspect/langchain",
3
- "version": "6.14.0",
3
+ "version": "6.14.1",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "private": false,
7
- "description": "LangChain.js callback adapter for AgentInspect (in-memory or persisted JSONL execution events)",
7
+ "description": "LangChain.js / LangGraph callback adapter for AgentInspect local execution trees and Evidence workflows",
8
8
  "repository": {
9
9
  "type": "git",
10
10
  "url": "git+https://github.com/rajudandigam/agent-inspect.git",
@@ -38,7 +38,7 @@
38
38
  "@langchain/core": "^1.0.0"
39
39
  },
40
40
  "dependencies": {
41
- "agent-inspect": "6.14.0"
41
+ "agent-inspect": "6.14.1"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@langchain/core": "^1.2.4",
@@ -47,6 +47,14 @@
47
47
  "publishConfig": {
48
48
  "access": "public"
49
49
  },
50
+ "keywords": [
51
+ "langchain",
52
+ "langgraph",
53
+ "agent-inspect",
54
+ "typescript",
55
+ "ai-agents",
56
+ "tracing"
57
+ ],
50
58
  "scripts": {
51
59
  "build": "pnpm --workspace-root exec tsup --config tsup.langchain.config.ts",
52
60
  "test": "vitest run -c ../../vitest.config.ts"