We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I searched the documentation extensively but could not find any information on configuring azure-openai in the config object.
The documentation should include detailed guidance on configuring azure-openai.
here's my config example
{ "strategy": { "mode": "loadbalance" }, "targets": [ { "provider": "openai", "api_key": "sk-proj-", "weight": 1 }, { "provider": "azure-openai", "api_key": "sk-proj-", "azureResourceName": "AZURE_RESOURCE_NAME", "azureDeploymendId": "AZURE_DEPLOYMENT_NAME", "azureApiVersion": "AZURE_API_VERSION", "weight": 1 } ] }
@haouarihk
The text was updated successfully, but these errors were encountered:
Hey @haouarihk, sorry for that! Here's the config for Azure that should work:
{ "strategy": { "mode": "loadbalance" }, "targets": [ { "provider": "openai", "api_key": "sk-proj-", "weight": 1 }, { "provider": "azure-openai", "api_key": "sk-proj-", "resource_name": "AZURE_RESOURCE_NAME", "deployment_id": "AZURE_DEPLOYMENT_NAME", "api_version": "AZURE_API_VERSION", "weight": 1 } ] }
Also updating on the docs. Thanks for the nudge!
Sorry, something went wrong.
No branches or pull requests
What Happened?
I searched the documentation extensively but could not find any information on configuring azure-openai in the config object.
What Should Have Happened?
The documentation should include detailed guidance on configuring azure-openai.
Relevant Code Snippet
here's my config example
Your Twitter/LinkedIn
@haouarihk
The text was updated successfully, but these errors were encountered: