PUT
/
llm-application
/
open
/
knowledge
/
{id}
编辑个人知识库
curl --request PUT \
  --url https://open.bigmodel.cn/api/llm-application/open/knowledge/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "embedding_id": 123,
  "name": "<string>",
  "description": "<string>",
  "background": "<string>",
  "icon": "<string>",
  "callback_url": "<string>",
  "callback_header": {}
}'
{
  "code": 123,
  "message": "<string>",
  "timestamp": 123
}

Authorizations

Authorization
string
header
required

使用以下格式进行身份验证:Bearer <your api key>

Path Parameters

id
string
required

知识库id

Body

application/json

Response

200
application/json

业务处理成功

The response is of type object.