open-claude-code-proxy 1.1.1 → 1.1.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 +8 -20
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -39,25 +39,19 @@ Anthropic API
|
|
|
39
39
|
|
|
40
40
|
### Quick Start
|
|
41
41
|
|
|
42
|
-
#### Option 1:
|
|
43
|
-
|
|
44
|
-
```bash
|
|
45
|
-
npx open-claude-code-proxy
|
|
46
|
-
```
|
|
47
|
-
|
|
48
|
-
#### Option 2: Install globally
|
|
42
|
+
#### Option 1: Install globally (Recommended)
|
|
49
43
|
|
|
50
44
|
```bash
|
|
51
45
|
npm install -g open-claude-code-proxy
|
|
52
|
-
claude-proxy
|
|
46
|
+
claude-local-proxy
|
|
53
47
|
```
|
|
54
48
|
|
|
55
|
-
#### Option
|
|
49
|
+
#### Option 2: Clone and run
|
|
56
50
|
|
|
57
51
|
```bash
|
|
58
52
|
git clone https://github.com/lkyxuan/open-claude-code-proxy.git
|
|
59
53
|
cd open-claude-code-proxy
|
|
60
|
-
|
|
54
|
+
node cli.js
|
|
61
55
|
```
|
|
62
56
|
|
|
63
57
|
### Prerequisites
|
|
@@ -182,25 +176,19 @@ Anthropic API
|
|
|
182
176
|
|
|
183
177
|
### 快速开始
|
|
184
178
|
|
|
185
|
-
#### 方式 1:
|
|
186
|
-
|
|
187
|
-
```bash
|
|
188
|
-
npx open-claude-code-proxy
|
|
189
|
-
```
|
|
190
|
-
|
|
191
|
-
#### 方式 2: 全局安装
|
|
179
|
+
#### 方式 1: 全局安装(推荐)
|
|
192
180
|
|
|
193
181
|
```bash
|
|
194
182
|
npm install -g open-claude-code-proxy
|
|
195
|
-
claude-proxy
|
|
183
|
+
claude-local-proxy
|
|
196
184
|
```
|
|
197
185
|
|
|
198
|
-
#### 方式
|
|
186
|
+
#### 方式 2: 克隆运行
|
|
199
187
|
|
|
200
188
|
```bash
|
|
201
189
|
git clone https://github.com/lkyxuan/open-claude-code-proxy.git
|
|
202
190
|
cd open-claude-code-proxy
|
|
203
|
-
|
|
191
|
+
node cli.js
|
|
204
192
|
```
|
|
205
193
|
|
|
206
194
|
### 前置条件
|