-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathkri.config.ts
More file actions
25 lines (25 loc) · 908 Bytes
/
Copy pathkri.config.ts
File metadata and controls
25 lines (25 loc) · 908 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
export default {
target: "https://your-website.com",
agent: "claude-3-haiku",
tools: ["web-scraper", "form-filler", "click-selector", "navigation-tracker"],
memory: true,
uiOverlay: true,
daemon: true,
voice: {
enabled: true,
engine: "annyang", // annyang (browser) | whisper (server-side)
continuous: true, // keep listening after each command
language: "en-US", // BCP-47 language tag
keywords: { // quick voice shortcuts
"go back": "navigate back",
"scroll down": "scroll down 500",
"scroll up": "scroll up 500",
"take a screenshot": "screenshot",
},
},
daemonConfig: {
intervalMs: 30000, // how often to check for DOM changes
autoRepair: true, // auto-repair broken selectors via LLM
maxRepairsPerCycle: 5, // cap repairs per monitoring cycle
},
};