@reminix/langgraph 0.0.11 → 0.0.13

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 +2 -2
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -39,7 +39,7 @@ serve({ agents: [agent], port: 8080 });
39
39
  ```
40
40
 
41
41
  Your agent is now available at:
42
- - `POST /agents/my-agent/execute` - Execute the agent
42
+ - `POST /agents/my-agent/invoke` - Execute the agent
43
43
 
44
44
  ## API Reference
45
45
 
@@ -75,7 +75,7 @@ LangGraph uses a state-based approach. The adapter:
75
75
 
76
76
  ## Endpoint Input/Output Formats
77
77
 
78
- ### POST /agents/{name}/execute
78
+ ### POST /agents/{name}/invoke
79
79
 
80
80
  Execute the graph. Input keys are passed directly to the graph.
81
81
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reminix/langgraph",
3
- "version": "0.0.11",
3
+ "version": "0.0.13",
4
4
  "description": "Reminix adapter for LangGraph - serve agents as REST APIs",
5
5
  "license": "Apache-2.0",
6
6
  "author": {
@@ -46,7 +46,7 @@
46
46
  "LICENSE"
47
47
  ],
48
48
  "dependencies": {
49
- "@reminix/runtime": "^0.0.11"
49
+ "@reminix/runtime": "^0.0.13"
50
50
  },
51
51
  "peerDependencies": {
52
52
  "@langchain/langgraph": ">=1.0.0"
@@ -54,9 +54,9 @@
54
54
  "devDependencies": {
55
55
  "@langchain/core": "^1.1.12",
56
56
  "@langchain/langgraph": "^1.0.15",
57
- "@types/node": "^22.0.0",
57
+ "@types/node": "^25.0.9",
58
58
  "typescript": "^5.9.3",
59
- "vitest": "^3.1.3"
59
+ "vitest": "^4.0.17"
60
60
  },
61
61
  "scripts": {
62
62
  "build": "tsc",