mirror of
https://github.com/Nezumi-2711/9router.git
synced 2026-09-22 20:00:47 +00:00
- translator/index.js: replace require() with static side-effect imports (ESM-safe), lazy-init registry maps to survive circular import order - openai-responses->openai: map max_output_tokens -> max_tokens (avoid leaking field upstream) - gemini/antigravity -> openai: derive deterministic tool_call id from name so functionCall/functionResponse pair correctly (fixes provider tool-pairing 400s) - add offline unit tests (finish-reason, usage, session-manager, ollama malformed args, const guard) - add real-creds integration tests (provider-cases + all-formats matrix: 6 inbound formats x 4 scenarios) Includes co-located provider registry refactor (pricing/capabilities/media providers) and sessionManager updates. Co-authored-by: Cursor <cursoragent@cursor.com>
33 lines
954 B
JavaScript
33 lines
954 B
JavaScript
export default {
|
|
id: "vertex",
|
|
priority: 40,
|
|
alias: "vertex",
|
|
aliases: [
|
|
"vx",
|
|
],
|
|
uiAlias: "vx",
|
|
display: {
|
|
name: "Vertex AI",
|
|
icon: "cloud",
|
|
color: "#4285F4",
|
|
textIcon: "VX",
|
|
website: "https://cloud.google.com/vertex-ai",
|
|
notice: {
|
|
text: "New Google Cloud accounts get $300 free credits. Requires GCP project + Service Account with Vertex AI API enabled.",
|
|
apiKeyUrl: "https://console.cloud.google.com/iam-admin/serviceaccounts",
|
|
},
|
|
},
|
|
category: "freeTier",
|
|
transport: {
|
|
baseUrl: "https://aiplatform.googleapis.com",
|
|
format: "vertex",
|
|
},
|
|
models: [
|
|
{ id: "gemini-3.1-pro-preview", name: "Gemini 3.1 Pro Preview" },
|
|
{ id: "gemini-3.1-flash-lite-preview", name: "Gemini 3.1 Flash Lite Preview" },
|
|
{ id: "gemini-3-flash-preview", name: "Gemini 3 Flash Preview" },
|
|
{ id: "gemini-2.5-flash", name: "Gemini 2.5 Flash" },
|
|
],
|
|
serviceKinds: ["llm","imageToText"],
|
|
};
|