v1.3.1: Set Qwen as default provider for QwenClaw

This commit is contained in:
admin
2026-02-26 12:08:32 +04:00
Unverified
parent f15ff46120
commit 029bad83b6
5 changed files with 354 additions and 35 deletions

View File

@@ -51,6 +51,26 @@ This will:
4. Create default configuration
5. Add example scheduled job
### Configure Qwen Provider (Default)
QwenClaw uses **Qwen** as the default AI provider.
1. Get API key: https://platform.qwen.ai/
2. Create `rig-service/.env`:
```bash
cd rig-service
cp .env.example .env
```
3. Edit `.env`:
```env
QWEN_API_KEY=sk-your-key-here
QWEN_BASE_URL=https://api.qwen.ai/v1
RIG_DEFAULT_PROVIDER=qwen
RIG_DEFAULT_MODEL=qwen-plus
```
See `docs/QWEN-SETUP.md` for detailed setup.
---
## Manual Installation