mirror of
https://github.com/multica-ai/multica.git
synced 2026-07-31 00:40:46 +02:00
* feat(daemon): wire agy --model and model discovery for Antigravity agy 1.0.6 added a --model flag and an `agy models` catalog command, which were the #1 blocker in the earlier agy-backend review (MUL-3125). The antigravity backend already shipped but deliberately dropped opts.Model because agy 1.0.1 had no way to select a model. - buildAntigravityArgs now passes --model <display name> when opts.Model is set; the value is the exact `agy models` display string (spaces + parens), passed as a single exec arg so no shell quoting is needed. - Block --model in custom_args so it can't override the managed value. - ListModels("antigravity") enumerates via `agy models` (no static fallback: agy silently no-ops on unrecognised models, so a stale guess would turn a typo into a successful empty run). - ModelSelectionSupported now returns true for every built-in provider; the hook stays for any future model-less runtime. - Daemon probe reads MULTICA_ANTIGRAVITY_MODEL for the daemon-wide default. Co-authored-by: multica-agent <github@multica.ai> * docs(providers): mark Antigravity model selection as supported Antigravity gained --model in agy 1.0.6 (MUL-3125). Update the provider matrix + prose (en/zh/ja/ko) from "managed internally / no --model" to dynamic discovery via `agy models`, and refresh the now-stale picker comments. Flag the display-string (not slug) shape and agy's silent no-op on unrecognised values. Co-authored-by: multica-agent <github@multica.ai> * fix(daemon): reject unknown Antigravity model at spawn (MUL-3125) agy exits 0 with empty output on an unrecognised --model, so a stale/typo'd value would surface as a 'completed' but empty task. Validate opts.Model against the `agy models` catalog in Execute before spawning: a non-empty model the CLI does not advertise fails fast with an actionable error listing the real choices. opts.Model is the single funnel for agent.model and the MULTICA_ANTIGRAVITY_MODEL default, so this one check covers every source (UI free-text, API, persisted value, env) — addressing Elon's review that a UI-only guard is bypassable. Validation is fail-OPEN: if the catalog can't be discovered we pass the value through and let agy resolve it, so a discovery hiccup never blocks a run. Pure antigravityModelError() is unit-tested (valid / unknown / near-miss / empty-model / empty-catalog); verified live against real agy 1.0.6. Co-authored-by: multica-agent <github@multica.ai> --------- Co-authored-by: J <j@multica.ai> Co-authored-by: multica-agent <github@multica.ai>
255 lines
9.5 KiB
TypeScript
255 lines
9.5 KiB
TypeScript
"use client";
|
|
|
|
import { useEffect, useMemo, useState } from "react";
|
|
import { useQuery } from "@tanstack/react-query";
|
|
import { ChevronDown, Cpu, Loader2, Plus, Check, Info } from "lucide-react";
|
|
import { runtimeModelsOptions } from "@multica/core/runtimes";
|
|
import type { RuntimeModel } from "@multica/core/types";
|
|
import {
|
|
Popover,
|
|
PopoverTrigger,
|
|
PopoverContent,
|
|
} from "@multica/ui/components/ui/popover";
|
|
import { Input } from "@multica/ui/components/ui/input";
|
|
import { Label } from "@multica/ui/components/ui/label";
|
|
import { useT } from "../../i18n";
|
|
|
|
// ModelDropdown renders a searchable, creatable model picker for an agent.
|
|
// It fetches the supported-model catalog from the selected runtime — the
|
|
// daemon enumerates models on demand via heartbeat piggyback. Providers
|
|
// whose runtime ignores per-agent model selection return supported=false,
|
|
// and the dropdown renders disabled with an explanation instead of silently
|
|
// accepting a value the backend would ignore. No built-in provider does so
|
|
// today — Antigravity gained `--model` in agy 1.0.6 — but the path stays for
|
|
// any future model-less runtime.
|
|
export function ModelDropdown({
|
|
runtimeId,
|
|
runtimeOnline,
|
|
value,
|
|
onChange,
|
|
disabled,
|
|
}: {
|
|
runtimeId: string | null;
|
|
runtimeOnline: boolean;
|
|
value: string;
|
|
onChange: (value: string) => void;
|
|
disabled?: boolean;
|
|
}) {
|
|
const { t } = useT("agents");
|
|
const [open, setOpen] = useState(false);
|
|
const [search, setSearch] = useState("");
|
|
|
|
const modelsQuery = useQuery(
|
|
runtimeModelsOptions(runtimeOnline ? runtimeId : null),
|
|
);
|
|
|
|
const supported = modelsQuery.data?.supported ?? true;
|
|
// Stable reference for the model list — `?? []` would mint a fresh
|
|
// array each render and force every downstream useMemo to invalidate.
|
|
const models = useMemo(
|
|
() => modelsQuery.data?.models ?? [],
|
|
[modelsQuery.data],
|
|
);
|
|
const grouped = useMemo(() => groupByProvider(models), [models]);
|
|
|
|
// When the selected runtime reports it doesn't support per-agent
|
|
// model selection, clear any previously-saved value so we don't
|
|
// persist a ghost configuration that never takes effect.
|
|
useEffect(() => {
|
|
if (!supported && value !== "") {
|
|
onChange("");
|
|
}
|
|
}, [supported, value, onChange]);
|
|
|
|
const filtered = useMemo(() => {
|
|
if (!search.trim()) return grouped;
|
|
const needle = search.toLowerCase();
|
|
const out: Record<string, RuntimeModel[]> = {};
|
|
for (const [provider, list] of Object.entries(grouped)) {
|
|
const matches = list.filter(
|
|
(m) =>
|
|
m.id.toLowerCase().includes(needle) ||
|
|
m.label.toLowerCase().includes(needle),
|
|
);
|
|
if (matches.length > 0) out[provider] = matches;
|
|
}
|
|
return out;
|
|
}, [grouped, search]);
|
|
|
|
const trimmedSearch = search.trim();
|
|
const exactMatch = models.some(
|
|
(m) => m.id === trimmedSearch || m.label === trimmedSearch,
|
|
);
|
|
const canCreate = trimmedSearch.length > 0 && !exactMatch;
|
|
|
|
const select = (id: string) => {
|
|
onChange(id);
|
|
setOpen(false);
|
|
setSearch("");
|
|
};
|
|
|
|
const triggerLabel =
|
|
value ||
|
|
(disabled
|
|
? t(($) => $.model_dropdown.select_runtime_first)
|
|
: runtimeOnline
|
|
? t(($) => $.model_dropdown.default_provider)
|
|
: t(($) => $.model_dropdown.runtime_offline_manual));
|
|
|
|
if (!supported && !modelsQuery.isLoading) {
|
|
return (
|
|
<div className="flex flex-col min-w-0">
|
|
<div className="flex h-6 items-center">
|
|
<Label className="text-xs text-muted-foreground">{t(($) => $.model_dropdown.label)}</Label>
|
|
</div>
|
|
<div className="mt-1.5 flex items-start gap-2 rounded-lg border border-dashed border-border bg-muted/30 px-3 py-2.5 text-sm text-muted-foreground">
|
|
<Info className="mt-0.5 h-4 w-4 shrink-0" />
|
|
<div className="min-w-0">
|
|
<div>{t(($) => $.model_dropdown.managed_by_runtime_title)}</div>
|
|
<div className="mt-0.5 text-xs">
|
|
{t(($) => $.model_dropdown.managed_by_runtime_hint)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className="flex flex-col min-w-0">
|
|
<div className="flex h-6 items-center justify-between">
|
|
<Label className="text-xs text-muted-foreground">{t(($) => $.model_dropdown.label)}</Label>
|
|
{modelsQuery.isError && (
|
|
<span className="text-xs text-muted-foreground">{t(($) => $.model_dropdown.discovery_failed)}</span>
|
|
)}
|
|
</div>
|
|
<Popover open={open} onOpenChange={setOpen}>
|
|
<PopoverTrigger
|
|
disabled={disabled}
|
|
className="flex w-full min-w-0 items-center gap-3 rounded-lg border border-border bg-background px-3 py-2.5 mt-1.5 text-left text-sm transition-colors hover:bg-muted disabled:pointer-events-none disabled:opacity-50"
|
|
>
|
|
<Cpu className="h-4 w-4 shrink-0 text-muted-foreground" />
|
|
<div className="min-w-0 flex-1">
|
|
{/* Wrapped in flex to mirror RuntimePicker's trigger DOM. The
|
|
two pickers sit side-by-side; inline-in-flex vs block-line-
|
|
box height calc would otherwise leave them ~1px misaligned. */}
|
|
<div className="flex items-center gap-2">
|
|
<span className="truncate font-medium">{triggerLabel}</span>
|
|
</div>
|
|
{value && (
|
|
<div className="truncate text-xs text-muted-foreground">
|
|
{modelLabel(models, value)}
|
|
</div>
|
|
)}
|
|
</div>
|
|
<ChevronDown
|
|
className={`h-4 w-4 shrink-0 text-muted-foreground transition-transform ${open ? "rotate-180" : ""}`}
|
|
/>
|
|
</PopoverTrigger>
|
|
<PopoverContent
|
|
align="start"
|
|
className="w-[var(--anchor-width)] p-0 overflow-hidden"
|
|
>
|
|
<div className="border-b border-border p-2">
|
|
<Input
|
|
autoFocus
|
|
placeholder={t(($) => $.pickers.model_search_placeholder)}
|
|
value={search}
|
|
onChange={(e) => setSearch(e.target.value)}
|
|
className="h-8"
|
|
/>
|
|
</div>
|
|
<div className="max-h-72 overflow-y-auto p-1">
|
|
{modelsQuery.isLoading && (
|
|
<div className="flex items-center gap-2 px-3 py-6 text-sm text-muted-foreground">
|
|
<Loader2 className="h-4 w-4 animate-spin" />
|
|
{t(($) => $.pickers.model_discovering)}
|
|
</div>
|
|
)}
|
|
|
|
{!modelsQuery.isLoading &&
|
|
Object.entries(filtered).map(([provider, list]) => (
|
|
<div key={provider} className="mb-1">
|
|
{provider && (
|
|
<div className="px-2 pt-1.5 pb-0.5 text-xs font-medium uppercase tracking-wide text-muted-foreground">
|
|
{provider}
|
|
</div>
|
|
)}
|
|
{list.map((m) => (
|
|
<button
|
|
type="button"
|
|
key={m.id}
|
|
onClick={() => select(m.id)}
|
|
className={`flex w-full items-center gap-2 rounded-md px-3 py-2 text-left text-sm transition-colors ${
|
|
m.id === value ? "bg-accent" : "hover:bg-accent/50"
|
|
}`}
|
|
>
|
|
<div className="min-w-0 flex-1">
|
|
<div className="truncate font-medium">{m.label}</div>
|
|
{m.label !== m.id && (
|
|
<div className="truncate text-xs text-muted-foreground">
|
|
{m.id}
|
|
</div>
|
|
)}
|
|
</div>
|
|
{m.id === value && (
|
|
<Check className="h-4 w-4 shrink-0 text-primary" />
|
|
)}
|
|
</button>
|
|
))}
|
|
</div>
|
|
))}
|
|
|
|
{!modelsQuery.isLoading &&
|
|
Object.keys(filtered).length === 0 &&
|
|
!canCreate && (
|
|
<div className="px-3 py-6 text-center text-sm text-muted-foreground">
|
|
{t(($) => $.pickers.model_empty_with_dot)}
|
|
</div>
|
|
)}
|
|
|
|
{canCreate && (
|
|
<button
|
|
type="button"
|
|
onClick={() => select(trimmedSearch)}
|
|
className="flex w-full items-center gap-2 rounded-md px-3 py-2 text-left text-sm text-primary transition-colors hover:bg-accent/50"
|
|
>
|
|
<Plus className="h-4 w-4 shrink-0" />
|
|
<span className="truncate">
|
|
{t(($) => $.pickers.model_custom_use, { value: trimmedSearch })}
|
|
</span>
|
|
</button>
|
|
)}
|
|
|
|
{value && (
|
|
<button
|
|
type="button"
|
|
onClick={() => select("")}
|
|
className="mt-1 flex w-full items-center gap-2 border-t border-border px-3 py-2 text-left text-xs text-muted-foreground transition-colors hover:bg-accent/50"
|
|
>
|
|
{t(($) => $.model_dropdown.clear_full)}
|
|
</button>
|
|
)}
|
|
</div>
|
|
</PopoverContent>
|
|
</Popover>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function groupByProvider(models: RuntimeModel[]): Record<string, RuntimeModel[]> {
|
|
const out: Record<string, RuntimeModel[]> = {};
|
|
for (const m of models) {
|
|
const key = m.provider ?? "";
|
|
if (!out[key]) out[key] = [];
|
|
out[key].push(m);
|
|
}
|
|
return out;
|
|
}
|
|
|
|
function modelLabel(models: RuntimeModel[], id: string): string {
|
|
const found = models.find((m) => m.id === id);
|
|
if (!found) return "custom";
|
|
return found.provider ? found.provider : "model";
|
|
}
|