API访问域名
说明
无
请求参数
名称 |
类型 |
必选 |
中文名 |
说明 |
token |
string |
是 |
API KEY |
agent token,可以在页面集成-API-API Key获取 |
Content-Type |
string |
是 |
|
固定值:application/json |
uid |
string |
是 |
用户ID |
页面右上角用户信息获取 |
username |
string |
是 |
用户名 |
页面右上角用户信息获取 |
Parameter参数
名称 |
类型 |
必选 |
中文名 |
说明 |
type |
string |
是 |
类型 |
固定值,document |
Body参数
名称 |
类型 |
必选 |
中文名 |
说明 |
enhanceIds |
array |
是 |
文档ID列表 |
["6c0cb880-f7cc-43f5-9805-a0395f48eb36"] |
knowledgeType |
string |
是 |
类型 |
document |
enhancement |
int |
是 |
学习类型 |
0取消增强,1开启增强,2失败重新开启增强 |
adminId |
string |
是 |
租户管理者id |
48c93c8a53fd47c1bb7a130417531fd9 |
target |
string |
是 |
操作类型 |
submit |
响应参数
名称 |
类型 |
必选 |
中文名 |
说明 |
time |
integer |
是 |
时间 |
1716985128196 |
data |
null |
是 |
数据 |
null |
code |
integer |
是 |
状态码 |
200 |
msg |
string |
是 |
状态信息 |
OK |
请求示例
curl --location 'https://keyue.cloud.baidu.com/open/v1/api/v2/llm/document/enhancement?type=document' \
--header 'token: cdeaa589-2934-478b-9fdd-9a2b00a74124' \
--header 'Content-Type: application/json' \
--header 'uid: cf7d9692703d45d1b5517a30ab3efa53' \
--header 'username: pnstest5' \
--data '{
"enhanceIds": [
"95570780-7ef4-4c8f-8926-3cf6d900894c"
],
"knowledgeType": "document",
"enhancement": 1,
"adminId": "48c93c8a53fd47c1bb7a130417531fd9",
"target": "submit"
}'
响应示例
{
"time": 1717487792072,
"data": null,
"code": 200,
"msg": "OK"
}