@reminix/langgraph 0.0.1 → 0.0.2
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 +13 -2
- package/package.json +32 -3
package/README.md
CHANGED
|
@@ -1,13 +1,17 @@
|
|
|
1
1
|
# @reminix/langgraph
|
|
2
2
|
|
|
3
|
-
Reminix Runtime adapter for [LangGraph](https://langchain-ai.github.io/langgraphjs/).
|
|
3
|
+
Reminix Runtime adapter for [LangGraph](https://langchain-ai.github.io/langgraphjs/). Serve any LangGraph agent as a REST API.
|
|
4
|
+
|
|
5
|
+
> **Ready to go live?** [Deploy to Reminix](https://reminix.com/docs/deployment) for zero-config hosting, or [self-host](https://reminix.com/docs/deployment/self-hosting) on your own infrastructure.
|
|
4
6
|
|
|
5
7
|
## Installation
|
|
6
8
|
|
|
7
9
|
```bash
|
|
8
|
-
npm install @reminix/
|
|
10
|
+
npm install @reminix/langgraph @langchain/langgraph
|
|
9
11
|
```
|
|
10
12
|
|
|
13
|
+
This will also install `@reminix/runtime` as a dependency.
|
|
14
|
+
|
|
11
15
|
## Quick Start
|
|
12
16
|
|
|
13
17
|
```typescript
|
|
@@ -104,6 +108,13 @@ Conversational chat with message history.
|
|
|
104
108
|
|
|
105
109
|
For information about the server, endpoints, request/response formats, and more, see the [`@reminix/runtime`](https://www.npmjs.com/package/@reminix/runtime) package.
|
|
106
110
|
|
|
111
|
+
## Deployment
|
|
112
|
+
|
|
113
|
+
Ready to go live?
|
|
114
|
+
|
|
115
|
+
- **[Deploy to Reminix](https://reminix.com/docs/deployment)** - Zero-config cloud hosting
|
|
116
|
+
- **[Self-host](https://reminix.com/docs/deployment/self-hosting)** - Run on your own infrastructure
|
|
117
|
+
|
|
107
118
|
## Links
|
|
108
119
|
|
|
109
120
|
- [GitHub Repository](https://github.com/reminix-ai/runtime-typescript)
|
package/package.json
CHANGED
|
@@ -1,8 +1,37 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reminix/langgraph",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "Reminix adapter for LangGraph",
|
|
3
|
+
"version": "0.0.2",
|
|
4
|
+
"description": "Reminix adapter for LangGraph - serve agents as REST APIs",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
|
+
"author": {
|
|
7
|
+
"name": "Reminix Team",
|
|
8
|
+
"email": "team@reminix.com",
|
|
9
|
+
"url": "https://reminix.com"
|
|
10
|
+
},
|
|
11
|
+
"keywords": [
|
|
12
|
+
"ai",
|
|
13
|
+
"agents",
|
|
14
|
+
"langgraph",
|
|
15
|
+
"langchain",
|
|
16
|
+
"llm",
|
|
17
|
+
"reminix",
|
|
18
|
+
"typescript"
|
|
19
|
+
],
|
|
20
|
+
"homepage": "https://reminix.com",
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "git+https://github.com/reminix-ai/runtime-typescript.git",
|
|
24
|
+
"directory": "packages/langgraph"
|
|
25
|
+
},
|
|
26
|
+
"bugs": {
|
|
27
|
+
"url": "https://github.com/reminix-ai/runtime-typescript/issues"
|
|
28
|
+
},
|
|
29
|
+
"engines": {
|
|
30
|
+
"node": ">=18"
|
|
31
|
+
},
|
|
32
|
+
"publishConfig": {
|
|
33
|
+
"access": "public"
|
|
34
|
+
},
|
|
6
35
|
"type": "module",
|
|
7
36
|
"main": "./dist/index.js",
|
|
8
37
|
"types": "./dist/index.d.ts",
|
|
@@ -16,7 +45,7 @@
|
|
|
16
45
|
"dist"
|
|
17
46
|
],
|
|
18
47
|
"dependencies": {
|
|
19
|
-
"@reminix/runtime": "^0.0.
|
|
48
|
+
"@reminix/runtime": "^0.0.2"
|
|
20
49
|
},
|
|
21
50
|
"peerDependencies": {
|
|
22
51
|
"@langchain/langgraph": ">=1.0.0"
|