27 lines
736 B
Plaintext
27 lines
736 B
Plaintext
# QwenClaw Rig Service Configuration
|
|
|
|
# Server settings
|
|
RIG_HOST=127.0.0.1
|
|
RIG_PORT=8080
|
|
|
|
# Database path for vector store
|
|
RIG_DATABASE_PATH=./rig-store.db
|
|
|
|
# Default provider (QwenClaw uses Qwen by default)
|
|
RIG_DEFAULT_PROVIDER=qwen
|
|
RIG_DEFAULT_MODEL=qwen-plus
|
|
|
|
# Qwen API Configuration
|
|
# Get your Qwen API key from: https://platform.openai.com/
|
|
# Or use compatible API endpoints (OpenAI-compatible)
|
|
QWEN_API_KEY=your-qwen-api-key-here
|
|
QWEN_BASE_URL=https://api.qwen.ai/v1
|
|
|
|
# Alternative: OpenAI (fallback)
|
|
# Get from: https://platform.openai.com/api-keys
|
|
OPENAI_API_KEY=your-openai-api-key-here
|
|
|
|
# Alternative: Anthropic (fallback)
|
|
# Get from: https://console.anthropic.com/settings/keys
|
|
ANTHROPIC_API_KEY=your-anthropic-api-key-here
|