mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-16 08:02:17 +00:00
9 lines
295 B
TypeScript
9 lines
295 B
TypeScript
/**
|
|
* Utility functions for Azure OpenAI tests
|
|
*/
|
|
|
|
export function hasAzureOpenAICredentials(): boolean {
|
|
const hasKey = !!process.env.AZURE_OPENAI_API_KEY;
|
|
const hasEndpoint = !!(process.env.AZURE_OPENAI_ENDPOINT || process.env.AZURE_OPENAI_RESOURCE_NAME);
|
|
return hasKey && hasEndpoint;
|
|
}
|