gpt4 book ai didi

azure - Terraform 部署 Azure 认知帐户 OpenAi 'The subscription does not have QuotaId'

转载 作者:行者123 更新时间:2023-12-03 05:12:03 25 4
gpt4 key购买 nike

我正在 OpenAI 模式下从 terraform 部署 azurerm_cognitive_account 资源。

我设置了最小机器尺寸“SKU”(F0、F1、S0 和 S1),但它们都给出了配额错误。

cognitiveservicesaccounts.CognitiveServicesAccountsClient#AccountsCreate: Failure sending request: StatusCode=0 -- Original Error: Code="SpecialFeatureOrQuotaIdRequired" Message="The subscription does not have QuotaId/Feature required by SKU 'S0' from kind 'OpenAI'

SPN 在整个 RG 的 Contributor 中拥有权限,并部署许多其他资源。

我还尝试从 Azure 门户部署 OpenAI,它不会给我错误,它允许我使用任何 SKU。

terraform 版本是最新版本。

最佳答案

订阅超出了 OpenAI 类型中的 SKU(例如“S0”)所需的配额。您可以请求增加所需功能或配额 ID 的配额。

转到要增加请求限制的 Azure 门户 -> OpenAI 服务 资源,然后提交配额增加支持请求。我建议您尝试使用不需要相同限制或功能 ID 的替代 SKU。

但是,

At this time, due to overwhelming demand we cannot accept any new resource or quota increase requests as detailed in MSDoc.

如上述 MS 文档中所述,在 OpenAI 中每个区域只能创建 3 个资源。

我的环境中已拥有 East Us 区域的三个资源。这就是为什么它显示如下所示的提示。

enter image description here

然后我将区域从 EastUS 更改为 Southcentral US,它开始工作,提示消失了。

enter image description here

因此,请尝试转移到其他区域。

注意:您甚至可以在不同位置创建另一个开放 AI 服务,并在部署之前分离工作负载。

完成这些更改后,我尝试通过从 terraform registry 获取引用模板来在我的环境中部署相同的内容。并能够在另一个具有相同 SKU地区成功完成任务。

data "azurerm_resource_group" "main" {
name = "Jahnavi"
location = "SouthCentral US"
}

resource "azurerm_cognitive_account" "example" {
name = "xxxx"
location = data.azurerm_resource_group.main.location
resource_group_name = data.azurerm_resource_group.main.name
kind = "Face"
sku_name = "S0"
}

输出:

enter image description here

部署成功:

enter image description here

关于azure - Terraform 部署 Azure 认知帐户 OpenAi 'The subscription does not have QuotaId',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/76270414/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com