Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
Search query string
1
"machine learning concepts"
Optional tag this search should be containerized by. This can be an ID for your user, a project ID, or any other identifier you wish to use to filter memories.
"user_123"
Threshold / sensitivity for memories selection. 0 is least sensitive (returns most memories, more results), 1 is most sensitive (returns lesser memories, accurate results)
0 <= x <= 1
0.5
Optional filters to apply to the search
{
"AND": [
{
"key": "group",
"negate": false,
"value": "jira_users"
},
{
"filterType": "numeric",
"key": "timestamp",
"negate": false,
"numericOperator": ">",
"value": "1742745777"
}
]
}
Maximum number of results to return
1 <= x <= 100
10
If true, rerank the results based on the query. This is helpful if you want to ensure the most relevant results are returned.
false
If true, rewrites the query to make it easier to find documents. This increases the latency by about 400ms
false