在 Azure 政府中通过 CLI 提供认知服务
Cognitive Services via CLI in Azure Government
文档提到可以通过 CLI 访问它,但是文档中没有 CLI 的示例,只有 PowerShell。
关于从哪里开始的任何建议?
您可以在 Cognitive Services Azure CLI 文档中找到有关如何管理认知服务的详细信息。
与 Azure 政府一样:
- 通过
az cloud set --name=AzureUSGovernment
将 CLI 设置为 Azure Government
- 使用 Azure 政府区域。
- 使用 subset of APIs available in Azure Government (see this 文档获取与 --kind 一起使用的文字值。
- 使用subset of SKUs available in Azure Government
这里有一个关于如何开始的快速示例:
az cloud set --name AzureUSGovernment
az login
az group create -n cogstestrg -l usgovvirginia
az cognitiveservices account create -n cogstestcv -g cogstestrg --sku S0 --kind ComputerVision -l usgovvirginia
az cognitiveservices account show -g cogstestrg -n cogstestcv
az cognitiveservices account keys list -g cogstestrg -n cogstestcv
#Make sure you REPLACE_WITH_YOUR_KEY in the curl command below using the key from the previous command
curl -v -X POST "https://virginia.api.cognitive.microsoft.us/vision/v1.0/analyze?visualFeatures=Categories,Description,Color&details=&language=en" -H "Content-Type: application/json" -H "Ocp-Apim-Subscription-Key: REPLACE_WITH_YOUR_KEY" --data-ascii "{'url' : 'http://upload.wikimedia.org/wikipedia/commons/3/3c/Shaki_waterfall.jpg'}"
文档提到可以通过 CLI 访问它,但是文档中没有 CLI 的示例,只有 PowerShell。
关于从哪里开始的任何建议?
您可以在 Cognitive Services Azure CLI 文档中找到有关如何管理认知服务的详细信息。
与 Azure 政府一样:
- 通过
az cloud set --name=AzureUSGovernment
将 CLI 设置为 Azure Government
- 使用 Azure 政府区域。
- 使用 subset of APIs available in Azure Government (see this 文档获取与 --kind 一起使用的文字值。
- 使用subset of SKUs available in Azure Government
这里有一个关于如何开始的快速示例:
az cloud set --name AzureUSGovernment
az login
az group create -n cogstestrg -l usgovvirginia
az cognitiveservices account create -n cogstestcv -g cogstestrg --sku S0 --kind ComputerVision -l usgovvirginia
az cognitiveservices account show -g cogstestrg -n cogstestcv
az cognitiveservices account keys list -g cogstestrg -n cogstestcv
#Make sure you REPLACE_WITH_YOUR_KEY in the curl command below using the key from the previous command
curl -v -X POST "https://virginia.api.cognitive.microsoft.us/vision/v1.0/analyze?visualFeatures=Categories,Description,Color&details=&language=en" -H "Content-Type: application/json" -H "Ocp-Apim-Subscription-Key: REPLACE_WITH_YOUR_KEY" --data-ascii "{'url' : 'http://upload.wikimedia.org/wikipedia/commons/3/3c/Shaki_waterfall.jpg'}"