@ai-sdk/azure
Version:
The **[Azure provider](https://ai-sdk.dev/providers/ai-sdk-providers/azure)** for the [AI SDK](https://ai-sdk.dev/docs) contains language model support for the Azure OpenAI API.
22 lines (20 loc) • 451 B
text/typescript
import {
codeInterpreter,
fileSearch,
imageGeneration,
webSearch,
webSearchPreview,
} from '@ai-sdk/openai/internal';
export const azureOpenaiTools: {
codeInterpreter: typeof codeInterpreter;
fileSearch: typeof fileSearch;
imageGeneration: typeof imageGeneration;
webSearch: typeof webSearch;
webSearchPreview: typeof webSearchPreview;
} = {
codeInterpreter,
fileSearch,
imageGeneration,
webSearch,
webSearchPreview,
};