Retrieve chunk tag filter extractor
import requests
url = "https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/chunk-tag-filter-extractors/{extractor_id}/"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/chunk-tag-filter-extractors/{extractor_id}/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request GET \
--url https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/chunk-tag-filter-extractors/{extractor_id}/ \
--header 'Authorization: Bearer <token>'{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "Pricing & SLA chunks",
"brief": "Keep only chunks tagged with pricing or SLA topics.",
"filter": {
"tag_key": "topic",
"values": [
"pricing",
"sla"
]
},
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"versions": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"is_default": true,
"filter": {
"tag_key": "topic",
"values": [
"pricing",
"sla"
]
}
}
],
"default_version": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"is_default": true,
"filter": {
"tag_key": "topic",
"values": [
"pricing",
"sla"
]
}
},
"latest_version": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"is_default": true,
"filter": {
"tag_key": "topic",
"values": [
"pricing",
"sla"
]
}
}
}{
"error": "Authentication credentials were not provided."
}{
"error": "You do not have permission to perform this action."
}{
"error": "Not found."
}Chunk Tag Filter Extractors
Retrieve chunk tag filter extractor
GET
/
projects
/
{project_id}
/
chunk-tag-filter-extractors
/
{extractor_id}
/
Retrieve chunk tag filter extractor
import requests
url = "https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/chunk-tag-filter-extractors/{extractor_id}/"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/chunk-tag-filter-extractors/{extractor_id}/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request GET \
--url https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/chunk-tag-filter-extractors/{extractor_id}/ \
--header 'Authorization: Bearer <token>'{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "Pricing & SLA chunks",
"brief": "Keep only chunks tagged with pricing or SLA topics.",
"filter": {
"tag_key": "topic",
"values": [
"pricing",
"sla"
]
},
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"versions": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"is_default": true,
"filter": {
"tag_key": "topic",
"values": [
"pricing",
"sla"
]
}
}
],
"default_version": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"is_default": true,
"filter": {
"tag_key": "topic",
"values": [
"pricing",
"sla"
]
}
},
"latest_version": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"is_default": true,
"filter": {
"tag_key": "topic",
"values": [
"pricing",
"sla"
]
}
}
}{
"error": "Authentication credentials were not provided."
}{
"error": "You do not have permission to perform this action."
}{
"error": "Not found."
}Authorizations
BearerAuthTokenAuth
Use Authorization: Bearer
Path Parameters
UUID of the project
UUID of the extractor
Response
Successful response
Restricts a downstream pipeline branch to chunks carrying specific tags.
Example:
"Pricing & SLA chunks"
Example:
"Keep only chunks tagged with pricing or SLA topics."
Example:
{
"tag_key": "topic",
"values": ["pricing", "sla"]
}
Show child attributes
Show child attributes
Immutable snapshot of a ChunkTagFilterExtractor's version-bearing configuration.
Show child attributes
Show child attributes
Immutable snapshot of a ChunkTagFilterExtractor's version-bearing configuration.
Show child attributes
Show child attributes