-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.yaml.example
More file actions
59 lines (45 loc) · 2.63 KB
/
config.yaml.example
File metadata and controls
59 lines (45 loc) · 2.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# OpenClaw API Status Skill Configuration
# Place this at: ~/.openclaw/api-status.yaml
api_status:
# ──────────────────────────────────────────
# Balance Warning Thresholds
# ──────────────────────────────────────────
# Warn when any USD balance drops below this amount
warn_below_usd: 5.00
# Warn when usage exceeds this percentage of limit
warn_usage_pct: 80
# ──────────────────────────────────────────
# Provider Settings
# ──────────────────────────────────────────
# Providers to skip even if API key is configured
# Useful for providers you don't actively use
skip_providers: []
# Example:
# skip_providers:
# - huggingface
# - cohere
# ──────────────────────────────────────────
# Report Storage
# ──────────────────────────────────────────
# Automatically save reports after each check
save_reports: false
# Directory to save reports (supports ~ for home)
save_path: "~/openclaw/reports/"
# ──────────────────────────────────────────
# Currency Conversion
# ──────────────────────────────────────────
# Approximate CNY → USD rate for Deepseek and Moonshot display
# Update periodically for accuracy
cny_to_usd_rate: 0.138
# ──────────────────────────────────────────
# Request Settings
# ──────────────────────────────────────────
# Timeout in seconds per provider API call
request_timeout_seconds: 10
# ──────────────────────────────────────────
# Scheduling (if using OpenClaw task scheduler)
# ──────────────────────────────────────────
# schedule:
# enabled: false
# cron: "0 9 * * 1" # Every Monday at 9am
# notify: "chat" # chat | file | both