Suggestions
Body
KNN vector search for business concept suggestions. Requires a resource (type + id) to generate embeddings. Optional parameters override similarity search behavior.
collection_namestringOptional
Embedding collection name (defaults to system default)
kinteger · min: 1 · max: 100OptionalDefault:
Number of nearest neighbors to return (1-100)
10num_candidatesinteger · min: 1OptionalDefault:
Number of candidates for ANN search
100similaritynumber · max: 1OptionalDefault:
Cosine similarity threshold (0.0-1.0)
0.6Responses
200
Suggestions list
application/json
401
Unauthorized
application/json
403
Forbidden
application/json
500
Internal Server Error
application/json
post/api/business_concept_versions/suggestions
POST /api/business_concept_versions/suggestions HTTP/1.1
Content-Type: application/json
Accept: */*
Content-Length: 88
{
"k": 10,
"num_candidates": 100,
"resource": {
"id": 123,
"type": "structures"
},
"similarity": 0.6
}{
"data": [
{
"business_concept_id": 55,
"id": 101,
"name": "Customer Segmentation",
"similarity": 0.92,
"updated_at": "2026-05-22T10:00:00Z"
},
{
"business_concept_id": 56,
"id": 102,
"name": "User Clustering",
"score": 0.88,
"updated_at": "2026-05-22T09:50:00Z"
}
]
}Last updated