change provider descriptions and dont set default url for bedrock

This commit is contained in:
miloschwartz
2026-08-13 10:13:32 -04:00
parent 9a551c91e5
commit 77e3422e88
2 changed files with 8 additions and 8 deletions
+7 -7
View File
@@ -1769,14 +1769,14 @@
"aiProviderTypeOpenRouter": "OpenRouter", "aiProviderTypeOpenRouter": "OpenRouter",
"aiProviderTypeVercelAiGateway": "Vercel AI Gateway", "aiProviderTypeVercelAiGateway": "Vercel AI Gateway",
"aiProviderTypeCustom": "Custom", "aiProviderTypeCustom": "Custom",
"aiProviderTypeOpenaiDescription": "OpenAI API with default upstream URL", "aiProviderTypeOpenaiDescription": "OpenAI API",
"aiProviderTypeAnthropicDescription": "Anthropic API with default upstream URL", "aiProviderTypeAnthropicDescription": "Anthropic API",
"aiProviderTypeGoogleGeminiDescription": "Google Gemini generateContent API", "aiProviderTypeGoogleGeminiDescription": "Google Gemini API",
"aiProviderTypeVertexAiDescription": "Google Vertex AI; upstream URL required", "aiProviderTypeVertexAiDescription": "Google Vertex AI API",
"aiProviderTypeBedrockDescription": "Amazon Bedrock Runtime", "aiProviderTypeBedrockDescription": "Amazon Bedrock Runtime API",
"aiProviderTypeMicrosoftFoundryDescription": "Microsoft Foundry; upstream URL required", "aiProviderTypeMicrosoftFoundryDescription": "Microsoft Foundry API",
"aiProviderTypeOpenRouterDescription": "OpenRouter API", "aiProviderTypeOpenRouterDescription": "OpenRouter API",
"aiProviderTypeVercelAiGatewayDescription": "Vercel AI Gateway", "aiProviderTypeVercelAiGatewayDescription": "Vercel AI Gateway API",
"aiProviderTypeCustomDescription": "Bring your own endpoint or route via site targets", "aiProviderTypeCustomDescription": "Bring your own endpoint or route via site targets",
"aiProviderUpstreamUrl": "Upstream URL", "aiProviderUpstreamUrl": "Upstream URL",
"aiProviderUpstreamUrlDescription": "Base URL for the provider API", "aiProviderUpstreamUrlDescription": "Base URL for the provider API",
+1 -1
View File
@@ -56,7 +56,7 @@ export const AI_PROVIDER_DEFAULTS: Record<
capabilities: ["google_generate_content", "google_raw_predict"] capabilities: ["google_generate_content", "google_raw_predict"]
}, },
bedrock: { bedrock: {
upstreamUrl: "https://bedrock-runtime.us-east-1.amazonaws.com", upstreamUrl: null,
authType: "bearer", authType: "bearer",
capabilities: ["bedrock_converse"] capabilities: ["bedrock_converse"]
}, },