( action string, declaredWidth, declaredHeight int, )
| 322 | } |
| 323 | |
| 324 | func (*computerUseTool) desktopAction( |
| 325 | action string, |
| 326 | declaredWidth, declaredHeight int, |
| 327 | ) workspacesdk.DesktopAction { |
| 328 | return workspacesdk.DesktopAction{ |
| 329 | Action: action, |
| 330 | ScaledWidth: &declaredWidth, |
| 331 | ScaledHeight: &declaredHeight, |
| 332 | } |
| 333 | } |
| 334 | |
| 335 | func (t *computerUseTool) wait(ctx context.Context, durationMillis int64) { |
| 336 | d := durationMillis |
no outgoing calls
no test coverage detected