more proactive vlm agent features

This commit is contained in:
joyzhuo
2026-03-29 00:58:22 -04:00
parent 15943b4759
commit 275a53ab40
7 changed files with 431 additions and 120 deletions

View File

@@ -13,6 +13,13 @@ struct LockInBroApp: App {
ContentView()
.environment(auth)
.environment(session)
.onChange(of: session.isSessionActive) { _, isActive in
if isActive {
FloatingPanelController.shared.show(session: session)
} else {
FloatingPanelController.shared.close()
}
}
}
.defaultSize(width: 840, height: 580)