-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrangler.jsonc
More file actions
70 lines (70 loc) · 1.81 KB
/
Copy pathwrangler.jsonc
File metadata and controls
70 lines (70 loc) · 1.81 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
60
61
62
63
64
65
66
67
68
69
70
{
"$schema": "./node_modules/wrangler/config-schema.json",
"name": "hqbot",
"main": "src/worker.ts",
"compatibility_date": "2026-08-30",
"compatibility_flags": ["nodejs_compat"],
"workers_dev": true,
"preview_urls": true,
"triggers": { "crons": [] },
"assets": {
"binding": "ASSETS",
"not_found_handling": "single-page-application",
"run_worker_first": ["/api/*", "/agents/*", "/events/*", "/health"]
},
"ai": { "binding": "AI" },
"containers": [
{
"class_name": "Sandbox",
"image": "./Dockerfile.desktop",
"instance_type": "standard-1",
"max_instances": 3
}
],
"worker_loaders": [{ "binding": "LOADER" }],
"r2_buckets": [
{
"binding": "ARTIFACTS",
"bucket_name": "hqbot-artifacts"
}
],
"durable_objects": {
"bindings": [
{ "name": "HQBOT_AGENT", "class_name": "HQBotAgent" },
{ "name": "HQBOT_TEAMMATE", "class_name": "HQBotTeammate" },
{ "name": "SANDBOX", "class_name": "Sandbox" }
]
},
"migrations": [
{
"tag": "v1",
"new_sqlite_classes": ["HQBotAgent"]
},
{
"tag": "v2",
"new_sqlite_classes": ["HQBotTeammate"]
},
{
"tag": "v3",
"new_sqlite_classes": ["Sandbox"]
}
],
"version_metadata": { "binding": "CF_VERSION_METADATA" },
"vars": {
"HQBOT_ID": "hqbot",
"HQBOT_MODEL_ID": "@cf/zai-org/glm-5.3-flash",
"HQBOT_FALLBACK_MODEL_ID": "@cf/deepseek-ai/deepseek-v4-flash-0731",
"HQBOT_DAILY_TASK_LIMIT": "50",
"HQBOT_TASK_BUDGET_USD": "1",
"HQBOT_BOT_DAILY_BUDGET_USD": "2",
"HQBOT_GLOBAL_DAILY_BUDGET_USD": "5"
},
"secrets": {
"required": ["HQBOT_SETUP_TOKEN"]
},
"observability": {
"enabled": true,
"logs": { "enabled": true, "invocation_logs": false }
},
"limits": { "cpu_ms": 30000, "subrequests": 100 }
}