mirror of
https://github.com/lobehub/lobehub
synced 2026-04-21 09:37:28 +00:00
44 lines
3.5 KiB
Text
44 lines
3.5 KiB
Text
---
|
||
title: 在 LobeHub 中集成 Azure OpenAI
|
||
description: 了解如何在 LobeHub 中配置 Azure OpenAI。一步步指导从界面配置到部署时的环境变量设置。
|
||
tags:
|
||
- Azure OpenAI
|
||
- 配置指南
|
||
- 使用限制
|
||
- 语言模型
|
||
- Azure API
|
||
- API密钥
|
||
- 环境变量
|
||
---
|
||
|
||
# 与 Azure OpenAI 集成使用
|
||
|
||
LobeHub 支持使用 [Azure OpenAI](https://learn.microsoft.com/zh-cn/azure/ai-services/openai/concepts/models) 作为 OpenAI 的模型服务商,本文将介绍如何配置 Azure OpenAI。
|
||
|
||
## 在界面中配置
|
||
|
||
点击左下角「操作」 -「设置」,切到 「语言模型」 Tab 后通过开启「Azure OpenAI」开关,即可开启使用 Azure OpenAI。
|
||
|
||
<Image alt="在界面中配置" src="https://github-production-user-asset-6210df.s3.amazonaws.com/28616219/267083420-422a3714-627e-4bef-9fbc-141a2a8ca916.png" />
|
||
|
||
你按需填写相应的配置项:
|
||
|
||
- **APIKey**:你在 Azure OpenAI 账户页面申请的 API 密钥,可在 “密钥和终结点” 部分中找到此值
|
||
- **API 地址**:Azure API 地址,从 Azure 门户检查资源时,可在 “密钥和终结点” 部分中找到此值
|
||
- **Azure API Version**: Azure 的 API 版本,遵循 YYYY-MM-DD 格式,查阅[最新版本](https://learn.microsoft.com/zh-cn/azure/ai-services/openai/reference#chat-completions)
|
||
- **模型列表**: 用来控制模型列表,你可以自行配置你的部署模型。
|
||
|
||
完成上述字段配置后,点击「检查」,如果提示「检查通过」,则说明配置成功。
|
||
|
||
<br />
|
||
|
||
## 在部署时配置
|
||
|
||
如果你希望部署的版本直接配置好 Azure OpenAI,让终端用户直接使用,那么你需要在部署时配置以下环境变量:
|
||
|
||
| 环境变量 | 类型 | 描述 | 默认值 | 示例 |
|
||
| ------------------- | -- | --------------------------------------------------------------------------------------------------------------- | ------------------ | --------------------------------------------------------------------------------------------------- |
|
||
| `AZURE_API_KEY` | 必选 | 这是你在 Azure OpenAI 账户页面申请的 API 密钥 | - | `c55168be3874490ef0565d9779ecd5a6` |
|
||
| `AZURE_ENDPOINT` | 必选 | Azure API 地址,从 Azure 门户检查资源时,可在 “密钥和终结点” 部分中找到此值 | - | `https://docs-test-001.openai.azure.com` |
|
||
| `AZURE_API_VERSION` | 必选 | Azure 的 API 版本,遵循 YYYY-MM-DD 格式 | 2023-08-01-preview | `-`,查阅[最新版本](https://learn.microsoft.com/zh-cn/azure/ai-services/openai/reference#chat-completions) |
|
||
| `AZURE_MODEL_LIST` | 必选 | 用来控制模型列表,使用 `模型名->部署名=展示名` 来自定义模型的展示名,用英文逗号隔开。支持扩展能力,其余语法规则详见 [模型列表](/zh/docs/self-hosting/advanced/model-list) | - | `gpt-35-turbo->my-deploy=GPT 3.5 Turbo` 或 `gpt-4-turbo->my-gpt4=GPT 4 Turbo<128000:vision:fc>` |
|