We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b639d2f commit c2815f5Copy full SHA for c2815f5
multimodal/tarko/ui/src/components/gui-agent/StrategySwitch.tsx
@@ -10,6 +10,11 @@ interface StrategySwitchProps {
10
}
11
12
const strategyConfig = {
13
+ vnc: {
14
+ label: 'VNC',
15
+ icon: <FiMonitor size={12} />,
16
+ tooltip: 'Show realtime VNC stream',
17
+ },
18
beforeAction: {
19
label: 'Before',
20
icon: <FiClock size={12} />,
@@ -25,11 +30,6 @@ const strategyConfig = {
25
30
icon: <FiShuffle size={12} />,
26
31
tooltip: 'Show screenshots before and after action execution',
27
32
},
28
- vnc: {
29
- label: 'VNC',
- icon: <FiMonitor size={12} />,
- tooltip: 'Show realtime VNC stream',
- },
33
} as const;
34
35
export const StrategySwitch: React.FC<StrategySwitchProps> = ({
0 commit comments