[Sync] llm stuff

This commit is contained in:
Coja
2026-09-17 20:58:21 +02:00
parent ed7e34552d
commit d8f6b30e2c
52 changed files with 2233 additions and 237 deletions
+3 -1
View File
@@ -49,7 +49,9 @@ function notify(title: string, body: string): void {
}
export default function (pi: ExtensionAPI) {
pi.on("agent_end", async () => {
// `agent_end` fires after each low-level run; Pi may still retry, compact,
// or continue with queued follow-ups. Notify only after the full run settles.
pi.on("agent_settled", async () => {
notify("Pi", "Ready for input");
});
}