gpt4 book ai didi

Azure 认知服务 : Custom text classification answering 404 on retrieve request

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

所以我在 Azure 上制作了自定义多标签模型并进行了部署。现在我一直在尝试按照指示执行请求。提交的 cURL 与 202 配合良好,但检索它的 cURL 返回:{"error":{"code":"404","message": "Resource not find"}}。这是没有一些私有(private)信息的请求:提交:

curl -X POST "<endpoint>/language/analyze-text/jobs?api-version=<version>" -H "Ocp-Apim-Subscription-Key: key" -H "Content-Type: application/json" -d "{\"tasks\":[{\"kind\":\"CustomMultiLabelClassification\",\"parameters\":{\"projectName\":\"prjName\",\"deploymentName\":\"model\"}}],\"displayName\":\"CustomTextPortal_CustomMultiLabelClassification\",\"analysisInput\":{\"documents\":[{\"id\":\"document_CustomMultiLabelClassification\",\"text\":\"Hello world!\",\"language\":\"en\"}]}}"

检索:

curl <endpoint>/language/analyze-text/jobs?api-version=<version> -H "Ocp-Apim-Subscription-Key: key" 

它只是被窃听了还是不再工作了,还是我做错了什么?

最佳答案

URL 中缺少 -X GET 方法和作业 ID。正确的格式应该是:

curl -X GET "<endpoint>/language/analyze-text/jobs/{jobId}?api-version=<version>" -H "Ocp-Apim-Subscription-Key: key"

关于Azure 认知服务 : Custom text classification answering 404 on retrieve request,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/75901184/

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