Get Sync Tiers
Return initial Tier 0 (goals/OKRs/use-cases --> tier 0 memories) and Tier 1 (hot memories) for the requesting user/workspace.
This is a minimal initial implementation to enable SDK integration. It uses simple heuristics and will be enhanced with analytics-driven selection.
Request body
Example request
{
"embed_limit": 200,
"embed_model": "sbert",
"external_user_id": "external_user_abc",
"include_embeddings": false,
"max_tier0": 300,
"max_tier1": 1000,
"user_id": "internal_user_123",
"workspace_id": "workspace_123"
}Response
Tier assignments returned
Example response
{
"code": 200,
"has_more": false,
"status": "success",
"tier0": [
{
"content": "Improve API performance",
"id": "goal_123",
"metadata": {
"class": "goal",
"sourceType": "papr"
},
"topics": [
"performance",
"api"
],
"type": "goal"
}
],
"tier1": [
{
"content": "Customer complained about slow API response times",
"id": "memory_456",
"metadata": {
"sourceType": "papr"
},
"topics": [
"customer",
"api",
"performance"
],
"type": "text"
}
],
"transitions": []
}Changes
Changed in 8 of the 37 revisions of this API.223
- ○
added the optional property
tier0/items/holographic_frequency_scoresto the response with the200statusresponse-optional-property-added
- ○
added the optional property
tier1/items/holographic_frequency_scoresto the response with the200statusresponse-optional-property-added
This revision also has 1 change that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ○
- ○
added the optional property
detail/items/ctxto the response with the422statusresponse-optional-property-added
- ○
added the optional property
detail/items/inputto the response with the422statusresponse-optional-property-added
- ○
- ○
added the optional property
tier0/items/metricsto the response with the200statusresponse-optional-property-added
- ○
added the optional property
tier0/items/popularity_scoreto the response with the200statusresponse-optional-property-added
- ○
added the optional property
tier0/items/recency_scoreto the response with the200statusresponse-optional-property-added
- ○
added the optional property
tier0/items/reranker_confidenceto the response with the200statusresponse-optional-property-added
- ○
added the optional property
tier0/items/reranker_scoreto the response with the200statusresponse-optional-property-added
- ○
added the optional property
tier0/items/reranker_typeto the response with the200statusresponse-optional-property-added
- ○
added the optional property
tier0/items/similarity_scoreto the response with the200statusresponse-optional-property-added
- ○
added the optional property
tier0/items/totalProcessingCostto the response with the200statusresponse-optional-property-added
- ○
added the optional property
tier1/items/metricsto the response with the200statusresponse-optional-property-added
- ○
added the optional property
tier1/items/popularity_scoreto the response with the200statusresponse-optional-property-added
- ○
added the optional property
tier1/items/recency_scoreto the response with the200statusresponse-optional-property-added
- ○
added the optional property
tier1/items/reranker_confidenceto the response with the200statusresponse-optional-property-added
- ○
added the optional property
tier1/items/reranker_scoreto the response with the200statusresponse-optional-property-added
- ○
added the optional property
tier1/items/reranker_typeto the response with the200statusresponse-optional-property-added
- ○
added the optional property
tier1/items/similarity_scoreto the response with the200statusresponse-optional-property-added
- ○
added the optional property
tier1/items/totalProcessingCostto the response with the200statusresponse-optional-property-added
- ○
- ○
endpoint added
endpoint-added
- ○
- ▲
api path removed without deprecation
api-path-removed-without-deprecation
- ▲
- ○
endpoint added
endpoint-added
- ○
- ▲
api path removed without deprecation
api-path-removed-without-deprecation
This revision also has 1 change that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ▲
- ○
endpoint added
endpoint-added
This revision also has 12 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ○