POST
/
llm-application
/
open
/
knowledge
创建个人知识库
curl --request POST \
  --url https://open.bigmodel.cn/api/llm-application/open/knowledge \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "embedding_id": 3,
  "name": "<string>"
}'
{
  "data": {
    "id": "<string>"
  },
  "code": 123,
  "message": "<string>",
  "timestamp": 123
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Response

200
application/json

业务处理成功

The response is of type object.