Adapted from PR #1286 (mugnimaestra/feat/xai-grok-provider) to match existing app architecture. Includes: - OAuth 2.0 with PKCE on loopback port 56121 (Grok Build) - API key auth path (console.x.ai) - Token refresh wiring (open-sse + sse tokenRefresh) - Dashboard OAuth modal with fixed-port flow + manual code fallback - Provider registry entries (OAuth + API key) - xAI image generation via OpenAI-compatible adapter (grok-2-image-1212 model, no size/quality/style params) Excludes (intentionally, to match app patterns): - Custom xAI Responses executor (DefaultExecutor handles /chat/completions) - xAI-specific translators (app uses OpenAI as intermediate format) - Image edits (not supported by current imageGenerationCore) - Video endpoints (app has no video subsystem yet) - CLI xai-login command Refs decolua#1286 Co-authored-by: Cursor <cursoragent@cursor.com>
46 lines
1.3 KiB
JavaScript
46 lines
1.3 KiB
JavaScript
import { AI_PROVIDERS } from "../shared/constants/providers.js";
|
|
|
|
/**
|
|
* Detect xAI Grok models by id pattern (grok-*, Grok_*, etc).
|
|
* @param {string} modelId
|
|
* @returns {boolean}
|
|
*/
|
|
export function isXaiModel(modelId) {
|
|
return typeof modelId === "string" && /^grok[-_]/i.test(modelId.trim());
|
|
}
|
|
|
|
export function normalizeProviderId(provider) {
|
|
if (typeof provider !== "string") return provider;
|
|
|
|
const trimmed = provider.trim();
|
|
if (AI_PROVIDERS[trimmed]) return trimmed;
|
|
|
|
const slug = trimmed.toLowerCase().replace(/[^a-z0-9]+/g, "-").replace(/^-|-$/g, "");
|
|
if (AI_PROVIDERS[slug]) return slug;
|
|
|
|
const providerByName = Object.values(AI_PROVIDERS).find(
|
|
(entry) => entry.name?.toLowerCase() === trimmed.toLowerCase()
|
|
);
|
|
return providerByName?.id || trimmed;
|
|
}
|
|
|
|
export function normalizeProviderSpecificData(provider, body = {}, providerSpecificData = null) {
|
|
const next = providerSpecificData && typeof providerSpecificData === "object"
|
|
? { ...providerSpecificData }
|
|
: {};
|
|
|
|
if (provider === "ollama-local") {
|
|
const baseUrl = (
|
|
next.baseUrl ||
|
|
body.baseUrl ||
|
|
body.baseURL ||
|
|
body.ollamaHostUrl ||
|
|
""
|
|
).trim();
|
|
|
|
if (baseUrl) next.baseUrl = baseUrl;
|
|
}
|
|
|
|
return Object.keys(next).length > 0 ? next : null;
|
|
}
|