You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""This namespace contains all the functionality to upload data in batches to Weaviate for all collections and tenants."""
144
143
self.backup=_Backup(self._connection)
145
-
"""This namespace contains all functionality to backup data."""
146
144
self.cluster=_Cluster(self._connection)
147
-
"""This namespace contains all functionality to inspect the connected Weaviate cluster."""
148
145
self.collections=collections
149
-
"""This namespace contains all the functionality to manage Weaviate data collections. It is your main entry point for all collection-related functionality.
150
-
151
-
Use it to retrieve collection objects using `client.collections.use("MyCollection")` or to create new collections using `client.collections.create("MyCollection", ...)`.
152
-
"""
153
146
self.debug=_Debug(self._connection)
154
-
"""This namespace contains functionality used to debug Weaviate clusters. As such, it is deemed experimental and is subject to change.
155
-
156
-
We can make no guarantees about the stability of this namespace nor the potential for future breaking changes. Use at your own risk."""
157
147
self.roles=_Roles(self._connection)
158
-
"""This namespace contains all functionality to manage Weaviate's RBAC functionality."""
159
-
160
148
self.users=_Users(self._connection)
161
-
"""This namespace contains all functionality to manage Weaviate users."""
0 commit comments