diff --git a/app/client/platforms/openai.ts b/app/client/platforms/openai.ts index 1a1d366d0..6c47cb834 100644 --- a/app/client/platforms/openai.ts +++ b/app/client/platforms/openai.ts @@ -101,8 +101,10 @@ export class ChatGPTApi implements LLMApi { if (isAIFoundation) { baseUrl = accessStore.azureUrl; } else { - const apiPath = isAzure ? ApiPath.Azure : ApiPath.OpenAI; - baseUrl = isApp ? OPENAI_BASE_URL : apiPath; + const apiPath = ApiPath.Azure; + baseUrl = apiPath; + // const apiPath = isAzure ? ApiPath.Azure : ApiPath.OpenAI; + // baseUrl = isApp ? OPENAI_BASE_URL : apiPath; } }