Spaces:
Runtime error
Runtime error
File size: 7,949 Bytes
cd8bd0a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 | /**
* Vision Bridge Auto-Router
* Automatically selects the fastest vision-capable model from available models.
*/
import { getResolvedModelCapabilities } from "@/lib/modelCapabilities";
import { PROVIDER_MODELS, PROVIDER_ID_TO_ALIAS } from "@omniroute/open-sse/config/providerModels";
export interface VisionModelCandidate {
modelId: string;
fullName: string; // provider/model format
priority: number; // lower = better (local models first)
averageLatencyMs: number;
lastUsedAt: number;
successRate: number;
}
export interface LatencyRecord {
modelId: string;
latencyMs: number;
timestamp: number;
success: boolean;
}
export interface VisionBridgeRouterConfig {
/** Fixed model to use (overrides auto-routing) */
fixedModel?: string;
/** Maximum number of fallback attempts */
maxFallbackAttempts: number;
/** Cache TTL for selection decisions (ms) */
selectionCacheTtlMs: number;
/** Minimum number of latency samples before trusting average */
minLatencySamples: number;
/** Models to exclude from auto-routing */
excludedModels: string[];
}
const DEFAULT_ROUTER_CONFIG: VisionBridgeRouterConfig = {
maxFallbackAttempts: 3,
selectionCacheTtlMs: 60_000, // 1 minute
minLatencySamples: 5,
excludedModels: [],
};
// In-memory latency tracker (would be Redis in production)
const latencyStore = new Map<string, LatencyRecord[]>();
const selectionCache = new Map<string, { modelId: string; expiresAt: number }>();
/**
* Record a latency measurement for a model.
*/
export function recordLatency(modelId: string, latencyMs: number, success: boolean): void {
const records = latencyStore.get(modelId) || [];
records.push({
modelId,
latencyMs,
timestamp: Date.now(),
success,
});
// Keep only last 100 records per model
if (records.length > 100) {
records.splice(0, records.length - 100);
}
latencyStore.set(modelId, records);
}
/**
* Calculate average latency for a model, considering only recent records.
*/
function calculateAverageLatency(modelId: string, windowMs: number = 300_000): number {
const records = latencyStore.get(modelId) || [];
const cutoff = Date.now() - windowMs;
const recentRecords = records.filter((r) => r.timestamp > cutoff && r.success);
if (recentRecords.length === 0) {
return Infinity; // No data = assume slow
}
const sum = recentRecords.reduce((acc, r) => acc + r.latencyMs, 0);
return sum / recentRecords.length;
}
/**
* Calculate success rate for a model.
*/
function calculateSuccessRate(modelId: string): number {
const records = latencyStore.get(modelId) || [];
if (records.length === 0) return 1.0; // No data = assume good
const recentRecords = records.slice(-50); // Last 50 attempts
const successes = recentRecords.filter((r) => r.success).length;
return successes / recentRecords.length;
}
/**
* Get all vision-capable models from the registry.
*/
function getVisionCapableModels(): VisionModelCandidate[] {
const candidates: VisionModelCandidate[] = [];
for (const [providerAlias, models] of Object.entries(PROVIDER_MODELS)) {
if (!Array.isArray(models)) continue;
for (const model of models) {
if (!model?.id) continue;
const fullModelId = `${providerAlias}/${model.id}`;
const caps = getResolvedModelCapabilities(fullModelId);
if (caps.supportsVision === true) {
// Determine priority based on provider type
let priority = 100;
if (providerAlias.startsWith("opencode-")) {
priority = 0; // Local/free models first
} else if (providerAlias === "openai" || providerAlias === "anthropic") {
priority = 50; // Major providers
} else {
priority = 75; // Other providers
}
candidates.push({
modelId: model.id,
fullName: fullModelId,
priority,
averageLatencyMs: calculateAverageLatency(fullModelId),
lastUsedAt: 0,
successRate: calculateSuccessRate(fullModelId),
});
}
}
}
return candidates;
}
/**
* Select the best vision model based on latency, priority, and success rate.
*/
function selectBestModel(
candidates: VisionModelCandidate[],
config: VisionBridgeRouterConfig
): VisionModelCandidate | null {
const filtered = candidates.filter((c) => {
// Exclude explicitly excluded models
if (config.excludedModels.includes(c.fullName)) return false;
if (config.excludedModels.includes(c.modelId)) return false;
// Exclude models with poor success rate (< 50%)
if (c.successRate < 0.5) return false;
return true;
});
if (filtered.length === 0) return null;
// Score each candidate: lower is better
// Score = priority * 1000 + averageLatencyMs
// This prioritizes local models, then fastest latency
const scored = filtered.map((c) => ({
...c,
score: c.priority * 1000 + (c.averageLatencyMs === Infinity ? 10000 : c.averageLatencyMs),
}));
scored.sort((a, b) => a.score - b.score);
return scored[0];
}
/**
* Get the best vision model for image description.
* Respects fixed model override if configured.
*/
export function getBestVisionModel(
config: Partial<VisionBridgeRouterConfig> = {}
): string {
const fullConfig = { ...DEFAULT_ROUTER_CONFIG, ...config };
// If fixed model is configured, use it
if (fullConfig.fixedModel) {
return fullConfig.fixedModel;
}
// Check selection cache — key includes excluded models to prevent cache pollution
// across different configurations
const cacheKey = fullConfig.excludedModels.length > 0
? `excl:${[...fullConfig.excludedModels].sort().join(",")}`
: "default";
const cached = selectionCache.get(cacheKey);
if (cached && cached.expiresAt > Date.now()) {
return cached.modelId;
}
// Get all vision-capable candidates
const candidates = getVisionCapableModels();
// Select best model
const best = selectBestModel(candidates, fullConfig);
if (!best) {
// Fallback to default
return "openai/gpt-4o-mini";
}
// Cache the selection
selectionCache.set(cacheKey, {
modelId: best.fullName,
expiresAt: Date.now() + fullConfig.selectionCacheTtlMs,
});
return best.fullName;
}
/**
* Get fallback models for retry logic.
*/
export function getFallbackModels(
excludeModel: string,
config: Partial<VisionBridgeRouterConfig> = {}
): string[] {
const fullConfig = { ...DEFAULT_ROUTER_CONFIG, ...config };
const candidates = getVisionCapableModels();
const filtered = candidates.filter(
(c) =>
c.fullName !== excludeModel &&
!fullConfig.excludedModels.includes(c.fullName) &&
c.successRate >= 0.5
);
// Sort by score
const scored = filtered.map((c) => ({
...c,
score: c.priority * 1000 + (c.averageLatencyMs === Infinity ? 10000 : c.averageLatencyMs),
}));
scored.sort((a, b) => a.score - b.score);
return scored.slice(0, fullConfig.maxFallbackAttempts - 1).map((c) => c.fullName);
}
/**
* Clear the selection cache (e.g., after config change).
*/
export function clearSelectionCache(): void {
selectionCache.clear();
}
/**
* Get latency statistics for debugging.
*/
export function getLatencyStats(): Record<string, { avg: number; samples: number; successRate: number }> {
const stats: Record<string, { avg: number; samples: number; successRate: number }> = {};
for (const [modelId, records] of latencyStore.entries()) {
const recentRecords = records.filter((r) => r.timestamp > Date.now() - 300_000);
if (recentRecords.length === 0) continue;
const avg = recentRecords.reduce((acc, r) => acc + r.latencyMs, 0) / recentRecords.length;
const successRate = recentRecords.filter((r) => r.success).length / recentRecords.length;
stats[modelId] = {
avg: Math.round(avg),
samples: recentRecords.length,
successRate: Math.round(successRate * 100) / 100,
};
}
return stats;
}
|