πList Collections
List Collections
POST /collections/list 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"
}
Response:
{
"names": [
"string"
]
}
import chatbees as cb
# Configure to use the API key
cb.init(api_key="my_api_key", account_id="my_account_id")
# List collections
collections = [col.name for col in cb.list_collections()]
# returns custom_collection
print(collections)Last updated