@reminix/anthropic 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 +32 -3
package/README.md CHANGED
@@ -1,13 +1,17 @@
1
1
  # @reminix/anthropic
2
2
 
3
- Reminix Runtime adapter for the [Anthropic API](https://docs.anthropic.com/). Deploy Claude models as a REST API.
3
+ Reminix Runtime adapter for the [Anthropic API](https://docs.anthropic.com/). Serve Claude models 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/anthropic @anthropic-ai/sdk
10
+ npm install @reminix/anthropic @anthropic-ai/sdk
9
11
  ```
10
12
 
13
+ This will also install `@reminix/runtime` as a dependency.
14
+
11
15
  ## Quick Start
12
16
 
13
17
  ```typescript
@@ -122,6 +126,13 @@ Conversational chat with message history.
122
126
 
123
127
  For information about the server, endpoints, request/response formats, and more, see the [`@reminix/runtime`](https://www.npmjs.com/package/@reminix/runtime) package.
124
128
 
129
+ ## Deployment
130
+
131
+ Ready to go live?
132
+
133
+ - **[Deploy to Reminix](https://reminix.com/docs/deployment)** - Zero-config cloud hosting
134
+ - **[Self-host](https://reminix.com/docs/deployment/self-hosting)** - Run on your own infrastructure
135
+
125
136
  ## Links
126
137
 
127
138
  - [GitHub Repository](https://github.com/reminix-ai/runtime-typescript)
package/package.json CHANGED
@@ -1,8 +1,37 @@
1
1
  {
2
2
  "name": "@reminix/anthropic",
3
- "version": "0.0.1",
4
- "description": "Reminix adapter for Anthropic",
3
+ "version": "0.0.2",
4
+ "description": "Reminix adapter for Anthropic - 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
+ "anthropic",
15
+ "claude",
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/anthropic"
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.1"
48
+ "@reminix/runtime": "^0.0.2"
20
49
  },
21
50
  "peerDependencies": {
22
51
  "@anthropic-ai/sdk": ">=0.71.0"