Co-authored-by: Quan <quanle96@outlook.com> PR: https://github.com/decolua/9router/pull/298 Thanks to @kwanLeeFrmVi for the original implementation. Here is a summary of changes made during review integration: - Replaced google-auth-library with jose (already a project dependency) for SA JSON -> OAuth2 Bearer token minting (RS256 JWT assertion flow) - Moved auth logic (parseSaJson, refreshVertexToken, token cache) from executor into open-sse/services/tokenRefresh.js to match project pattern - Fixed executor to use proxyAwareFetch instead of raw fetch (proxy support) - Simplified buildUrl: use global aiplatform.googleapis.com endpoint for both vertex (Gemini) and vertex-partner; removed region/modelFamily fields - Added auto-detection of GCP project_id from raw API key via probe request (vertex-partner only, cached per key) - Added vertex/vertex-partner cases to /api/providers/validate/route.js - Updated model lists based on live testing: - vertex: gemini-3.1-pro-preview, gemini-3.1-flash-lite-preview, gemini-3-flash-preview, gemini-2.5-flash (removed gemini-2.5-pro: 404) - vertex-partner: deepseek-v3.2, qwen3-next-80b (instruct+thinking), glm-5 (removed Mistral/Llama: not enabled in test project) - gemini provider: added gemini-3.1-pro-preview, gemini-3.1-flash-lite-preview - Removed bun.lock (project uses npm/package-lock.json) - Removed region and modelFamily UI fields (global endpoint, auto-detect) - Kiro token auto-refresh on AccessDeniedException (from commit 2) Made-with: Cursor
45 lines
1.6 KiB
JavaScript
45 lines
1.6 KiB
JavaScript
import { AntigravityExecutor } from "./antigravity.js";
|
|
import { GeminiCLIExecutor } from "./gemini-cli.js";
|
|
import { GithubExecutor } from "./github.js";
|
|
import { IFlowExecutor } from "./iflow.js";
|
|
import { KiroExecutor } from "./kiro.js";
|
|
import { CodexExecutor } from "./codex.js";
|
|
import { CursorExecutor } from "./cursor.js";
|
|
import { VertexExecutor } from "./vertex.js";
|
|
import { DefaultExecutor } from "./default.js";
|
|
|
|
const executors = {
|
|
antigravity: new AntigravityExecutor(),
|
|
"gemini-cli": new GeminiCLIExecutor(),
|
|
github: new GithubExecutor(),
|
|
iflow: new IFlowExecutor(),
|
|
kiro: new KiroExecutor(),
|
|
codex: new CodexExecutor(),
|
|
cursor: new CursorExecutor(),
|
|
cu: new CursorExecutor(), // Alias for cursor
|
|
vertex: new VertexExecutor("vertex"),
|
|
"vertex-partner": new VertexExecutor("vertex-partner"),
|
|
};
|
|
|
|
const defaultCache = new Map();
|
|
|
|
export function getExecutor(provider) {
|
|
if (executors[provider]) return executors[provider];
|
|
if (!defaultCache.has(provider)) defaultCache.set(provider, new DefaultExecutor(provider));
|
|
return defaultCache.get(provider);
|
|
}
|
|
|
|
export function hasSpecializedExecutor(provider) {
|
|
return !!executors[provider];
|
|
}
|
|
|
|
export { BaseExecutor } from "./base.js";
|
|
export { AntigravityExecutor } from "./antigravity.js";
|
|
export { GeminiCLIExecutor } from "./gemini-cli.js";
|
|
export { GithubExecutor } from "./github.js";
|
|
export { IFlowExecutor } from "./iflow.js";
|
|
export { KiroExecutor } from "./kiro.js";
|
|
export { CodexExecutor } from "./codex.js";
|
|
export { CursorExecutor } from "./cursor.js";
|
|
export { VertexExecutor } from "./vertex.js";
|
|
export { DefaultExecutor } from "./default.js";
|