@qwen-code/sdk 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 +18 -2
- package/dist/cli/cli.js +415354 -0
- package/dist/cli/vendor/ripgrep/COPYING +3 -0
- package/dist/cli/vendor/ripgrep/arm64-darwin/rg +0 -0
- package/dist/cli/vendor/ripgrep/arm64-linux/rg +0 -0
- package/dist/cli/vendor/ripgrep/x64-darwin/rg +0 -0
- package/dist/cli/vendor/ripgrep/x64-linux/rg +0 -0
- package/dist/cli/vendor/ripgrep/x64-win32/rg.exe +0 -0
- package/dist/index.cjs +6 -10
- package/dist/index.d.ts +1 -2
- package/dist/index.mjs +5 -9
- package/package.json +5 -4
package/README.md
CHANGED
|
@@ -13,9 +13,8 @@ npm install @qwen-code/sdk
|
|
|
13
13
|
## Requirements
|
|
14
14
|
|
|
15
15
|
- Node.js >= 20.0.0
|
|
16
|
-
- [Qwen Code](https://github.com/QwenLM/qwen-code) >= 0.4.0 (stable) installed and accessible in PATH
|
|
17
16
|
|
|
18
|
-
>
|
|
17
|
+
> From v0.1.1, the CLI is bundled with the SDK. So no standalone CLI installation is needed.
|
|
19
18
|
|
|
20
19
|
## Quick Start
|
|
21
20
|
|
|
@@ -372,6 +371,23 @@ try {
|
|
|
372
371
|
}
|
|
373
372
|
```
|
|
374
373
|
|
|
374
|
+
## FAQ / Troubleshooting
|
|
375
|
+
|
|
376
|
+
### Version 0.1.0 Requirements
|
|
377
|
+
|
|
378
|
+
If you're using SDK version **0.1.0**, please note the following requirements:
|
|
379
|
+
|
|
380
|
+
#### Qwen Code Installation Required
|
|
381
|
+
|
|
382
|
+
Version 0.1.0 requires [Qwen Code](https://github.com/QwenLM/qwen-code) **>= 0.4.0** to be installed separately and accessible in your PATH.
|
|
383
|
+
|
|
384
|
+
```bash
|
|
385
|
+
# Install Qwen Code globally
|
|
386
|
+
npm install -g qwen-code@^0.4.0
|
|
387
|
+
```
|
|
388
|
+
|
|
389
|
+
**Note**: From version **0.1.1** onwards, the CLI is bundled with the SDK, so no separate Qwen Code installation is needed.
|
|
390
|
+
|
|
375
391
|
## License
|
|
376
392
|
|
|
377
393
|
Apache-2.0 - see [LICENSE](./LICENSE) for details.
|