Current Situtation:
To create a collection and check if it doesnt exist the User currently has to:
if not client.collection_exists():
client.create_collection(
collection_name="test_collection"
)
Future Call:
simply use
client.create_collection(collection_name ="test_collection", if_not_exists=True)
This would be a QoL Change
Current Situtation:
To create a collection and check if it doesnt exist the User currently has to:
Future Call:
simply use
client.create_collection(collection_name ="test_collection", if_not_exists=True)This would be a QoL Change