Spaces:
Running
Running
fix: await semantic memory initialization
Browse filesSync async SemanticMemory initialization compatibility fix.
- memory/semantic.py +1 -1
memory/semantic.py
CHANGED
|
@@ -127,7 +127,7 @@ class SemanticMemory:
|
|
| 127 |
except Exception:
|
| 128 |
return None
|
| 129 |
|
| 130 |
-
def init(self):
|
| 131 |
if self._sb is None:
|
| 132 |
self._sb = self._try_supabase()
|
| 133 |
if self._sb:
|
|
|
|
| 127 |
except Exception:
|
| 128 |
return None
|
| 129 |
|
| 130 |
+
async def init(self):
|
| 131 |
if self._sb is None:
|
| 132 |
self._sb = self._try_supabase()
|
| 133 |
if self._sb:
|