/api/knowledge/point/add 接口用于新增一个知识库下某个文档的一个切片。
完成“对接指南“页面的注册账号、实名认证、AK/SK 密钥获取和签名获取后,可调用 API 接口实现知识库信息更新的功能。
URI | /api/knowledge/point/add | 统一资源标识符 |
---|---|---|
请求方法 | POST | 客户端对向量数据库服务器请求的操作类型 |
请求头 | Content-Type: application/json | 请求消息类型 |
Authorization: HMAC-SHA256 *** | 鉴权 |
参数 | 类型 | 必选 | 默认值 | 备注 |
---|---|---|---|---|
collection_name | string | 否 | -- | 知识库名称
|
project | string | 否 | default | 知识库所属项目
|
resource_id | string | 否 | -- | 知识库唯一 id
|
doc_id | string | 是 | -- | 表示新增切片所属的文档
|
chunk_type | string | 是 | -- | 要添加的切片类型
|
content | string | -- | 新增切片文本内容
| |
question | string | 否 | -- | 表示问题字段
|
fields | list | 否 | -- | 表示传入的结构化数据
[
|
字段 | 备注 |
---|---|
code | 状态码 |
message | 返回信息 |
request_id | 标识每个请求的唯一标识符 |
curl -i -X POST \ -H 'Content-Type: application/json' \ -H 'Authorization: HMAC-SHA256 ***' \ https://api-knowledgebase.mlp.cn-beijing.volces.com/api/knowledge/point/update \ -d '{ "collection_name": "test_collection_name", "content": "test content" }'
执行成功返回:
HTTP/1.1 200 OK Content-Length: 43 Content-Type: application/json {"code":0,"message":"success","request_id":"021695029537650fd001de666660000000000000000000230da93"}
执行失败返回:
HTTP/1.1 400 OK Content-Length: 43 Content-Type: application/json {"code":1000003, "message":"invalid request:%s", "request_id": "021695029757920fd001de6666600000000000000000002569b8f"}