@reminix/langchain 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.
Files changed (2) hide show
  1. package/README.md +13 -2
  2. package/package.json +31 -3
package/README.md CHANGED
@@ -1,13 +1,17 @@
1
1
  # @reminix/langchain
2
2
 
3
- Reminix Runtime adapter for [LangChain](https://js.langchain.com). Deploy any LangChain runnable as a REST API.
3
+ Reminix Runtime adapter for [LangChain](https://js.langchain.com). Serve any LangChain runnable 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/runtime @reminix/langchain @langchain/core
10
+ npm install @reminix/langchain @langchain/core
9
11
  ```
10
12
 
13
+ This will also install `@reminix/runtime` as a dependency.
14
+
11
15
  ## Quick Start
12
16
 
13
17
  ```typescript
@@ -113,6 +117,13 @@ Conversational chat with message history.
113
117
 
114
118
  For information about the server, endpoints, request/response formats, and more, see the [`@reminix/runtime`](https://www.npmjs.com/package/@reminix/runtime) package.
115
119
 
120
+ ## Deployment
121
+
122
+ Ready to go live?
123
+
124
+ - **[Deploy to Reminix](https://reminix.com/docs/deployment)** - Zero-config cloud hosting
125
+ - **[Self-host](https://reminix.com/docs/deployment/self-hosting)** - Run on your own infrastructure
126
+
116
127
  ## Links
117
128
 
118
129
  - [GitHub Repository](https://github.com/reminix-ai/runtime-typescript)
package/package.json CHANGED
@@ -1,8 +1,36 @@
1
1
  {
2
2
  "name": "@reminix/langchain",
3
- "version": "0.0.1",
4
- "description": "Reminix adapter for LangChain",
3
+ "version": "0.0.2",
4
+ "description": "Reminix adapter for LangChain - 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
+ "langchain",
15
+ "llm",
16
+ "reminix",
17
+ "typescript"
18
+ ],
19
+ "homepage": "https://reminix.com",
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "git+https://github.com/reminix-ai/runtime-typescript.git",
23
+ "directory": "packages/langchain"
24
+ },
25
+ "bugs": {
26
+ "url": "https://github.com/reminix-ai/runtime-typescript/issues"
27
+ },
28
+ "engines": {
29
+ "node": ">=18"
30
+ },
31
+ "publishConfig": {
32
+ "access": "public"
33
+ },
6
34
  "type": "module",
7
35
  "main": "./dist/index.js",
8
36
  "types": "./dist/index.d.ts",
@@ -16,7 +44,7 @@
16
44
  "dist"
17
45
  ],
18
46
  "dependencies": {
19
- "@reminix/runtime": "^0.0.1"
47
+ "@reminix/runtime": "^0.0.2"
20
48
  },
21
49
  "peerDependencies": {
22
50
  "@langchain/core": ">=1.1.0"