Soulter / AstrBot

QQ、Telegram、微信 等多平台兼容的支持 LLM 聊天的机器人平台。支持自定义插件扩展。
GNU Affero General Public License v3.0
581 stars 58 forks source link

建议加入Azure Openai key支持 #105

Closed IZUMI-Zu closed 8 months ago

IZUMI-Zu commented 1 year ago

微软通过 Azure Openai 提供 gpt 3.5 和 gpt 4 的支持,但 api 请求格式和 openai 的不同

curl https://AZURE_OPENAI_ENDPOINT/openai/deployments/AZURE_OPENAI_MODLE/chat/completions?api-version=2023-03-15-preview \
  -H "Content-Type: application/json" \
  -H "api-key: YOUR_API_KEY" \
  -d '{
  "messages": "[]",
  "max_tokens": 800,
  "temperature": 0.7,
  "frequency_penalty": 0,
  "presence_penalty": 0,
  "top_p": 0.95,
  "stop": null
}'

https://learn.microsoft.com/en-us/azure/cognitive-services/openai/chatgpt-quickstart

github-actions[bot] commented 8 months ago

Stale issue message