CreateVocab_通义晓蜜CCAI-AIO_API文档

插件下载了解更多
VS Code 插件
安装插件之前,确保已安装 VS Code安装插件之前,确保已安装 VS Code
Alibaba Cloud Developer Toolkit is a collection of extensions that can help access Alibaba Cloud services in Visual Studio Code.
JetBrains 插件
安装插件之前,确保已安装 JetBrains IDE安装插件之前,确保已安装 JetBrains IDE
The Alibaba Cloud Developer Toolkit for JetBrains makes it easier to access Alibaba Cloud services.

接口说明

请确保在使用该接口前,已充分了解通义晓蜜 CCAI-对话分析 AIO 产品的收费方式和价格。

前提条件

  • 已开通通义晓蜜 CCAI-对话分析 AIO 服务。
  • 已创建应用:应用中心完成通义晓蜜 CCAI-对话分析 AIO 应用创建,并获取到 APP-ID 和 WORKSPACE-ID:获取 APP-ID 和 WORKSPACE-ID

流控信息

当前云产品API请求速率暂未透出。

授权信息

当前云产品暂无权限信息透出。

请求语法

POST /vocab/createVocab HTTP/1.1

请求参数

字段名称字段详情
bodyobject

请求 Body

请求说明

请求入参限制

  • 默认最多创建 10 个词表。

  • 每个词表最多添加 500 个词,每个词语最长 10 个字。

  • 业务专属热词必须为 UTF-8 编码,不能包含标点、特殊字符。

  • 业务专属词对应的权重取值范围为[-6,5]之间的整数。

  • 取值大于 0 增大该词语被识别的概率,小于 0 减小该词语被识别的概率。

  • 取值为-6:表示尽量不要识别出该词语。

  • 取值为 2:常用值。

  • 如果效果不明显可以适当增加权重,但是当权重较大时可能会引起负面效果,导致其他词语识别不准确。

接口请求示例

import com.alibaba.fastjson.JSONObject;
import com.aliyun.contactcenterai20240603.Client;
import com.aliyun.contactcenterai20240603.models.CreateVocabRequest;
import com.aliyun.contactcenterai20240603.models.CreateVocabResponse;
import com.aliyun.teaopenapi.models.Config;

import java.util.ArrayList;
import java.util.List;

public class Vocab {

    private static String accessKeyId = "YOUR_ACCESS_KEY_ID";

    private static String accessKeySecret = "YOUR_ACCESS_KEY_SECRET";

    private static String workspaceId = "YOUR_WORKSPACE_ID";

    private static Config config = new Config();

    static {
        config.setAccessKeyId(accessKeyId).setAccessKeySecret(accessKeySecret).setEndpoint("contactcenterai.cn-shanghai.aliyuncs.com")
                .setReadTimeout(30000).setConnectTimeout(300000).setRegionId("cn-shanghai").setProtocol("HTTPS");
    }

    public static void main(String[] args) throws Exception {
        Client client = new Client(config);

        CreateVocabRequest request = new CreateVocabRequest();
        request.setName("销售词表");
        request.setDescription("东北一区销售业务专用");
        request.setWorkspaceId(workspaceId);

        List<CreateVocabRequest.CreateVocabRequestWordWeightList> wordWeightList = new ArrayList<>();
        CreateVocabRequest.CreateVocabRequestWordWeightList word1 = new CreateVocabRequest.CreateVocabRequestWordWeightList();
        word1.setWord("儿童");
        word1.setWeight(3);
        wordWeightList.add(word1);

        CreateVocabRequest.CreateVocabRequestWordWeightList word2 = new CreateVocabRequest.CreateVocabRequestWordWeightList();
        word2.setWord("金属");
        word2.setWeight(3);
        wordWeightList.add(word2);

        request.setWordWeightList(wordWeightList);

        CreateVocabResponse response = client.createVocab(request);
        System.out.println(JSONObject.toJSONString(response));
    }
}

返回参数

字段名称字段详情
requestIdstring

请求 id

示例值:968A8634-FA2C-5381-9B3E-*******F
successstring

调用是否成功

示例值:True
dataobject

返回数据。

返回示例

错误码

全局错误码
HTTP 状态码错误码错误信息操作
400
CCAI.InvalidParam.NotExist
The specified parameter %s is not valid.诊断
400
CCAI.ParamInvalid.IllegalParamValue
The parameter value of the request API is illegal %s.诊断
400
CCAI.Throttling.Qpm
Trigger QPM flow restriction. Please purchase higher QPM for paid API. If free API has special requirements, please contact us through DingTalk group (62730018475).诊断
400
CCAI.Throttling.Qps
Trigger current QPS limit, pay API please buy higher QPS, the free API if you have special requirements, please contact us through the DingTalk group (62730018475).诊断
403
CCAI.IllegalPermission.NoAuth
User not authorized to operate on the specified resource.诊断
403
CCAI.ParamNotfound.MissParam
Parameter verification failed, The specified parameter %s is missing.诊断
403
CCAI.TenantPermission.NoAuth
The current account does not have the permission to specify the business space. Please authorize the business space permission.诊断
500
CCAI.InternalError
The request processing has failed due to some unknown error, exception or failure.诊断

变更历史

变更时间变更内容概要操作
2025-03-26
变更请求参数body
2025-02-20
新增OpenAPI,创建热词

相关示例