GetStatus gets the agent status Exposed to Wails frontend as: window.go.desktop.WailsBridge.GetStatus(agentID)
(agentID string)
| 132 | // GetStatus gets the agent status |
| 133 | // Exposed to Wails frontend as: window.go.desktop.WailsBridge.GetStatus(agentID) |
| 134 | func (b *WailsBridge) GetStatus(agentID string) (*BackendResponse, error) { |
| 135 | return b.handler(&FrontendMessage{ |
| 136 | ID: generateID(), |
| 137 | Type: MsgTypeGetStatus, |
| 138 | AgentID: agentID, |
| 139 | }) |
| 140 | } |
| 141 | |
| 142 | // GetHistory gets conversation history |
| 143 | // Exposed to Wails frontend as: window.go.desktop.WailsBridge.GetHistory(agentID) |
nothing calls this directly
no test coverage detected