diff --git a/autogpt/memory/weaviate.py b/autogpt/memory/weaviate.py index 48816973..3e112ca6 100644 --- a/autogpt/memory/weaviate.py +++ b/autogpt/memory/weaviate.py @@ -47,7 +47,7 @@ class WeaviateMemory(MemoryProviderSingleton): def _build_auth_credentials(self, cfg): if cfg.weaviate_username and cfg.weaviate_password: - return weaviate_auth.AuthClientPassword(cfg.weaviate_username, cfg.weaviate_password) + return weaviate.auth.AuthClientPassword(cfg.weaviate_username, cfg.weaviate_password) if cfg.weaviate_api_key: return weaviate.auth.AuthApiKey(api_key=cfg.weaviate_api_key) else: