Skip to content
New issue

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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

馃殌 Feature: Support for Azure Openai API #14

Open
2 tasks done
dholakashyap opened this issue Oct 22, 2023 · 1 comment
Open
2 tasks done

馃殌 Feature: Support for Azure Openai API #14

dholakashyap opened this issue Oct 22, 2023 · 1 comment

Comments

@dholakashyap
Copy link

馃敄 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?

  • I checked and didn't find similar issue

馃彚 Have you read the Code of Conduct?

@dholakashyap dholakashyap changed the title 馃殌 Feature: 馃殌 Feature: Support for Azure Openai API Oct 22, 2023
@ishaan-jaff
Copy link

Hi @dholakashyap - I believe we can make this easier
I鈥檓 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.

Usage

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
   }'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants