fix: custom model compatibility with antigravity/mitm (PR #250)

This commit is contained in:
mxskeen
2026-03-06 16:44:16 +07:00
committed by decolua
parent d347de8092
commit 97860a0629
9 changed files with 88 additions and 41 deletions
+1 -1
View File
@@ -23,7 +23,7 @@
"lowdb": "^7.0.1", "lowdb": "^7.0.1",
"monaco-editor": "^0.55.1", "monaco-editor": "^0.55.1",
"next": "^16.1.6", "next": "^16.1.6",
"node-forge": "^1.3.1", "node-forge": "^1.3.3",
"node-machine-id": "^1.1.12", "node-machine-id": "^1.1.12",
"open": "^11.0.0", "open": "^11.0.0",
"ora": "^9.1.0", "ora": "^9.1.0",
@@ -22,6 +22,7 @@ export default function MitmToolCard({
apiKeys, apiKeys,
activeProviders, activeProviders,
hasActiveProviders, hasActiveProviders,
modelAliases = {},
cloudEnabled, cloudEnabled,
onDnsChange, onDnsChange,
}) { }) {
@@ -74,7 +75,7 @@ export default function MitmToolCard({
}; };
const handleModelSelect = (model) => { const handleModelSelect = (model) => {
if (!currentEditingAlias) return; if (!currentEditingAlias || model.isPlaceholder) return;
const updated = { ...modelMappings, [currentEditingAlias]: model.value }; const updated = { ...modelMappings, [currentEditingAlias]: model.value };
setModelMappings(updated); setModelMappings(updated);
saveMappings(updated); saveMappings(updated);
@@ -104,7 +105,7 @@ export default function MitmToolCard({
}); });
const data = await res.json(); const data = await res.json();
if (!res.ok) throw new Error(data.error || "Failed to toggle DNS"); if (!res.ok) throw new Error(data.error || "Failed to toggle DNS");
if (action === "enable") { if (action === "enable") {
setMessage({ setMessage({
type: "success", type: "success",
@@ -116,7 +117,7 @@ export default function MitmToolCard({
text: "DNS disabled — traffic restored", text: "DNS disabled — traffic restored",
}); });
} }
setShowPasswordModal(false); setShowPasswordModal(false);
setSudoPassword(""); setSudoPassword("");
onDnsChange?.(data); onDnsChange?.(data);
@@ -303,6 +304,7 @@ export default function MitmToolCard({
onSelect={handleModelSelect} onSelect={handleModelSelect}
selectedModel={currentEditingAlias ? modelMappings[currentEditingAlias] : null} selectedModel={currentEditingAlias ? modelMappings[currentEditingAlias] : null}
activeProviders={activeProviders} activeProviders={activeProviders}
modelAliases={modelAliases}
title={`Select model for ${currentEditingAlias}`} title={`Select model for ${currentEditingAlias}`}
/> />
</> </>
@@ -2,7 +2,8 @@
import { useState, useEffect } from "react"; import { useState, useEffect } from "react";
import { CLI_TOOLS } from "@/shared/constants/cliTools"; import { CLI_TOOLS } from "@/shared/constants/cliTools";
import { getModelsByProviderId, PROVIDER_ID_TO_ALIAS } from "@/shared/constants/models"; import { getModelsByProviderId } from "@/shared/constants/models";
import { isOpenAICompatibleProvider, isAnthropicCompatibleProvider } from "@/shared/constants/providers";
import { MitmServerCard, MitmToolCard } from "@/app/(dashboard)/dashboard/cli-tools/components"; import { MitmServerCard, MitmToolCard } from "@/app/(dashboard)/dashboard/cli-tools/components";
const MITM_TOOL_IDS = ["antigravity", "copilot"]; const MITM_TOOL_IDS = ["antigravity", "copilot"];
@@ -10,6 +11,7 @@ const MITM_TOOL_IDS = ["antigravity", "copilot"];
export default function MitmPageClient() { export default function MitmPageClient() {
const [connections, setConnections] = useState([]); const [connections, setConnections] = useState([]);
const [apiKeys, setApiKeys] = useState([]); const [apiKeys, setApiKeys] = useState([]);
const [modelAliases, setModelAliases] = useState({});
const [cloudEnabled, setCloudEnabled] = useState(false); const [cloudEnabled, setCloudEnabled] = useState(false);
const [expandedTool, setExpandedTool] = useState(null); const [expandedTool, setExpandedTool] = useState(null);
const [mitmStatus, setMitmStatus] = useState({ running: false, certExists: false, dnsStatus: {}, hasCachedPassword: false }); const [mitmStatus, setMitmStatus] = useState({ running: false, certExists: false, dnsStatus: {}, hasCachedPassword: false });
@@ -17,6 +19,7 @@ export default function MitmPageClient() {
useEffect(() => { useEffect(() => {
fetchConnections(); fetchConnections();
fetchApiKeys(); fetchApiKeys();
fetchAliases();
fetchCloudSettings(); fetchCloudSettings();
}, []); }, []);
@@ -40,6 +43,16 @@ export default function MitmPageClient() {
} catch { /* ignore */ } } catch { /* ignore */ }
}; };
const fetchAliases = async () => {
try {
const res = await fetch("/api/models/alias");
if (res.ok) {
const data = await res.json();
setModelAliases(data.aliases || {});
}
} catch { /* ignore */ }
};
const fetchCloudSettings = async () => { const fetchCloudSettings = async () => {
try { try {
const res = await fetch("/api/settings"); const res = await fetch("/api/settings");
@@ -54,7 +67,11 @@ export default function MitmPageClient() {
const hasActiveProviders = () => { const hasActiveProviders = () => {
const active = getActiveProviders(); const active = getActiveProviders();
return active.some(conn => getModelsByProviderId(conn.provider).length > 0); return active.some(conn =>
getModelsByProviderId(conn.provider).length > 0 ||
isOpenAICompatibleProvider(conn.provider) ||
isAnthropicCompatibleProvider(conn.provider)
);
}; };
const mitmTools = Object.entries(CLI_TOOLS).filter(([id]) => MITM_TOOL_IDS.includes(id)); const mitmTools = Object.entries(CLI_TOOLS).filter(([id]) => MITM_TOOL_IDS.includes(id));
@@ -82,6 +99,7 @@ export default function MitmPageClient() {
apiKeys={apiKeys} apiKeys={apiKeys}
activeProviders={getActiveProviders()} activeProviders={getActiveProviders()}
hasActiveProviders={hasActiveProviders()} hasActiveProviders={hasActiveProviders()}
modelAliases={modelAliases}
cloudEnabled={cloudEnabled} cloudEnabled={cloudEnabled}
onDnsChange={(data) => setMitmStatus(prev => ({ ...prev, dnsStatus: data.dnsStatus ?? prev.dnsStatus }))} onDnsChange={(data) => setMitmStatus(prev => ({ ...prev, dnsStatus: data.dnsStatus ?? prev.dnsStatus }))}
/> />
+2
View File
@@ -1,6 +1,8 @@
import { NextResponse } from "next/server"; import { NextResponse } from "next/server";
import { getCombos, createCombo, getComboByName } from "@/lib/localDb"; import { getCombos, createCombo, getComboByName } from "@/lib/localDb";
export const dynamic = "force-dynamic";
// Validate combo name: only a-z, A-Z, 0-9, -, _ // Validate combo name: only a-z, A-Z, 0-9, -, _
const VALID_NAME_REGEX = /^[a-zA-Z0-9_-]+$/; const VALID_NAME_REGEX = /^[a-zA-Z0-9_-]+$/;
+2
View File
@@ -2,6 +2,8 @@ import { NextResponse } from "next/server";
import { getApiKeys, createApiKey } from "@/lib/localDb"; import { getApiKeys, createApiKey } from "@/lib/localDb";
import { getConsistentMachineId } from "@/shared/utils/machineId"; import { getConsistentMachineId } from "@/shared/utils/machineId";
export const dynamic = "force-dynamic";
// GET /api/keys - List API keys // GET /api/keys - List API keys
export async function GET() { export async function GET() {
try { try {
+2
View File
@@ -1,6 +1,8 @@
import { NextResponse } from "next/server"; import { NextResponse } from "next/server";
import { getModelAliases, setModelAlias, deleteModelAlias } from "@/models"; import { getModelAliases, setModelAlias, deleteModelAlias } from "@/models";
export const dynamic = "force-dynamic";
// GET /api/models/alias - Get all aliases // GET /api/models/alias - Get all aliases
export async function GET() { export async function GET() {
try { try {
+2
View File
@@ -3,6 +3,8 @@ import { createProviderNode, getProviderNodes } from "@/models";
import { OPENAI_COMPATIBLE_PREFIX, ANTHROPIC_COMPATIBLE_PREFIX } from "@/shared/constants/providers"; import { OPENAI_COMPATIBLE_PREFIX, ANTHROPIC_COMPATIBLE_PREFIX } from "@/shared/constants/providers";
import { generateId } from "@/shared/utils"; import { generateId } from "@/shared/utils";
export const dynamic = "force-dynamic";
const OPENAI_COMPATIBLE_DEFAULTS = { const OPENAI_COMPATIBLE_DEFAULTS = {
baseUrl: "https://api.openai.com/v1", baseUrl: "https://api.openai.com/v1",
}; };
+7 -5
View File
@@ -3,6 +3,8 @@ import { getProviderConnections, createProviderConnection, getProviderNodeById,
import { APIKEY_PROVIDERS } from "@/shared/constants/config"; import { APIKEY_PROVIDERS } from "@/shared/constants/config";
import { isOpenAICompatibleProvider, isAnthropicCompatibleProvider } from "@/shared/constants/providers"; import { isOpenAICompatibleProvider, isAnthropicCompatibleProvider } from "@/shared/constants/providers";
export const dynamic = "force-dynamic";
// GET /api/providers - List all connections // GET /api/providers - List all connections
export async function GET() { export async function GET() {
try { try {
@@ -15,8 +17,8 @@ export async function GET() {
for (const node of nodes) { for (const node of nodes) {
if (node.id && node.name) nodeNameMap[node.id] = node.name; if (node.id && node.name) nodeNameMap[node.id] = node.name;
} }
} catch {} } catch { }
// Hide sensitive fields, enrich name for compatible providers // Hide sensitive fields, enrich name for compatible providers
const safeConnections = connections.map(c => { const safeConnections = connections.map(c => {
const isCompatible = isOpenAICompatibleProvider(c.provider) || isAnthropicCompatibleProvider(c.provider); const isCompatible = isOpenAICompatibleProvider(c.provider) || isAnthropicCompatibleProvider(c.provider);
@@ -47,9 +49,9 @@ export async function POST(request) {
const { provider, apiKey, name, priority, globalPriority, defaultModel, testStatus } = body; const { provider, apiKey, name, priority, globalPriority, defaultModel, testStatus } = body;
// Validation // Validation
const isValidProvider = APIKEY_PROVIDERS[provider] || const isValidProvider = APIKEY_PROVIDERS[provider] ||
isOpenAICompatibleProvider(provider) || isOpenAICompatibleProvider(provider) ||
isAnthropicCompatibleProvider(provider); isAnthropicCompatibleProvider(provider);
if (!provider || !isValidProvider) { if (!provider || !isValidProvider) {
return NextResponse.json({ error: "Invalid provider" }, { status: 400 }); return NextResponse.json({ error: "Invalid provider" }, { status: 400 });
+47 -30
View File
@@ -62,10 +62,10 @@ export default function ModelSelectModal({
// Group models by provider with priority order // Group models by provider with priority order
const groupedModels = useMemo(() => { const groupedModels = useMemo(() => {
const groups = {}; const groups = {};
// Get all active provider IDs from connections // Get all active provider IDs from connections
const activeConnectionIds = activeProviders.map(p => p.provider); const activeConnectionIds = activeProviders.map(p => p.provider);
// Only show connected providers (including both standard and custom) // Only show connected providers (including both standard and custom)
const providerIdsToShow = new Set([ const providerIdsToShow = new Set([
...activeConnectionIds, // Only connected providers ...activeConnectionIds, // Only connected providers
@@ -82,7 +82,7 @@ export default function ModelSelectModal({
const alias = PROVIDER_ID_TO_ALIAS[providerId] || providerId; const alias = PROVIDER_ID_TO_ALIAS[providerId] || providerId;
const providerInfo = allProviders[providerId] || { name: providerId, color: "#666" }; const providerInfo = allProviders[providerId] || { name: providerId, color: "#666" };
const isCustomProvider = isOpenAICompatibleProvider(providerId) || isAnthropicCompatibleProvider(providerId); const isCustomProvider = isOpenAICompatibleProvider(providerId) || isAnthropicCompatibleProvider(providerId);
if (providerInfo.passthroughModels) { if (providerInfo.passthroughModels) {
const aliasModels = Object.entries(modelAliases) const aliasModels = Object.entries(modelAliases)
.filter(([, fullModel]) => fullModel.startsWith(`${alias}/`)) .filter(([, fullModel]) => fullModel.startsWith(`${alias}/`))
@@ -91,12 +91,12 @@ export default function ModelSelectModal({
name: aliasName, name: aliasName,
value: fullModel, value: fullModel,
})); }));
if (aliasModels.length > 0) { if (aliasModels.length > 0) {
// Check for custom name from providerNodes (for compatible providers) // Check for custom name from providerNodes (for compatible providers)
const matchedNode = providerNodes.find(node => node.id === providerId); const matchedNode = providerNodes.find(node => node.id === providerId);
const displayName = matchedNode?.name || providerInfo.name; const displayName = matchedNode?.name || providerInfo.name;
groups[providerId] = { groups[providerId] = {
name: displayName, name: displayName,
alias: alias, alias: alias,
@@ -105,31 +105,39 @@ export default function ModelSelectModal({
}; };
} }
} else if (isCustomProvider) { } else if (isCustomProvider) {
// Match provider node to get custom name // Find connection object to get prefix synchronously without waiting for providerNodes fetch
const connection = activeProviders.find(p => p.provider === providerId);
const matchedNode = providerNodes.find(node => node.id === providerId); const matchedNode = providerNodes.find(node => node.id === providerId);
const displayName = matchedNode?.name || providerInfo.name; const displayName = connection?.name || matchedNode?.name || providerInfo.name;
const nodePrefix = connection?.providerSpecificData?.prefix || matchedNode?.prefix || providerId;
// Get models from modelAliases using providerId (not prefix)
// modelAliases format: { alias: "providerId/modelId" } // Aliases are stored using the raw providerId as key (e.g. "openai-compatible-chat-<uuid>/glm-4.7"),
// so we must filter by providerId, not by the display prefix.
const nodeModels = Object.entries(modelAliases) const nodeModels = Object.entries(modelAliases)
.filter(([, fullModel]) => fullModel.startsWith(`${providerId}/`)) .filter(([, fullModel]) => fullModel.startsWith(`${providerId}/`))
.map(([aliasName, fullModel]) => ({ .map(([aliasName, fullModel]) => ({
id: fullModel.replace(`${providerId}/`, ""), id: fullModel.replace(`${providerId}/`, ""),
name: aliasName, name: aliasName,
value: fullModel, value: `${nodePrefix}/${fullModel.replace(`${providerId}/`, "")}`,
})); }));
// Only add to groups if there are models (consistent with other provider types) // Always show compatible providers that are connected, even with no aliases.
if (nodeModels.length > 0) { // When no aliases exist, show a placeholder so users know it's available.
groups[providerId] = { const modelsToShow = nodeModels.length > 0 ? nodeModels : [{
name: displayName, id: `__placeholder__${providerId}`,
alias: matchedNode?.prefix || providerId, name: `${nodePrefix}/model-id`,
color: providerInfo.color, value: `${nodePrefix}/model-id`,
models: nodeModels, isPlaceholder: true,
isCustom: true, }];
hasModels: true,
}; groups[providerId] = {
} name: displayName,
alias: nodePrefix,
color: providerInfo.color,
models: modelsToShow,
isCustom: true,
hasModels: nodeModels.length > 0,
};
} else { } else {
const models = getModelsByProviderId(providerId); const models = getModelsByProviderId(providerId);
if (models.length > 0) { if (models.length > 0) {
@@ -172,7 +180,7 @@ export default function ModelSelectModal({
); );
const providerNameMatches = group.name.toLowerCase().includes(query); const providerNameMatches = group.name.toLowerCase().includes(query);
if (matchedModels.length > 0 || providerNameMatches) { if (matchedModels.length > 0 || providerNameMatches) {
filtered[providerId] = { filtered[providerId] = {
...group, ...group,
@@ -236,8 +244,8 @@ export default function ModelSelectModal({
onClick={() => handleSelect({ id: combo.name, name: combo.name, value: combo.name })} onClick={() => handleSelect({ id: combo.name, name: combo.name, value: combo.name })}
className={` className={`
px-2 py-1 rounded-xl text-xs font-medium transition-all border hover:cursor-pointer px-2 py-1 rounded-xl text-xs font-medium transition-all border hover:cursor-pointer
${isSelected ${isSelected
? "bg-primary text-white border-primary" ? "bg-primary text-white border-primary"
: "bg-surface border-border text-text-main hover:border-primary/50 hover:bg-primary/5" : "bg-surface border-border text-text-main hover:border-primary/50 hover:bg-primary/5"
} }
`} `}
@@ -270,19 +278,28 @@ export default function ModelSelectModal({
<div className="flex flex-wrap gap-1.5"> <div className="flex flex-wrap gap-1.5">
{group.models.map((model) => { {group.models.map((model) => {
const isSelected = selectedModel === model.value; const isSelected = selectedModel === model.value;
const isPlaceholder = model.isPlaceholder;
return ( return (
<button <button
key={model.id} key={model.id}
onClick={() => handleSelect(model)} onClick={() => handleSelect(model)}
title={isPlaceholder ? "Select to pre-fill, then edit model ID in the input" : undefined}
className={` className={`
px-2 py-1 rounded-xl text-xs font-medium transition-all border hover:cursor-pointer px-2 py-1 rounded-xl text-xs font-medium transition-all border hover:cursor-pointer
${isSelected ${isPlaceholder
? "bg-primary text-white border-primary" ? "border-dashed border-border text-text-muted hover:border-primary/50 hover:text-primary bg-surface italic"
: "bg-surface border-border text-text-main hover:border-primary/50 hover:bg-primary/5" : isSelected
? "bg-primary text-white border-primary"
: "bg-surface border-border text-text-main hover:border-primary/50 hover:bg-primary/5"
} }
`} `}
> >
{model.name} {isPlaceholder ? (
<span className="flex items-center gap-1">
<span className="material-symbols-outlined text-[11px]">edit</span>
{model.name}
</span>
) : model.name}
</button> </button>
); );
})} })}