curl --location --request POST 'http://localhost:8108/collections' \
--header 'x-typesense-api-key: nkbN8NxhR9rl5GJtl2ytWj3RqC4HVX2b' \
--header 'Content-Type: text/plain' \
--data-raw '{
"name": "conversation_store",
"fields": [
{
"name": "conversation_id",
"type": "string"
},
{
"name": "model_id",
"type": "string"
},
{
"name": "timestamp",
"type": "int32"
},
{
"name": "role",
"type": "string",
"index": false
},
{
"name": "message",
"type": "string",
"index": false
}
]
}'
{}