Azure openai api 代理接口

5 min read

地址

https://github.com/billzhuang/azure-openai-proxy.git

Install wrangler

npm install -g wrangler

wrangler login

Install

npm install && npm run build

Local Development

npm run build && npm run dev

测试

curl https://azure.your.com/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer <key>" \
  -d '{
     "model": "gpt-3.5-turbo",
     "messages": [{"role": "user", "content": "Say this is a test!"}],
     "temperature": 0.7
   }'