We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab39a4f commit dba4e61Copy full SHA for dba4e61
apps/sim/lib/copilot/chat-payload.ts
@@ -70,6 +70,16 @@ function buildProviderConfig(selectedModel: string): CopilotProviderConfig | und
70
}
71
72
73
+ if (providerEnv === 'azure-anthropic') {
74
+ return {
75
+ provider: 'azure-anthropic',
76
+ model: envModel,
77
+ apiKey: env.AZURE_ANTHROPIC_API_KEY,
78
+ apiVersion: env.AZURE_ANTHROPIC_API_VERSION,
79
+ endpoint: env.AZURE_ANTHROPIC_ENDPOINT,
80
+ }
81
82
+
83
if (providerEnv === 'vertex') {
84
return {
85
provider: 'vertex',
0 commit comments