groove-dev 0.26.12 → 0.26.13
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.
- package/node_modules/@groove-dev/gui/dist/assets/{index-DXZbQ5ga.js → index-BluxaN32.js} +22 -22
- package/node_modules/@groove-dev/gui/dist/index.html +1 -1
- package/node_modules/@groove-dev/gui/src/components/agents/agent-config.jsx +5 -5
- package/package.json +1 -1
- package/packages/gui/dist/assets/{index-DXZbQ5ga.js → index-BluxaN32.js} +22 -22
- package/packages/gui/dist/index.html +1 -1
- package/packages/gui/src/components/agents/agent-config.jsx +5 -5
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
6
|
<link rel="icon" type="image/png" href="/favicon.png" />
|
|
7
7
|
<title>Groove GUI</title>
|
|
8
|
-
<script type="module" crossorigin src="/assets/index-
|
|
8
|
+
<script type="module" crossorigin src="/assets/index-BluxaN32.js"></script>
|
|
9
9
|
<link rel="modulepreload" crossorigin href="/assets/vendor-C0HXlhrU.js">
|
|
10
10
|
<link rel="modulepreload" crossorigin href="/assets/reactflow-BQPfi37R.js">
|
|
11
11
|
<link rel="modulepreload" crossorigin href="/assets/codemirror-BBL3i_JW.js">
|
|
@@ -271,9 +271,9 @@ export function AgentConfig({ agent }) {
|
|
|
271
271
|
{/* Quick model switch for current provider */}
|
|
272
272
|
{currentProvider?.models?.length > 1 && (
|
|
273
273
|
<div className="flex flex-wrap gap-1.5 mt-3 pt-3 border-t border-border-subtle">
|
|
274
|
-
{currentProvider.models.map((m) => {
|
|
274
|
+
{currentProvider.models.filter(m => !m.disabled).map((m) => {
|
|
275
275
|
const isCurrent = m.id === agent.model;
|
|
276
|
-
const canSelect =
|
|
276
|
+
const canSelect = true;
|
|
277
277
|
return (
|
|
278
278
|
<button
|
|
279
279
|
key={m.id}
|
|
@@ -370,9 +370,9 @@ export function AgentConfig({ agent }) {
|
|
|
370
370
|
)}
|
|
371
371
|
|
|
372
372
|
{/* Models */}
|
|
373
|
-
{available && models.length > 0 && models.map((m) => {
|
|
373
|
+
{available && models.filter(m => !m.disabled).length > 0 && models.filter(m => !m.disabled).map((m) => {
|
|
374
374
|
const isCurrent = p.id === agent.provider && m.id === agent.model;
|
|
375
|
-
const canSelect =
|
|
375
|
+
const canSelect = true;
|
|
376
376
|
return (
|
|
377
377
|
<button
|
|
378
378
|
key={m.id}
|
|
@@ -400,7 +400,7 @@ export function AgentConfig({ agent }) {
|
|
|
400
400
|
{isAlive && (
|
|
401
401
|
<div className="flex items-center gap-1.5 text-2xs text-text-3 font-sans mt-1.5">
|
|
402
402
|
<AlertCircle size={10} />
|
|
403
|
-
<span>
|
|
403
|
+
<span>Model changes apply on next rotation or respawn.</span>
|
|
404
404
|
</div>
|
|
405
405
|
)}
|
|
406
406
|
</ConfigSection>
|