curl --request POST \
--url https://api.trychroma.com/api/v2/tenants/{tenant}/databases/{database}/collections/{collection_id}/add \
--header 'Content-Type: application/json' \
--header 'x-chroma-token: <api-key>' \
--data '
{
"embeddings": [
[
123
]
],
"ids": [
"<string>"
],
"documents": [
"<string>"
],
"metadatas": [
"<unknown>"
],
"uris": [
"<string>"
]
}
'