@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 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
- > **Note for nvm users**: If you use nvm to manage Node.js versions, the SDK may not be able to auto-detect the Qwen Code executable. You should explicitly set the `pathToQwenExecutable` option to the full path of the `qwen` binary.
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.