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>
46 lines
984 B
JavaScript
46 lines
984 B
JavaScript
export default {
|
|
id: "aws-polly",
|
|
alias: "polly",
|
|
display: {
|
|
name: "AWS Polly",
|
|
icon: "record_voice_over",
|
|
color: "#FF9900",
|
|
textIcon: "PL",
|
|
website: "https://aws.amazon.com/polly/",
|
|
notice: {
|
|
text: "Use AWS Secret Access Key as API key; set providerSpecificData.accessKeyId and optional region.",
|
|
apiKeyUrl: "https://console.aws.amazon.com/iam/home#/security_credentials"
|
|
}
|
|
},
|
|
category: "apikey",
|
|
authType: "apikey",
|
|
serviceKinds: [
|
|
"tts"
|
|
],
|
|
ttsConfig: {
|
|
baseUrl: "https://polly.{region}.amazonaws.com/v1/speech",
|
|
authType: "apikey",
|
|
authHeader: "aws-sigv4",
|
|
format: "aws-polly",
|
|
models: [
|
|
{
|
|
id: "standard",
|
|
name: "Standard"
|
|
},
|
|
{
|
|
id: "neural",
|
|
name: "Neural"
|
|
},
|
|
{
|
|
id: "long-form",
|
|
name: "Long-form"
|
|
},
|
|
{
|
|
id: "generative",
|
|
name: "Generative"
|
|
}
|
|
]
|
|
},
|
|
hasProviderSpecificData: true
|
|
};
|