feat: implement comprehensive Azure OpenAI API integration #184
+147
−38
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Azure OpenAI Integration
Overview
This PR adds complete Azure OpenAI API support to Scira, allowing users to leverage their
Azure OpenAI deployments alongside existing models. The integration is designed to be
seamless for users with proper Azure credentials while maintaining backward compatibility.
Implementation Details
Environment Configuration
selection:
AZURE_OPENAI_API_KEY
- For Azure-specific authenticationAZURE_OPENAI_ENDPOINT
- For Azure OpenAI service URLAZURE_OPENAI_API_VERSION
- Defaults to '2024-10-01-preview'AZURE_OPENAI_DEPLOYMENT_PREFIX
- Optional prefix for deployment namingProvider Integration
@ai-sdk/azure
UI Enhancements
API Configuration
Setup Instructions
To use Azure OpenAI models, users will need to:
npm install @ai-sdk/azure
.env
:AZURE_OPENAI_API_KEY=your_api_key
AZURE_OPENAI_ENDPOINT=https://your-resource-name.openai.azure.com
AZURE_OPENAI_API_VERSION=2024-10-01-preview # Optional, defaults to this value
Testing
Testing was performed by:
Future Improvements