AI - Add azure foundry provider (#20170)

[Merge this before](https://github.com/twentyhq/twenty-infra/pull/655)

Co-authored-by: Félix Malfait <felix.malfait@gmail.com>
This commit is contained in:
Etienne
2026-05-04 16:45:06 +02:00
committed by GitHub
parent 41ad63a8ab
commit 91124a3cb8
6 changed files with 40 additions and 1 deletions
@@ -8,4 +8,5 @@ export const AI_SDK_PACKAGE_LABELS: Record<AiSdkPackage, string> = {
'@ai-sdk/xai': 'xAI',
'@ai-sdk/amazon-bedrock': 'AWS Bedrock',
'@ai-sdk/openai-compatible': 'OpenAI-Compatible',
'@ai-sdk/azure': 'Azure OpenAI',
};
@@ -6,6 +6,7 @@ export const AI_SDK_PACKAGES = [
'@ai-sdk/xai',
'@ai-sdk/amazon-bedrock',
'@ai-sdk/openai-compatible',
'@ai-sdk/azure',
] as const;
export type AiSdkPackage = (typeof AI_SDK_PACKAGES)[number];