-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
32 lines (32 loc) · 961 Bytes
/
openclaw.plugin.json
File metadata and controls
32 lines (32 loc) · 961 Bytes
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
{
"id": "ratelimit-retry",
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"budgetWindowHours": {
"type": "number",
"default": 5,
"minimum": 1,
"description": "Budget reset window in hours (aligned to UTC clock boundaries)"
},
"maxRetryAttempts": {
"type": "number",
"default": 3,
"minimum": 1,
"description": "Maximum retry attempts per session before abandoning"
},
"checkIntervalMinutes": {
"type": "number",
"default": 5,
"minimum": 1,
"description": "How often to check for pending retries (minutes)"
},
"retryMessage": {
"type": "string",
"default": "Continue where you left off. The previous attempt failed due to a rate limit that has now reset.",
"description": "Message sent to the session to resume the conversation"
}
}
}
}