Giter Club home page Giter Club logo

Comments (8)

Laisky avatar Laisky commented on August 19, 2024 2

You can try this project that converts Azure to OpenAI API.

https://github.com/haibbo/cf-openai-azure-proxy/blob/main/README_en.md

then edit the gptchat's config file(~/.config/gptcommit/config.toml)

CleanShot 2023-05-16 at 10 05 50@2x

Note: api_key should be azure openai service's key, not openai's api key.

from gptcommit.

LayZeeDK avatar LayZeeDK commented on August 19, 2024 1

API reference for Azure OpenAI service:

from gptcommit.

zurawiki avatar zurawiki commented on August 19, 2024 1

Thanks for the context.

Currently, I'm blocked because I don't have access to the Azure OpenAI services. I applied but haven't heard back from Microsoft

from gptcommit.

zurawiki avatar zurawiki commented on August 19, 2024

Thanks for the suggestion @LayZeeDK. I'm interested by your request. What's motivating it?

I certainly agree that this project should be generalized to support different LLM APIs in the future. If we want to implement Azure, I'd be curious to learn:

  • Is there some feature Azure offers over OpenAI?
  • Will the setup for the Azure API be any different, in terms of authentication or data format?

from gptcommit.

LayZeeDK avatar LayZeeDK commented on August 19, 2024

Azure OpenAI service supports enterprise-grade security, policies, compliance, and regional availability. Would you be interested in API access?

from gptcommit.

zurawiki avatar zurawiki commented on August 19, 2024

Yup this is definitely something I'd be interested in making happen! I tagged the issue as help wanted

from gptcommit.

LayZeeDK avatar LayZeeDK commented on August 19, 2024

Completions

Request

Endpoint

In

gptcommit/src/openai.rs

Lines 66 to 71 in 6ee5bc5

let request = self
.client
.post("https://api.openai.com/v1/completions")
.header("Content-Type", "application/json")
.header("Authorization", format!("Bearer {}", self.api_key))
.json(&json_data);

Instead of https://api.openai.com/v1/completions, the endpoint URL would be in the format https://{resource_name}.openai.azure.com/openai/deployments/{deployment_id}/completions?api-version=<api_version> with 2022-12-01 being the latest API version so we must make the endpoint URL for completions configurable.

Headers

Instead of an Authorization header in the format Authorization: Bearer <api_key>, we would have the header api-key: <api_key>

Parameters

In the Azure OpenAI Service API, a completions request does not support a model parameter. Instead, this is represented by the {deployment_id} URL parameter.

Response

The OpenAI API response object has a usage property but the Azure OpenAI Service API does not.

The model property in the example response displays "ada". The models available for the Azure OpenAI Service are listed in Model Summary table and region availability. These are deployed then targeted in the {deployment_id} URL parameter for the completions endpoint. I'm not sure all the models supported by the Azure OpenAI Service are listed in

gptcommit/src/openai.rs

Lines 91 to 101 in 6ee5bc5

pub(crate) fn get_prompt_token_limit_for_model(&self) -> usize {
match self.model.as_str() {
"text-davinci-003" => 4097,
"text-curie-001" => 2048,
"text-babbage-001" => 2048,
"text-ada-001" => 2048,
"code-davinci-002" => 8000,
"code-cushman-001" => 2048,
_ => 4097,
}
}

At least not if "ada" is a valid model response value.

from gptcommit.

zurawiki avatar zurawiki commented on August 19, 2024

Currently blocked on async-openai supporting Azure: 64bit/async-openai#32

from gptcommit.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.