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 think support for Azure Openai API would be great.
as so many developers and organizations use Azure to fulfill their Cloud Needs.
So adding up a support for azure Openai API will benefit them to use within their environment.
The text was updated successfully, but these errors were encountered:
Hi @dholakashyap - I believe we can make this easier I’m the maintainer of LiteLLM - we allow you to deploy a LLM proxy to call 100+ LLMs in 1 format - Azure OpenAI, PaLM, Bedrock, OpenAI, Anthropic etc https://github.com/BerriAI/litellm/tree/main/openai-proxy.
If this looks useful (we're used in production)- please let me know how we can help.
Azure request
curl http://0.0.0.0:8000/v1/chat/completions \ -H "Content-Type: application/json" \ -d '{ "model": "azure/<your-deployment-name>", "messages": [{"role": "user", "content": "Say this is a test!"}], "temperature": 0.7 }'
gpt-3.5-turbo request
curl http://0.0.0.0:8000/v1/chat/completions \ -H "Content-Type: application/json" \ -d '{ "model": "gpt-3.5-turbo", "messages": [{"role": "user", "content": "Say this is a test!"}], "temperature": 0.7 }'
claude-2 request
curl http://0.0.0.0:8000/v1/chat/completions \ -H "Content-Type: application/json" \ -d '{ "model": "claude-2", "messages": [{"role": "user", "content": "Say this is a test!"}], "temperature": 0.7 }'
Sorry, something went wrong.
No branches or pull requests
🔖 Feature description
I think support for Azure Openai API would be great.
as so many developers and organizations use Azure to fulfill their Cloud Needs.
So adding up a support for azure Openai API will benefit them to use within their environment.
🎤 Pitch
I think support for Azure Openai API would be great.
as so many developers and organizations use Azure to fulfill their Cloud Needs.
So adding up a support for azure Openai API will benefit them to use within their environment.
👀 Have you spent some time to check if this issue has been raised before?
🏢 Have you read the Code of Conduct?
The text was updated successfully, but these errors were encountered: