mirror of
https://github.com/Nezumi-2711/9router.git
synced 2026-09-22 13:38:31 +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>
43 lines
936 B
JavaScript
43 lines
936 B
JavaScript
export default {
|
|
id: "jina-ai",
|
|
alias: "jina",
|
|
display: {
|
|
name: "Jina AI",
|
|
icon: "blur_on",
|
|
color: "#2563EB",
|
|
textIcon: "JA",
|
|
website: "https://jina.ai",
|
|
notice: {
|
|
text: "10M free tokens on signup (non-commercial), no credit card required.",
|
|
apiKeyUrl: "https://jina.ai/?sui=apikey"
|
|
}
|
|
},
|
|
category: "apikey",
|
|
authType: "apikey",
|
|
serviceKinds: [
|
|
"embedding"
|
|
],
|
|
embeddingConfig: {
|
|
baseUrl: "https://api.jina.ai/v1/embeddings",
|
|
authType: "apikey",
|
|
authHeader: "bearer",
|
|
models: [
|
|
{
|
|
id: "jina-embeddings-v3",
|
|
name: "Jina Embeddings v3",
|
|
dimensions: 1024
|
|
},
|
|
{
|
|
id: "jina-embeddings-v2-base-en",
|
|
name: "Jina Embeddings v2 Base EN",
|
|
dimensions: 768
|
|
},
|
|
{
|
|
id: "jina-embeddings-v2-base-code",
|
|
name: "Jina Embeddings v2 Base Code",
|
|
dimensions: 768
|
|
}
|
|
]
|
|
}
|
|
};
|