Skip to main content
GET
/
llm-application
/
open
/
knowledge
/
capacity
知识库使用量
curl --request GET \
  --url https://open.bigmodel.cn/api/llm-application/open/knowledge/capacity \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "used": {
      "word_num": 123,
      "length": 123
    },
    "total": {
      "word_num": 123,
      "length": 123
    }
  },
  "code": 123,
  "message": "<string>",
  "timestamp": 123
}

Authorizations

Authorization
string
header
required

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

Response

业务处理成功

data
object
code
integer

响应码,200为成功

message
string

响应信息

timestamp
integer

响应时间戳

I