23 lines
535 B
Plaintext
23 lines
535 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
|
|
|
|
# Model providers (get keys from respective platforms)
|
|
# OpenAI: https://platform.openai.com/api-keys
|
|
OPENAI_API_KEY=your-openai-api-key-here
|
|
|
|
# Anthropic: https://console.anthropic.com/settings/keys
|
|
ANTHROPIC_API_KEY=your-anthropic-api-key-here
|
|
|
|
# Qwen: (if using Qwen API)
|
|
# QWEN_API_KEY=your-qwen-api-key-here
|
|
|
|
# Defaults
|
|
RIG_DEFAULT_PROVIDER=openai
|
|
RIG_DEFAULT_MODEL=gpt-4o
|