自定义文本分类
开发环境
http://dev-cn.your-api-server.com
开发环境
http://dev-cn.your-api-server.com
POST
/v2/text/custom_classification
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://dev-cn.your-api-server.com/v2/text/custom_classification' \
--header 'Authorization;' \
--header 'content-type: application/json' \
--data-raw '{
"response_as_dict": true,
"attributes_as_list": false,
"show_original_response": false
}'
响应示例响应示例
200 - 成功示例
{
"openai": {
"classifications": [
{
"input": "Confirm your email address",
"label": "not spam",
"confidence": 0.9
},
{
"input": "hey i need u to send some $",
"label": "spam",
"confidence": 0.8
},
{
"input": "Congratulations! You've won a free vacation! Click the link to claim your prize now!",
"label": "spam",
"confidence": 0.95
},
{
"input": "Make money fast! Join our exclusive program and start earning thousands in just a few days!",
"label": "spam",
"confidence": 0.9
},
{
"input": "Get rich quick with this amazing investment opportunity. Guaranteed returns!",
"label": "spam",
"confidence": 0.85
},
{
"input": "Unlock special discounts on luxury goods. Limited-time offer! Click here to shop now!",
"label": "not spam",
"confidence": 0.95
},
{
"input": "You've been selected for a special promotion. Act now to secure your spot!",
"label": "spam",
"confidence": 0.8
},
{
"input": "Meet hot singles in your area! Chat now and find your perfect match!",
"label": "spam",
"confidence": 0.9
},
{
"input": "Eliminate debt effortlessly! Our program can erase your financial worries.",
"label": "spam",
"confidence": 0.85
},
{
"input": "Claim your inheritance! Just provide your bank details for a seamless transfer.",
"label": "spam",
"confidence": 0.9
}
]
},
"cohere": {
"classifications": [
{
"input": "Confirm your email address",
"label": "not spam",
"confidence": 0.91768086
},
{
"input": "hey i need u to send some $",
"label": "spam",
"confidence": 0.9789305
},
{
"input": "Congratulations! You've won a free vacation! Click the link to claim your prize now!",
"label": "not spam",
"confidence": 0.5345591
},
{
"input": "Make money fast! Join our exclusive program and start earning thousands in just a few days!",
"label": "spam",
"confidence": 0.91536784
},
{
"input": "Get rich quick with this amazing investment opportunity. Guaranteed returns!",
"label": "spam",
"confidence": 0.789368
},
{
"input": "Unlock special discounts on luxury goods. Limited-time offer! Click here to shop now!",
"label": "not spam",
"confidence": 0.5363132
},
{
"input": "You've been selected for a special promotion. Act now to secure your spot!",
"label": "not spam",
"confidence": 0.69171065
},
{
"input": "Meet hot singles in your area! Chat now and find your perfect match!",
"label": "spam",
"confidence": 0.7748757
},
{
"input": "Eliminate debt effortlessly! Our program can erase your financial worries.",
"label": "spam",
"confidence": 0.8801634
},
{
"input": "Claim your inheritance! Just provide your bank details for a seamless transfer.",
"label": "spam",
"confidence": 0.6725608
}
]
}
}
请求参数
Header 参数
content-type
string
必需
示例值:
application/json
Authorization
string
必需
默认值:
Bearer <your_key>
Body 参数application/json
返回响应
修改于 2024-04-11 06:09:33