nvicode 0.1.0 → 0.1.1
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 +23 -10
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,36 +2,34 @@
|
|
|
2
2
|
|
|
3
3
|
Run Claude Code through NVIDIA-hosted models using a local Anthropic-compatible gateway.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## Quickstart
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
Install the published package:
|
|
8
8
|
|
|
9
9
|
```sh
|
|
10
10
|
npm install -g nvicode
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
Save your NVIDIA API key:
|
|
14
14
|
|
|
15
15
|
```sh
|
|
16
|
-
|
|
17
|
-
npm run build
|
|
18
|
-
ln -sf "$(pwd)/dist/cli.js" ~/.local/bin/nvicode
|
|
16
|
+
nvicode auth
|
|
19
17
|
```
|
|
20
18
|
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
Choose a model and save your NVIDIA API key:
|
|
19
|
+
Choose a model:
|
|
24
20
|
|
|
25
21
|
```sh
|
|
26
22
|
nvicode select model
|
|
27
23
|
```
|
|
28
24
|
|
|
29
|
-
Launch Claude Code through
|
|
25
|
+
Launch Claude Code through NVIDIA:
|
|
30
26
|
|
|
31
27
|
```sh
|
|
32
28
|
nvicode launch claude
|
|
33
29
|
```
|
|
34
30
|
|
|
31
|
+
## Commands
|
|
32
|
+
|
|
35
33
|
Useful commands:
|
|
36
34
|
|
|
37
35
|
```sh
|
|
@@ -45,6 +43,21 @@ The launcher starts a local proxy on `127.0.0.1:8788`, points Claude Code at it
|
|
|
45
43
|
|
|
46
44
|
If no NVIDIA API key is saved yet, `nvicode` prompts for one on first use.
|
|
47
45
|
|
|
46
|
+
## Requirements
|
|
47
|
+
|
|
48
|
+
- Claude Code must already be installed on the machine.
|
|
49
|
+
- Node.js 20 or newer is required to install `nvicode`.
|
|
50
|
+
|
|
51
|
+
## Local Development
|
|
52
|
+
|
|
53
|
+
These steps are only for contributors working from a git checkout. End users do not need them.
|
|
54
|
+
|
|
55
|
+
```sh
|
|
56
|
+
npm install
|
|
57
|
+
npm run build
|
|
58
|
+
ln -sf "$(pwd)/dist/cli.js" ~/.local/bin/nvicode
|
|
59
|
+
```
|
|
60
|
+
|
|
48
61
|
## Notes
|
|
49
62
|
|
|
50
63
|
- `thinking` is disabled by default because some NVIDIA reasoning models can consume the entire output budget and return no visible answer to Claude Code.
|