取得單一知識版本資料¶
此 API 用於取得指定 Fileset 的詳細資訊。
透過 fileset_id,你可以查詢該 Fileset 的基本屬性、包含的檔案數量、建立時間、更新時間,以及是否已被提交(commit)成知識版本。
curl -X 'GET' \
'http://127.0.0.1:8000/v1/filesets/{fileset_id}' \
-H 'accept: application/json' \
-H 'Authorization: Bearer <your-api-key>'
Request Headers¶
| Key | Value |
|---|---|
| Request Method | GET |
| accept | application/json |
| Authorization | Bearer |
Query Parameters¶
| Field | Type | Note | Required |
|---|---|---|---|
| fileset_id | string | uuid | true |
Response Body¶
{
"object": "fileset",
"id": "af8877f9-25ec-41db-8872-c872cd5c34b2",
"name": "test1",
"metadata": {
"tag": ["policy", "operation"],
"embedding_model": "apmic-embedding-v1",
"parsing_mode": "HQ"
},
"state": "partial_failed",
"created_at": "2025-12-02T03:18:11.333632Z",
"committed_at": "2025-12-02T06:02:58.964148Z",
"updated_at": "2025-12-02T06:03:16.573779Z",
"file_counts": {
"draft": 0,
"queued": 0,
"processing": 0,
"completed": 4,
"failed": 2,
"total": 6
}
}
Field Explanation
回傳 「知識版本物件」章節列表內容。