Skip to content

Commit 583edc2

Browse files
authored
Merge pull request #35 from usherlabs/LABS-1100/Integrate_Events_Webstream
Refactor host check for Azure integration
2 parents 1a5035b + c018349 commit 583edc2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

orchestrator/src/integrations/openAI.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export default class AIIntegration extends BasicBearerAPIHandler {
2424
}
2525

2626
// AZURE
27-
if (this.hosts.includes("ai-oki6300ai905488739395.openai.azure.com")) {
27+
if (this.hosts.some((s) => s.includes("openai.azure.com"))) {
2828
return true;
2929
}
3030

0 commit comments

Comments
 (0)