Baida07 commited on
Commit
c3b65ec
·
verified ·
1 Parent(s): f493162

fix: await semantic memory initialization

Browse files

Sync async SemanticMemory initialization compatibility fix.

Files changed (1) hide show
  1. 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: