groove-dev 0.8.1 → 0.8.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4,7 +4,7 @@
4
4
  <meta charset="UTF-8" />
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
6
  <title>GROOVE</title>
7
- <script type="module" crossorigin src="/assets/index-BO95Rm1F.js"></script>
7
+ <script type="module" crossorigin src="/assets/index-B5E3l1CX.js"></script>
8
8
  <link rel="stylesheet" crossorigin href="/assets/index-CPzm9ZE9.css">
9
9
  </head>
10
10
  <body>
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@groove-dev/gui",
3
- "version": "0.8.1",
3
+ "version": "0.8.2",
4
4
  "description": "GROOVE GUI — visual agent control plane",
5
5
  "license": "FSL-1.1-Apache-2.0",
6
6
  "type": "module",
@@ -176,7 +176,9 @@ export default function AgentActions({ agent }) {
176
176
  </div>
177
177
 
178
178
  {/* Model selector */}
179
- <div style={{ ...styles.sectionLabel, marginTop: 20 }}>MODEL</div>
179
+ <div style={{ ...styles.sectionLabel, marginTop: 20 }}>
180
+ MODEL {agent.routingMode === 'auto' && <span style={{ color: 'var(--accent)', fontWeight: 400, textTransform: 'none' }}> — auto-routed</span>}
181
+ </div>
180
182
  <select
181
183
  style={styles.select}
182
184
  value={selectedModel}
@@ -235,7 +237,7 @@ export default function AgentActions({ agent }) {
235
237
  <ConfigRow label="ID" value={agent.id} />
236
238
  <ConfigRow label="Role" value={agent.role} />
237
239
  <ConfigRow label="Provider" value={agent.provider} />
238
- <ConfigRow label="Model" value={agent.model || 'default'} />
240
+ <ConfigRow label="Model" value={agent.routingMode === 'auto' ? `auto (${agent.model || 'pending'})` : agent.model || 'default'} />
239
241
  <ConfigRow label="Scope" value={(agent.scope || []).join(', ') || 'unrestricted'} />
240
242
  <ConfigRow label="Status" value={agent.status} />
241
243
  </div>