curl --location --request POST '/v1/chat/search' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"query": "string",
"limit": 0
}'{
"success": true,
"data": [
{
"id": 0,
"user_id": 0,
"title": "string",
"model": "string",
"created_at": "2019-08-24T14:15:22Z",
"updated_at": "2019-08-24T14:15:22Z",
"is_active": true,
"messages": [
{
"id": 0,
"session_id": 0,
"role": "string",
"content": "string",
"model": "string",
"tokens": 0,
"created_at": "2019-08-24T14:15:22Z"
}
]
}
],
"count": 0,
"message": "string"
}