Spaces:
Running
Running
File size: 10,202 Bytes
bd28470 | 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 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 | /**
* Multi-Model LLM Client β All FREE on NVIDIA NIM
*
* 3 models, 1 provider, 1 API key, $0 cost:
*
* Priority 1: MiniMax M2.7 β Best reasoning, 4M context, built-in CoT
* Priority 2: LLaMA 3.3 70B β Reliable, proven, 128K context
* Priority 3: LLaMA 3.1 8B β Fast, cheap, for simple tasks
* Priority 4: Deterministic β Zero LLM, zero hallucination
*
* All on: https://integrate.api.nvidia.com/v1
* All use: same NVIDIA_API_KEY
*
* MiniMax M2.7 special feature:
* Response includes `reasoning_content` field β chain-of-thought
* reasoning happens AUTOMATICALLY inside the model.
* We don't need to prompt "think step by step" β it does it natively.
*/
import axios, { AxiosError } from "axios";
import { createHash } from "crypto";
import { getEnv } from "../config/env";
import { getSupabaseClient } from "../supabase/client";
import { logger } from "../utils/logger";
// βββ Types βββββββββββββββββββββββββββββββββββββββββββββββββββ
export interface LLMRequest {
operation: string;
modelIndex?: number; // 0=MiniMax, 1=LLaMA70B, 2=LLaMA8B
systemPrompt: string;
userPrompt: string;
temperature?: number;
maxTokens?: number;
jsonMode?: boolean;
traceId: string;
companyId?: string;
}
export interface LLMResponse {
content: string;
reasoning: string | null; // MiniMax's built-in chain-of-thought
parsed: Record<string, unknown> | null;
model: string;
provider: string;
tokens: { prompt: number; completion: number; total: number };
latencyMs: number;
grounded: boolean;
fallbackUsed: boolean;
}
// βββ Model configs (ALL on NVIDIA NIM, ALL FREE) βββββββββββββ
interface ModelConfig {
name: string;
model: string;
maxContext: number;
bestFor: string;
}
const MODEL_CONFIGS: ModelConfig[] = [
{
name: "MiniMax M2.7",
model: "minimaxai/minimax-m2.7",
maxContext: 4_000_000, // 4M tokens!
bestFor: "profiling, scoring, complex reasoning",
},
{
name: "LLaMA 3.3 70B",
model: "meta/llama-3.3-70b-instruct",
maxContext: 128_000,
bestFor: "general tasks, reliable fallback",
},
{
name: "LLaMA 3.1 8B",
model: "meta/llama-3.1-8b-instruct",
maxContext: 128_000,
bestFor: "email classification, simple checks",
},
];
export const MODELS = {
MINIMAX: 0, // Primary β best reasoning
LLAMA_70B: 1, // Fallback β reliable
LLAMA_8B: 2, // Fast β simple tasks
FAST: 2, // alias
} as const;
// βββ Main LLM call ββββββββββββββββββββββββββββββββββββββββββ
export async function callLLM(request: LLMRequest): Promise<LLMResponse> {
const modelIndex = request.modelIndex ?? 0;
const env = getEnv();
if (modelIndex >= MODEL_CONFIGS.length) {
return deterministicFallback(request);
}
const config = MODEL_CONFIGS[modelIndex];
const startTime = Date.now();
const body: Record<string, unknown> = {
model: config.model,
messages: [
{ role: "system", content: request.systemPrompt },
{ role: "user", content: request.userPrompt },
],
temperature: request.temperature ?? 0.2,
max_tokens: request.maxTokens ?? 1024,
top_p: 0.9,
};
if (request.jsonMode) {
body.response_format = { type: "json_object" };
}
try {
const response = await axios.post(
`${env.NVIDIA_NIM_BASE_URL}/chat/completions`,
body,
{
headers: {
Authorization: `Bearer ${env.NVIDIA_API_KEY}`,
"Content-Type": "application/json",
},
timeout: 90_000, // MiniMax can take longer for reasoning
}
);
const data = response.data;
const message = data.choices?.[0]?.message;
const content = message?.content ?? "";
const reasoning = message?.reasoning_content ?? null; // MiniMax CoT
const usage = data.usage ?? { prompt_tokens: 0, completion_tokens: 0, total_tokens: 0 };
const latencyMs = Date.now() - startTime;
let parsed: Record<string, unknown> | null = null;
if (request.jsonMode) {
parsed = safeParseJSON(content);
if (!parsed) {
logger.warn({ operation: request.operation, model: config.name }, "JSON parse failed β next model");
return callLLM({ ...request, modelIndex: modelIndex + 1 });
}
}
const result: LLMResponse = {
content,
reasoning,
parsed,
model: config.name,
provider: "nvidia",
tokens: {
prompt: usage.prompt_tokens,
completion: usage.completion_tokens,
total: usage.total_tokens,
},
latencyMs,
grounded: true,
fallbackUsed: false,
};
// Log MiniMax reasoning if present
if (reasoning) {
logger.debug({ operation: request.operation, reasoning: reasoning.slice(0, 200) },
"MiniMax reasoning captured");
}
await logLLMTrace(request, result, true, config);
return result;
} catch (err) {
if (err instanceof AxiosError) {
if (err.response?.status === 429) {
const retryAfter = parseInt(err.response.headers["retry-after"] ?? "5", 10);
logger.warn({ model: config.name, retryAfter }, "Rate limited β waiting");
await sleep(retryAfter * 1000);
return callLLM(request);
}
if (err.response?.status === 503 || err.response?.status === 500) {
logger.warn({ model: config.name, status: err.response?.status }, `${config.name} unavailable β next`);
return callLLM({ ...request, modelIndex: modelIndex + 1 });
}
}
logger.error({ model: config.name, err: String(err).slice(0, 200) }, "LLM call failed β next");
return callLLM({ ...request, modelIndex: modelIndex + 1 });
}
}
function deterministicFallback(request: LLMRequest): LLMResponse {
logger.error({ operation: request.operation }, "ALL models failed β deterministic fallback");
return {
content: "",
reasoning: null,
parsed: null,
model: "deterministic_fallback",
provider: "none",
tokens: { prompt: 0, completion: 0, total: 0 },
latencyMs: 0,
grounded: false,
fallbackUsed: true,
};
}
// βββ Self-consistency check ββββββββββββββββββββββββββββββββββ
// NOTE: MiniMax has built-in reasoning β consistency is higher
// We still do dual-temperature check for critical operations
export async function callLLMWithConsistencyCheck(
request: LLMRequest
): Promise<{ primary: LLMResponse; isConsistent: boolean; consistencyScore: number }> {
const primary = await callLLM({ ...request, temperature: 0.1 });
if (!["profile", "score"].includes(request.operation)) {
return { primary, isConsistent: true, consistencyScore: 1.0 };
}
if (primary.fallbackUsed) {
return { primary, isConsistent: true, consistencyScore: 0.5 };
}
// MiniMax has reasoning β inherently more consistent
// Only do consistency check with LLaMA models
if (primary.model === "MiniMax M2.7" && primary.reasoning) {
// MiniMax showed its reasoning β trust it more
return { primary, isConsistent: true, consistencyScore: 0.95 };
}
const secondary = await callLLM({ ...request, temperature: 0.4, modelIndex: request.modelIndex });
const score = compareOutputs(primary, secondary);
return { primary, isConsistent: score >= 0.75, consistencyScore: score };
}
function compareOutputs(a: LLMResponse, b: LLMResponse): number {
if (!a.parsed || !b.parsed) return 0.5;
let matches = 0, total = 0;
for (const key of ["ai_readiness", "tier", "service_match"]) {
if (key in a.parsed && key in b.parsed) {
total++;
if (a.parsed[key] === b.parsed[key]) matches++;
}
}
for (const key of ["total_score", "company_fit"]) {
const aVal = a.parsed[key], bVal = b.parsed[key];
if (typeof aVal === "number" && typeof bVal === "number") {
total++;
if (Math.abs(aVal - bVal) <= 10) matches++;
}
}
return total === 0 ? 1.0 : matches / total;
}
// βββ Trace logging βββββββββββββββββββββββββββββββββββββββββββ
async function logLLMTrace(
request: LLMRequest,
response: LLMResponse | null,
success: boolean,
config?: ModelConfig
): Promise<void> {
try {
const db = getSupabaseClient();
await db.from("llm_traces").insert({
trace_id: request.traceId,
operation: request.operation,
model: response?.model ?? config?.name ?? "unknown",
provider: "nvidia",
prompt_tokens: response?.tokens.prompt ?? 0,
completion_tokens: response?.tokens.completion ?? 0,
total_tokens: response?.tokens.total ?? 0,
latency_ms: response?.latencyMs ?? 0,
success,
fallback_used: response?.fallbackUsed ?? true,
company_id: request.companyId ?? null,
input_hash: hashText(request.userPrompt.slice(0, 200)),
output_hash: response ? hashText(response.content.slice(0, 200)) : null,
});
} catch (err) {
logger.warn({ err }, "Trace log failed β non-critical");
}
}
// βββ Helpers βββββββββββββββββββββββββββββββββββββββββββββββββ
function safeParseJSON(text: string): Record<string, unknown> | null {
let content = text.trim();
if (content.includes("```json")) content = content.split("```json")[1].split("```")[0].trim();
else if (content.includes("```")) content = content.split("```")[1].split("```")[0].trim();
try {
return JSON.parse(content);
} catch {
const match = content.match(/\{[\s\S]*\}/);
if (match) { try { return JSON.parse(match[0]); } catch { return null; } }
return null;
}
}
function hashText(text: string): string {
return createHash("sha256").update(text).digest("hex").slice(0, 16);
}
function sleep(ms: number): Promise<void> {
return new Promise((resolve) => setTimeout(resolve, ms));
}
|