📖Create Collection
Create Collection
A Collection is the organizational unit for your data. The question asked to a collection will be analyzed and answered from all data in the collection. It is recommended to put different data into different collections.
POST /collections/create HTTP/1.1
Api-Key: my_api_key
Content-Type: application/json
Host: my_account_id.us-west-2.aws.chatbees.ai
{
"namespace_name": "string",
"collection_name": "string",
// description is Optional
"description": "string" or null,
// Optional, whether the collection is publicly readable
"public_read": bool or null,
}
Response:
{}
Last updated