(self, collection_name: str)
| 385 | ) |
| 386 | |
| 387 | def delete_collection(self, collection_name: str) -> None: |
| 388 | self.client.delete_collection(collection_name=collection_name) |
| 389 | |
| 390 | def _to_int_or_uuid(self, id: str) -> int | str: |
| 391 | try: |
no outgoing calls