@reminix/langchain 0.0.10 → 0.0.12
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.
- package/README.md +2 -2
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -35,7 +35,7 @@ serve({ agents: [agent], port: 8080 });
|
|
|
35
35
|
```
|
|
36
36
|
|
|
37
37
|
Your agent is now available at:
|
|
38
|
-
- `POST /agents/my-chatbot/
|
|
38
|
+
- `POST /agents/my-chatbot/invoke` - Execute the agent
|
|
39
39
|
|
|
40
40
|
## API Reference
|
|
41
41
|
|
|
@@ -84,7 +84,7 @@ serve({ agents: [agent], port: 8080 });
|
|
|
84
84
|
|
|
85
85
|
## Endpoint Input/Output Formats
|
|
86
86
|
|
|
87
|
-
### POST /agents/{name}/
|
|
87
|
+
### POST /agents/{name}/invoke
|
|
88
88
|
|
|
89
89
|
Execute the agent. Input keys are passed directly to the LangChain runnable.
|
|
90
90
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reminix/langchain",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.12",
|
|
4
4
|
"description": "Reminix adapter for LangChain - serve agents as REST APIs",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -45,16 +45,16 @@
|
|
|
45
45
|
"LICENSE"
|
|
46
46
|
],
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@reminix/runtime": "^0.0.
|
|
48
|
+
"@reminix/runtime": "^0.0.12"
|
|
49
49
|
},
|
|
50
50
|
"peerDependencies": {
|
|
51
51
|
"@langchain/core": ">=1.1.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"@langchain/core": "^1.1.12",
|
|
55
|
-
"@types/node": "^
|
|
55
|
+
"@types/node": "^25.0.9",
|
|
56
56
|
"typescript": "^5.9.3",
|
|
57
|
-
"vitest": "^
|
|
57
|
+
"vitest": "^4.0.17"
|
|
58
58
|
},
|
|
59
59
|
"scripts": {
|
|
60
60
|
"build": "tsc",
|